123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137 |
- const React = require('react');
- const { Component } = require('react');
-
- const { View, Text, Button } = require('react-native');
-
- const { Navigation } = require('react-native-navigation');
- const testIDs = require('../testIDs');
-
- let globalFirstComponentID;
-
- class TextScreen extends Component {
- static get options() {
- return {
- bottomTabs: {
- testID: testIDs.BOTTOM_TABS_ELEMENT
- },
- topBar: {
- testID: testIDs.TOP_BAR_ELEMENT
- }
- };
- }
-
- constructor(props) {
- super(props);
- globalFirstComponentID = (props.text === 'This is tab 1') ? props.componentId : globalFirstComponentID;
- this.onClickPop = this.onClickPop.bind(this);
- }
-
- render() {
- return (
- <View style={styles.root}>
- <Text style={styles.h1} testID={testIDs.CENTERED_TEXT_HEADER}>{this.props.text || 'Text Screen'}</Text>
- {this.renderTextFromFunctionInProps()}
- <Text style={styles.footer}>{`this.props.componentId = ${this.props.componentId}`}</Text>
- <Button title={'Set Tab Badge'} testID={testIDs.SET_TAB_BADGE_BUTTON} onPress={() => this.onButtonPress()} />
- <Button title={'Switch To Tab 2'} testID={testIDs.SWITCH_SECOND_TAB_BUTTON} onPress={() => this.onClickSwitchToTab()} />
- <Button title={'Switch To Tab 1 by componentID'} testID={testIDs.SWITCH_FIRST_TAB_BUTTON} onPress={() => this.onClickSwitchToTabByComponentID()} />
- <Button title='Hide Tab Bar' testID={testIDs.HIDE_BOTTOM_TABS_BUTTON} onPress={() => this.hideTabBar(false)} />
- <Button title='Show Tab Bar' testID={testIDs.SHOW_BOTTOM_TABS_BUTTON} onPress={() => this.hideTabBar(true)} />
- <Button title='Show Left Side Menu' testID={testIDs.SHOW_LEFT_SIDE_MENU_BUTTON} onPress={() => this.showSideMenu('left')} />
- <Button title='Show Right Side Menu' testID={testIDs.SHOW_RIGHT_SIDE_MENU_BUTTON} onPress={() => this.showSideMenu('right')} />
- <Button title='Pop' testID={testIDs.POP_BUTTON} onPress={this.onClickPop} />
- </View>
- );
- }
-
- async onClickPop() {
- await Navigation.pop(this.props.componentId);
- }
-
- renderTextFromFunctionInProps() {
- if (!this.props.myFunction) {
- return undefined;
- }
- return (
- <Text style={styles.h1}>{this.props.myFunction()}</Text>
- );
- }
-
- onButtonPress() {
- Navigation.mergeOptions(this.props.componentId, {
- bottomTab: {
- badge: `TeSt`
- }
- });
- }
-
- onClickSwitchToTab() {
- Navigation.mergeOptions(this.props.componentId, {
- bottomTabs: {
- currentTabIndex: 1,
- visible: false,
- animate: true,
- tabColor: 'blue',
- selectedTabColor: 'red'
- }
- });
- }
-
- onClickSwitchToTabByComponentID() {
- Navigation.mergeOptions(this.props.componentId, {
- bottomTabs: {
- currentTabId: globalFirstComponentID
- }
- });
- }
-
- hideTabBar(visible) {
- Navigation.mergeOptions(this.props.componentId, {
- bottomTabs: {
- visible,
- animate: true
- }
- });
- }
-
- showSideMenu(side) {
- Navigation.mergeOptions(this.props.componentId, {
- sideMenu: {
- [side]: {
- visible: true
- }
- }
- });
- }
-
- onClickPop() {
- Navigation.pop(this.props.componentId);
- }
- }
-
- module.exports = TextScreen;
-
- const styles = {
- root: {
- flexGrow: 1,
- justifyContent: 'center',
- alignItems: 'center',
- backgroundColor: '#f5fcff'
- },
- h1: {
- fontSize: 24,
- textAlign: 'center',
- margin: 10
- },
- h2: {
- fontSize: 12,
- textAlign: 'center',
- margin: 10
- },
- footer: {
- fontSize: 10,
- color: '#888',
- marginTop: 10
- }
- };
|