mirror of
https://github.com/status-im/react-native.git
synced 2025-01-16 20:44:10 +00:00
85e1ad6b61
- [ReactNative] Revert D1965911 | Christopher Chedeau - [ReactNative] Remove experimental Portal only needed for android right now. | Spencer Ahrens - [ReactNative] rename Animation to AnimationExperimental with warning docs | Spencer Ahrens - navigator.getCurrentRoutes() | Eric Vicenti - Fixing jsdoc parsing of functions that are defined over multiple lines (Fixes #410) | Christopher Chedeau - Added constraint of child type to touchablewithoutfeedback | Christopher Chedeau - [react-packager] Deprecate global image namespace in favor of CommonJS resolution | Amjad Masad - [react-packager] Don't cache rejected promise | Amjad Masad - [ReactNative] Start Navigator gesture config, disable gesture in AdsManager | Eric Vicenti - [Flow] Clean react-native-github for Flow v0.8.0 | Gabe Levi - add maximumValue and minimumValue as valid attributes for native Slider | Christopher Chedeau - react-packager: Add ES6 import statement support to DependencyGraph. | Amjad Masad - Remove false annotation | Christopher Chedeau - [madman] prevent pulling the content down inconsistently when the keyboard shows up | Kevin Gozali - add @flow back to View.js | Basil Hosmer - [ReactNative] Turn of lint warning for constant conditions | Eric Vicenti - [UIExplorer] Fixed 'Push View Example' in NavigatorIOS example | Christopher Chedeau - SliderIOS.js comments - grammar correction | Christopher Chedeau
77 lines
1.8 KiB
JavaScript
77 lines
1.8 KiB
JavaScript
/**
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
* All rights reserved.
|
|
*
|
|
* This source code is licensed under the BSD-style license found in the
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
|
*
|
|
* @providesModule AlertIOS
|
|
* @flow
|
|
*/
|
|
'use strict';
|
|
|
|
var RCTAlertManager = require('NativeModules').AlertManager;
|
|
|
|
var DEFAULT_BUTTON_TEXT = 'OK';
|
|
var DEFAULT_BUTTON = {
|
|
text: DEFAULT_BUTTON_TEXT,
|
|
onPress: null,
|
|
};
|
|
|
|
/**
|
|
* Launches an alert dialog with the specified title and message.
|
|
*
|
|
* Optionally provide a list of buttons. Tapping any button will fire the
|
|
* respective onPress callback and dismiss the alert. By default, the only
|
|
* button will be an 'OK' button
|
|
*
|
|
* The last button in the list will be considered the 'Primary' button and
|
|
* it will appear bold.
|
|
*
|
|
* ```
|
|
* AlertIOS.alert(
|
|
* 'Foo Title',
|
|
* 'My Alert Msg',
|
|
* [
|
|
* {text: 'Foo', onPress: () => console.log('Foo Pressed!')},
|
|
* {text: 'Bar', onPress: () => console.log('Bar Pressed!')},
|
|
* ]
|
|
* )}
|
|
* ```
|
|
*/
|
|
|
|
class AlertIOS {
|
|
static alert(
|
|
title: ?string,
|
|
message?: ?string,
|
|
buttons?: Array<{
|
|
text: ?string;
|
|
onPress: ?Function;
|
|
}>
|
|
): void {
|
|
var callbacks = [];
|
|
var buttonsSpec = [];
|
|
title = title || '';
|
|
message = message || '';
|
|
buttons = buttons || [DEFAULT_BUTTON];
|
|
buttons.forEach((btn, index) => {
|
|
callbacks[index] = btn.onPress;
|
|
var btnDef = {};
|
|
btnDef[index] = btn.text || DEFAULT_BUTTON_TEXT;
|
|
buttonsSpec.push(btnDef);
|
|
});
|
|
RCTAlertManager.alertWithArgs({
|
|
title,
|
|
message,
|
|
buttons: buttonsSpec,
|
|
}, (id) => {
|
|
var cb = callbacks[id];
|
|
cb && cb();
|
|
});
|
|
}
|
|
|
|
}
|
|
|
|
module.exports = AlertIOS;
|