React Native に頭を悩ませ始めたばかりでstate
、管理に Redux を使用しています。UIコンポーネントのNativeBase ライブラリと、 react-native-router-fluxがビュー間のナビゲーションを処理しています。
現在、オブジェクトの配列から作成される基本的なリストを作成していguest
ます。リストは Redux ストアに保存されており、それにアクセスして表示することができます。リスト内の各項目は、配列guest
内の に関連付けられています。リスト内の各項目をタッチ可能にし、関連するオブジェクトをプロパティとして次のビューにguests
渡して詳細を表示したいと思います。guest
そのためにonPress
、コンポーネントに関連付けられた標準関数である関数を使用していListItem
ます (NativeBase docs hereを参照)。また、ドキュメントに従ってreact-native-router-flux
、コンポーネント自体の外部でナビゲーション アクションを定義し、レンダリングするたびではなく、押されたときに呼び出されるようにListItem
しました。
私の問題は、特にが押されたときではなくonPress={goToView2(guest)}
、 がレンダリングされるたびに関数が呼び出されていることを発見していることです。ListItem
ListItem
私が省略した単純なものに違いないと確信しています。助言がありますか?
View1.js - 初期リストを表示するビューguests
:
import React, { Component } from 'react';
import { Container, Header, Title, Content, Footer, FooterTab, Button, Icon,
Text, List, ListItem } from 'native-base';
import { connect } from 'react-redux';
import { Actions as NavigationActions } from 'react-native-router-flux';
class View1 extends Component {
render() {
// This is the function that runs every time a ListItem component is rendered.
// Why is this not only running on onPress?
const goToView2 = (guest) => {
NavigationActions.view2(guest);
console.log('Navigation router run...');
};
return (
<Container>
<Header>
<Title>Header</Title>
</Header>
<Content>
<List
dataArray={this.props.guests}
renderRow={(guest) =>
<ListItem button onPress={goToView2(guest)}>
<Text>{guest.name}</Text>
<Text note>{guest.email}</Text>
</ListItem>
}
>
</List>
</Content>
<Footer>
<FooterTab>
<Button transparent>
<Icon name='ios-call' />
</Button>
</FooterTab>
</Footer>
</Container>
);
}
}
const mapStateToProps = state => {
console.log('mapStateToProps state', state);
return { guests: state.guests };
};
export default connect(mapStateToProps)(View1);
guest
View2.js -から選択したの詳細を表示するビューView1.js
:
import React, { Component } from 'react';
import { Container, Header, Title, Content, Footer, FooterTab, Button, Icon,
Text, List, ListItem } from 'native-base';
class View2 extends Component {
render() {
console.log('View2 props: ', this.props);
return (
<Container>
<Header>
<Title>Header</Title>
</Header>
<Content>
<Content>
<List>
<ListItem>
<Text>{this.props.name}</Text>
</ListItem>
</List>
</Content>
</Content>
<Footer>
<FooterTab>
<Button transparent>
<Icon name='ios-call' />
</Button>
</FooterTab>
</Footer>
</Container>
);
}
}
export default View2;