/** * 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'; var React = require('react-native'); var { StyleSheet, View, } = React; var UIExplorerListBase = require('./UIExplorerListBase'); var COMPONENTS = [ require('./ImageExample'), require('./ProgressBarAndroidExample'), require('./ScrollViewSimpleExample'), require('./SwitchAndroidExample'), require('./TextExample.android'), require('./TextInputExample.android'), require('./ToolbarAndroidExample'), require('./TouchableExample'), require('./ViewExample'), ]; var APIS = [ require('./AccessibilityAndroidExample.android'), require('./BorderExample'), require('./LayoutEventsExample'), require('./LayoutExample'), require('./PanResponderExample'), require('./PointerEventsExample'), require('./TimerExample'), require('./ToastAndroidExample.android'), require('./XHRExample'), ]; type Props = { onSelectExample: Function, isInDrawer: bool, }; class UIExplorerList extends React.Component { props: Props; render() { return ( ); } renderAdditionalView(renderRow, renderTextInput): React.Component { if (this.props.isInDrawer) { var homePage = renderRow({ title: 'UIExplorer', description: 'List of examples', }, -1); return ( {homePage} ); } return renderTextInput(styles.searchTextInput); } onPressRow(example: any) { var Component = UIExplorerListBase.makeRenderable(example); this.props.onSelectExample({ title: Component.title, component: Component, }); } } var styles = StyleSheet.create({ searchTextInput: { padding: 2, }, }); module.exports = UIExplorerList;