-
Notifications
You must be signed in to change notification settings - Fork 24.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
//xplat/js/react-native-github/packages/react-native/ReactAndroid/src…
…/main/java/com/facebook/react/modules/share:shareAndroid (#43977) Summary: Pull Request resolved: #43977 Changelog: [Internal] Reviewed By: cortinico Differential Revision: D55725721 fbshipit-source-id: 21f190043da053197bd5ba047122af79635f56ba
- Loading branch information
1 parent
5156946
commit 8c804de
Showing
3 changed files
with
72 additions
and
76 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
75 changes: 0 additions & 75 deletions
75
...react-native/ReactAndroid/src/main/java/com/facebook/react/modules/share/ShareModule.java
This file was deleted.
Oops, something went wrong.
66 changes: 66 additions & 0 deletions
66
...s/react-native/ReactAndroid/src/main/java/com/facebook/react/modules/share/ShareModule.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
/* | ||
* Copyright (c) Meta Platforms, Inc. and affiliates. | ||
* | ||
* This source code is licensed under the MIT license found in the | ||
* LICENSE file in the root directory of this source tree. | ||
*/ | ||
|
||
package com.facebook.react.modules.share | ||
|
||
import android.content.Intent | ||
import com.facebook.fbreact.specs.NativeShareModuleSpec | ||
import com.facebook.react.bridge.Arguments | ||
import com.facebook.react.bridge.Promise | ||
import com.facebook.react.bridge.ReactApplicationContext | ||
import com.facebook.react.bridge.ReadableMap | ||
import com.facebook.react.module.annotations.ReactModule | ||
|
||
/** Intent module. Launch other activities or open URLs. */ | ||
@ReactModule(name = NativeShareModuleSpec.NAME) | ||
public class ShareModule(reactContext: ReactApplicationContext) : | ||
NativeShareModuleSpec(reactContext) { | ||
|
||
/** | ||
* Open a chooser dialog to send text content to other apps. | ||
* | ||
* Refer http://developer.android.com/intl/ko/training/sharing/send.html | ||
* | ||
* @param content the data to send | ||
* @param dialogTitle the title of the chooser dialog | ||
*/ | ||
public override fun share(content: ReadableMap?, dialogTitle: String?, promise: Promise) { | ||
if (content == null) { | ||
promise.reject(ERROR_INVALID_CONTENT, "Content cannot be null") | ||
return | ||
} | ||
try { | ||
val intent = Intent(Intent.ACTION_SEND) | ||
intent.setTypeAndNormalize("text/plain") | ||
if (content.hasKey("title")) { | ||
intent.putExtra(Intent.EXTRA_SUBJECT, content.getString("title")) | ||
} | ||
if (content.hasKey("message")) { | ||
intent.putExtra(Intent.EXTRA_TEXT, content.getString("message")) | ||
} | ||
val chooser = Intent.createChooser(intent, dialogTitle) | ||
chooser.addCategory(Intent.CATEGORY_DEFAULT) | ||
val currentActivity = getCurrentActivity() | ||
if (currentActivity != null) { | ||
currentActivity.startActivity(chooser) | ||
} else { | ||
getReactApplicationContext().startActivity(chooser) | ||
} | ||
val result = Arguments.createMap() | ||
result.putString("action", ACTION_SHARED) | ||
promise.resolve(result) | ||
} catch (e: Exception) { | ||
promise.reject(ERROR_UNABLE_TO_OPEN_DIALOG, "Failed to open share dialog") | ||
} | ||
} | ||
|
||
public companion object { | ||
const private val ACTION_SHARED: String = "sharedAction" | ||
const public val ERROR_INVALID_CONTENT: String = "E_INVALID_CONTENT" | ||
const private val ERROR_UNABLE_TO_OPEN_DIALOG: String = "E_UNABLE_TO_OPEN_DIALOG" | ||
} | ||
} |