/** * Copyright (c) 2013-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. * * The examples provided by Facebook are for non-commercial testing and * evaluation purposes only. * * Facebook reserves all rights not expressly granted. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON INFRINGEMENT. IN NO EVENT SHALL * FACEBOOK BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * * @flow */ 'use strict'; export type UIExplorerExample = { key: string, module: Object, }; const ComponentExamples: Array = [ { key: 'ActivityIndicatorExample', module: require('./ActivityIndicatorExample'), }, { key: 'SliderExample', module: require('./SliderExample'), }, { key: 'ImageExample', module: require('./ImageExample'), }, { key: 'ListViewExample', module: require('./ListViewExample'), }, { key: 'ModalExample', module: require('./ModalExample'), }, { key: 'PickerExample', module: require('./PickerExample'), }, { key: 'ProgressBarAndroidExample', module: require('./ProgressBarAndroidExample'), }, { key: 'RefreshControlExample', module: require('./RefreshControlExample'), }, { key: 'ScrollViewSimpleExample', module: require('./ScrollViewSimpleExample'), }, { key: 'StatusBarExample', module: require('./StatusBarExample'), }, { key: 'SwipeableListViewExample', module: require('./SwipeableListViewExample') }, { key: 'SwitchExample', module: require('./SwitchExample'), }, { key: 'TextExample', module: require('./TextExample'), }, { key: 'TextInputExample', module: require('./TextInputExample'), }, { key: 'ToolbarAndroidExample', module: require('./ToolbarAndroidExample'), }, { key: 'TouchableExample', module: require('./TouchableExample'), }, { key: 'ViewExample', module: require('./ViewExample'), }, { key: 'ViewPagerAndroidExample', module: require('./ViewPagerAndroidExample'), }, { key: 'WebViewExample', module: require('./WebViewExample'), }, ]; const APIExamples: Array = [ { key: 'AccessibilityAndroidExample', module: require('./AccessibilityAndroidExample'), }, { key: 'AlertExample', module: require('./AlertExample').AlertExample, }, { key: 'AnimatedExample', module: require('./AnimatedExample'), }, { key: 'AppStateExample', module: require('./AppStateExample'), }, { key: 'BorderExample', module: require('./BorderExample'), }, { key: 'CameraRollExample', module: require('./CameraRollExample'), }, { key: 'ClipboardExample', module: require('./ClipboardExample'), }, { key: 'DatePickerAndroidExample', module: require('./DatePickerAndroidExample'), }, { key: 'GeolocationExample', module: require('./GeolocationExample'), }, { key: 'ImageEditingExample', module: require('./ImageEditingExample'), }, { key: 'LayoutEventsExample', module: require('./LayoutEventsExample'), }, { key: 'LinkingExample', module: require('./LinkingExample'), }, { key: 'LayoutAnimationExample', module: require('./LayoutAnimationExample'), }, { key: 'LayoutExample', module: require('./LayoutExample'), }, { key: 'NativeAnimationsExample', module: require('./NativeAnimationsExample'), }, { key: 'NavigationExperimentalExample', module: require('./NavigationExperimental/NavigationExperimentalExample'), }, { key: 'NetInfoExample', module: require('./NetInfoExample'), }, { key: 'OrientationChangeExample', module: require('./OrientationChangeExample'), }, { key: 'PanResponderExample', module: require('./PanResponderExample'), }, { key: 'PermissionsExampleAndroid', module: require('./PermissionsExampleAndroid'), }, { key: 'PointerEventsExample', module: require('./PointerEventsExample'), }, { key: 'RTLExample', module: require('./RTLExample'), }, { key: 'ShareExample', module: require('./ShareExample'), }, { key: 'TimePickerAndroidExample', module: require('./TimePickerAndroidExample'), }, { key: 'TimerExample', module: require('./TimerExample'), }, { key: 'ToastAndroidExample', module: require('./ToastAndroidExample'), }, { key: 'TransformExample', module: require('./TransformExample'), }, { key: 'VibrationExample', module: require('./VibrationExample'), }, { key: 'WebSocketExample', module: require('./WebSocketExample'), }, { key: 'XHRExample', module: require('./XHRExample'), }, ]; const Modules = {}; APIExamples.concat(ComponentExamples).forEach(Example => { Modules[Example.key] = Example.module; }); const UIExplorerList = { APIExamples, ComponentExamples, Modules, }; module.exports = UIExplorerList;