import React from 'react'; import PropTypes from 'prop-types'; import { Text, View, Button, SafeAreaView } from 'react-native'; import { connect } from 'react-redux'; import { bindActionCreators } from 'redux'; import equal from 'deep-equal'; import { ListView } from './ListView'; import * as actions from '../../actions'; import { openRoom } from '../../actions/room'; import { editCancel } from '../../actions/messages'; import database from '../../lib/realm'; import RocketChat from '../../lib/rocketchat'; import Message from '../../containers/message'; import MessageActions from '../../containers/MessageActions'; import MessageErrorActions from '../../containers/MessageErrorActions'; import MessageBox from '../../containers/MessageBox'; import Typing from '../../containers/Typing'; import KeyboardView from '../../presentation/KeyboardView'; import Header from '../../containers/Header'; import RoomsHeader from './Header'; import Banner from './banner'; import styles from './styles'; import debounce from '../../utils/debounce'; import scrollPersistTaps from '../../utils/scrollPersistTaps'; const ds = new ListView.DataSource({ rowHasChanged: (r1, r2) => r1._id !== r2._id }); const typing = () => ; @connect( state => ({ Site_Url: state.settings.Site_Url || state.server ? state.server.server : '', Message_TimeFormat: state.settings.Message_TimeFormat, loading: state.messages.isFetching, user: state.login.user, lastOpened: state.room.lastOpen }), dispatch => ({ actions: bindActionCreators(actions, dispatch), openRoom: room => dispatch(openRoom(room)), editCancel: () => dispatch(editCancel()) }) ) export default class RoomView extends React.Component { static propTypes = { // lastOpened: PropTypes.instanceOf(Date), navigation: PropTypes.object.isRequired, openRoom: PropTypes.func.isRequired, user: PropTypes.object.isRequired, editCancel: PropTypes.func, rid: PropTypes.string, name: PropTypes.string, Site_Url: PropTypes.string, Message_TimeFormat: PropTypes.string }; static navigationOptions = ({ navigation }) => ({ header:
} /> }); constructor(props) { super(props); this.rid = props.rid || props.navigation.state.params.room.rid; this.name = this.props.name || this.props.navigation.state.params.name || this.props.navigation.state.params.room.name; this.opened = new Date(); this.data = database .objects('messages') .filtered('rid = $0', this.rid) .sorted('ts', true); const rowIds = this.data.map((row, index) => index); this.room = database.objects('subscriptions').filtered('rid = $0', this.rid); this.state = { dataSource: ds.cloneWithRows(this.data, rowIds), loaded: true, joined: typeof props.rid === 'undefined' }; } componentWillMount() { this.props.navigation.setParams({ title: this.name }); this.props.openRoom({ rid: this.rid, name: this.name }); this.data.addListener(this.updateState); } shouldComponentUpdate(nextProps, nextState) { return !(equal(this.props, nextProps) && equal(this.state, nextState)); } componentWillUnmount() { clearTimeout(this.timer); this.data.removeAllListeners(); this.props.editCancel(); } onEndReached = () => { if ( // rowCount && this.state.loaded && this.state.loadingMore !== true && this.state.end !== true ) { this.setState({ loadingMore: true }); requestAnimationFrame(() => { const lastRowData = this.data[this.data.length - 1]; if (!lastRowData) { return; } RocketChat.loadMessagesForRoom(this.rid, lastRowData.ts, ({ end }) => { this.setState({ loadingMore: false, end }); }); }); } } updateState = debounce(() => { const rowIds = this.data.map((row, index) => index); this.setState({ dataSource: this.state.dataSource.cloneWithRows(this.data, rowIds) }); }, 50); sendMessage = message => RocketChat.sendMessage(this.rid, message); joinRoom = async() => { await RocketChat.joinRoom(this.props.rid); this.setState({ joined: true }); }; renderItem = item => ( ); renderSeparator = () => ; renderFooter = () => { if (!this.state.joined) { return ( You are in preview mode.