import React from 'react'; import PropTypes from 'prop-types'; import { Text, View, FlatList, StyleSheet, Button } from 'react-native'; import realm from '../lib/realm'; import RocketChat from '../lib/rocketchat'; import Message from '../components/Message'; import MessageBox from '../components/MessageBox'; import KeyboardView from '../components/KeyboardView'; const styles = StyleSheet.create({ container: { flex: 1 }, list: { flex: 1, transform: [{ scaleY: -1 }] }, separator: { height: 1, backgroundColor: '#CED0CE' }, bannerContainer: { backgroundColor: 'orange' }, bannerText: { margin: 5, textAlign: 'center', color: '#a00' }, header: { transform: [{ scaleY: -1 }], textAlign: 'center', padding: 5, color: '#ccc' } }); export default class RoomView extends React.Component { static propTypes = { navigation: PropTypes.object.isRequired } static navigationOptions = ({ navigation }) => ({ title: navigation.state.params.name || realm.objectForPrimaryKey('subscriptions', navigation.state.params.sid).name }); constructor(props) { super(props); this.rid = props.navigation.state.params.rid || realm.objectForPrimaryKey('subscriptions', props.navigation.state.params.sid).rid; // this.rid = 'GENERAL'; this.state = { dataSource: [], loaded: true, joined: typeof props.navigation.state.params.rid === 'undefined' }; this.url = realm.objectForPrimaryKey('settings', 'Site_Url').value; } componentWillMount() { const late = setTimeout(() => this.setState({ loaded: false }), 1000); RocketChat.loadMessagesForRoom(this.rid, null, () => { clearTimeout(late); this.setState({ loaded: true }); }); this.data = realm.objects('messages').filtered('_server.id = $0 AND rid = $1', RocketChat.currentServer, this.rid).sorted('ts', true); this.setState({ dataSource: this.data }); this.data.addListener(this.updateState); } componentWillUnmount() { this.data.removeListener(this.updateState); } onEndReached = () => { if (this.state.dataSource.length && this.state.loaded && this.state.loadingMore !== true && this.state.end !== true) { this.setState({ ...this.state, loadingMore: true }); RocketChat.loadMessagesForRoom(this.rid, this.state.dataSource[this.state.dataSource.length - 1].ts, ({ end }) => { this.setState({ ...this.state, loadingMore: false, end }); }); } } updateState = (data) => { this.setState({ dataSource: data }); }; sendMessage = message => RocketChat.sendMessage(this.rid, message); joinRoom = () => { RocketChat.joinRoom(this.props.navigation.state.params.rid) .then(() => { this.setState({ joined: true }); }); }; renderBanner = () => { if (this.state.loaded === false) { return ( Loading new messages... ); } }; renderItem = ({ item }) => ( ); renderSeparator = () => ( ); renderFooter = () => { if (!this.state.joined) { return ( You are in preview mode.