import React from 'react'; import PropTypes from 'prop-types'; import { View, Text, FlatList, StyleSheet } from 'react-native'; import realm from './realm'; const styles = StyleSheet.create({ roomItem: { lineHeight: 18, borderTopWidth: 2, borderColor: '#aaa', padding: 14 }, container: { flex: 1 }, separator: { height: 1, // width: "86%", backgroundColor: '#CED0CE' // marginLeft: "14%" } }); class RoomItem extends React.PureComponent { static propTypes = { onPressItem: PropTypes.func.isRequired, title: PropTypes.string.isRequired, id: PropTypes.string.isRequired } _onPress = () => { this.props.onPressItem(this.props.id); }; render() { return ( { this.props.title } ); } } export default class RoomsView extends React.Component { static propTypes = { navigation: PropTypes.object.isRequired } constructor(props) { super(props); this.state = { dataSource: realm.objects('subscriptions').sorted('name') }; } componentWillMount() { realm.addListener('change', () => this.setState(getState())); } _onPressItem = (id) => { const { navigate } = this.props.navigation; console.log('pressed', id); navigate('Room', { sid: id }); } renderItem = ({ item }) => ( ); renderSeparator = () => ( ); render() { return ( item._id} ItemSeparatorComponent={this.renderSeparator} /> ); } }