web-dev-qa-db-ja.com

React-native / react-navigation: `static navigationOptions`からコンポーネントの状態にアクセスするにはどうすればよいですか?

たとえば、フォームコンポーネントがあり、ナビゲーションバーのボタンを使用してコンポーネントの状態の一部を送信する必要がある場合、どのようにケースを処理しますか?

const navBtn = (iconName, onPress) => (
  <TouchableOpacity
    onPress={onPress}
    style={styles.iconWrapper}
  >
    <Icon name={iconName} size={cs.iconSize} style={styles.icon} />
  </TouchableOpacity>
)

class ComponentName extends Component {

  static navigationOptions = {
    header: (props) => ({
      tintColor: 'white',
      style: {
        backgroundColor: cs.primaryColor
      },
      left: navBtn('clear', () => props.goBack()),
      right: navBtn('done', () => this.submitForm()), // error: this.submitForm is not a function
    }),
    title: 'Form',
  }

  constructor(props) {
    super(props);
    this.state = {
      formText: ''
    };
  }

  submitForm() {
    this.props.submitFormAction(this.state.formText)
  }

  render() {
    return (
      <View>
        ...form goes here
      </View>
    );
  }
}
15
stkvtflw

シンプルなデザインパターン

@valの優れた答えのフォローアップとして、すべてのパラメーターがcomponentWillMountに設定されるようにコンポーネントを構成する方法を次に示します。私はこれがそれをより簡単に保ち、他のすべての画面で従うのが簡単なパターンだと思います。

static navigationOptions = ({navigation, screenProps}) => {
  const params = navigation.state.params || {};

  return {
    title:       params.title,
    headerLeft:  params.headerLeft,
    headerRight: params.headerRight,
  }
}

_setNavigationParams() {
  let title       = 'Form';
  let headerLeft  = <Button onPress={this._clearForm.bind(this)} />;
  let headerRight = <Button onPress={this._submitForm.bind(this)} />;

  this.props.navigation.setParams({ 
    title,
    headerLeft,
    headerRight, 
  });
}

componentWillMount() {
  this._setNavigationParams();
}

_clearForm() {
  // Clear form code...
}

_submitForm() {
  // Submit form code...
}
14
Joshua Pinter

バインドされた関数をsetParamsで送信すると、その関数内でコンポーネントのstateにアクセスできます。

例:

constructor(props) {
    super(props);
    this._handleButtonNext = this._handleButtonNext.bind(this);
    this.state = { selectedIndex: 0 }
}

componentDidMount() {
    this.props.navigation.setParams({
        handleButtonNext: this._handleButtonNext,
    });
}

_handleButtonNext() {
    let action = NavigationActions.setParams({
        params: { selectedImage: images[this.state.selectedIndex] }
    });
    this.props.navigation.dispatch(action);
}

これで、コンポーネントのstateに関連するボタンハンドラを作成できます。

static navigationOptions = ({ navigation }) => {
    const { state, setParams, navigate } = navigation;
    const params = state.params || {};

    return {
        headerTitleStyle: { alignSelf: 'center' },
        title: 'Select An Icon',
        headerRight: <Button title='Next' onPress={params.handleButtonNext} />
    }
}
9
Val

ComponentDidMountでは、次を使用できます。

this.navigation.setParams({
 myTitle: this.props.myTitle
})

次に、静的プロップのヘッダーに関数を渡します。この関数は、前に設定したパラメーターにアクセスできます

rafaelcorreiapoli に感謝

1
stkvtflw