123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135 |
- /**
- * Copyright (c) Facebook, Inc. and its affiliates.
- *
- * This source code is licensed under the MIT license found in the
- * LICENSE file in the root directory of this source tree.
- *
- * @flow
- * @format
- */
- 'use strict';
- import RCTActionSheetManager from './NativeActionSheetManager';
- const invariant = require('invariant');
- const processColor = require('../StyleSheet/processColor');
- import type {ColorValue} from '../StyleSheet/StyleSheetTypes';
- import type {ProcessedColorValue} from '../StyleSheet/processColor';
- /**
- * Display action sheets and share sheets on iOS.
- *
- * See https://reactnative.dev/docs/actionsheetios.html
- */
- const ActionSheetIOS = {
- /**
- * Display an iOS action sheet.
- *
- * The `options` object must contain one or more of:
- *
- * - `options` (array of strings) - a list of button titles (required)
- * - `cancelButtonIndex` (int) - index of cancel button in `options`
- * - `destructiveButtonIndex` (int or array of ints) - index or indices of destructive buttons in `options`
- * - `title` (string) - a title to show above the action sheet
- * - `message` (string) - a message to show below the title
- *
- * The 'callback' function takes one parameter, the zero-based index
- * of the selected item.
- *
- * See https://reactnative.dev/docs/actionsheetios.html#showactionsheetwithoptions
- */
- showActionSheetWithOptions(
- options: {|
- +title?: ?string,
- +message?: ?string,
- +options: Array<string>,
- +destructiveButtonIndex?: ?number | ?Array<number>,
- +cancelButtonIndex?: ?number,
- +anchor?: ?number,
- +tintColor?: ColorValue | ProcessedColorValue,
- +userInterfaceStyle?: string,
- |},
- callback: (buttonIndex: number) => void,
- ) {
- invariant(
- typeof options === 'object' && options !== null,
- 'Options must be a valid object',
- );
- invariant(typeof callback === 'function', 'Must provide a valid callback');
- invariant(RCTActionSheetManager, "ActionSheetManager does't exist");
- const {tintColor, destructiveButtonIndex, ...remainingOptions} = options;
- let destructiveButtonIndices = null;
- if (Array.isArray(destructiveButtonIndex)) {
- destructiveButtonIndices = destructiveButtonIndex;
- } else if (typeof destructiveButtonIndex === 'number') {
- destructiveButtonIndices = [destructiveButtonIndex];
- }
- const processedTintColor = processColor(tintColor);
- invariant(
- processedTintColor == null || typeof processedTintColor === 'number',
- 'Unexpected color given for ActionSheetIOS.showActionSheetWithOptions tintColor',
- );
- RCTActionSheetManager.showActionSheetWithOptions(
- {
- ...remainingOptions,
- tintColor: processedTintColor,
- destructiveButtonIndices,
- },
- callback,
- );
- },
- /**
- * Display the iOS share sheet. The `options` object should contain
- * one or both of `message` and `url` and can additionally have
- * a `subject` or `excludedActivityTypes`:
- *
- * - `url` (string) - a URL to share
- * - `message` (string) - a message to share
- * - `subject` (string) - a subject for the message
- * - `excludedActivityTypes` (array) - the activities to exclude from
- * the ActionSheet
- * - `tintColor` (color) - tint color of the buttons
- *
- * The 'failureCallback' function takes one parameter, an error object.
- * The only property defined on this object is an optional `stack` property
- * of type `string`.
- *
- * The 'successCallback' function takes two parameters:
- *
- * - a boolean value signifying success or failure
- * - a string that, in the case of success, indicates the method of sharing
- *
- * See https://reactnative.dev/docs/actionsheetios.html#showshareactionsheetwithoptions
- */
- showShareActionSheetWithOptions(
- options: Object,
- failureCallback: Function,
- successCallback: Function,
- ) {
- invariant(
- typeof options === 'object' && options !== null,
- 'Options must be a valid object',
- );
- invariant(
- typeof failureCallback === 'function',
- 'Must provide a valid failureCallback',
- );
- invariant(
- typeof successCallback === 'function',
- 'Must provide a valid successCallback',
- );
- invariant(RCTActionSheetManager, "ActionSheetManager does't exist");
- RCTActionSheetManager.showShareActionSheetWithOptions(
- {...options, tintColor: processColor(options.tintColor)},
- failureCallback,
- successCallback,
- );
- },
- };
- module.exports = ActionSheetIOS;
|