/** * Copyright 2004-present Facebook. All Rights Reserved. */ 'use strict'; var React = require('react-native/addons'); var { PixelRatio, ScrollView, StyleSheet, Text, TouchableHighlight, View, invariant, } = React; var createExamplePage = require('./createExamplePage'); var EXAMPLES = [ require('./ViewExample'), require('./LayoutExample'), require('./TextExample.ios'), require('./TextInputExample'), require('./ExpandingTextExample'), require('./ImageExample'), require('./ListViewSimpleExample'), require('./ListViewPagingExample'), require('./NavigatorIOSExample'), require('./StatusBarIOSExample'), require('./PointerEventsExample'), require('./TouchableExample'), require('./ActivityIndicatorExample'), require('./ScrollViewExample'), require('./PickerExample'), require('./DatePickerExample'), require('./GeolocationExample'), require('./TabBarExample'), require('./SwitchExample'), require('./SliderExample'), require('./AsyncStorageExample'), require('./CameraRollExample.ios'), require('./MapViewExample'), require('./WebViewExample'), require('./AppStateIOSExample'), require('./NetInfoExample'), require('./AlertIOSExample'), require('./AdSupportIOSExample'), require('./AppStateExample'), require('./ActionSheetIOSExample'), require('./VibrationIOSExample'), ]; var UIExplorerList = React.createClass({ render: function() { return ( {EXAMPLES.map(this._renderRow)} ); }, _renderRow: function(example, i) { invariant(example.title, 'Example must provide a title.'); return ( this._onPressRow(example)}> {example.title} {example.description} ); }, _onPressRow: function(example) { var Component = example.examples ? createExamplePage(null, example) : example; this.props.navigator.push({ title: Component.title, component: Component, }); }, }); var styles = StyleSheet.create({ list: { backgroundColor: '#eeeeee', }, group: { backgroundColor: 'white', marginVertical: 25, }, line: { backgroundColor: '#bbbbbb', height: 1 / PixelRatio.get(), }, row: { backgroundColor: 'white', justifyContent: 'center', paddingHorizontal: 15, paddingVertical: 8, }, separator: { height: 1 / PixelRatio.get(), backgroundColor: '#bbbbbb', marginLeft: 15, }, rowTitleText: { fontSize: 17, fontWeight: 'bold', }, rowDetailText: { fontSize: 15, color: '#888888', lineHeight: 20, }, }); module.exports = UIExplorerList;