import React from 'react'; import { StyleSheet } from 'react-native'; import PropTypes from 'prop-types'; import { connect } from 'react-redux'; import { CustomHeaderButtons, Item } from '../../../containers/HeaderButton'; import database, { safeAddListener } from '../../../lib/realm'; const styles = StyleSheet.create({ more: { marginHorizontal: 0, marginLeft: 0, marginRight: 5 }, thread: { marginHorizontal: 0, marginLeft: 0, marginRight: 15 } }); @connect(state => ({ userId: state.login.user && state.login.user.id, threadsEnabled: state.settings.Threads_enabled })) class RightButtonsContainer extends React.PureComponent { static propTypes = { userId: PropTypes.string, threadsEnabled: PropTypes.bool, rid: PropTypes.string, t: PropTypes.string, tmid: PropTypes.string, navigation: PropTypes.object, toggleFollowThread: PropTypes.func }; constructor(props) { super(props); if (props.tmid) { // FIXME: it may be empty if the thread header isn't fetched yet this.thread = database.objectForPrimaryKey('messages', props.tmid); } this.state = { isFollowingThread: true }; } componentDidMount() { if (this.thread) { safeAddListener(this.thread, this.updateThread); } } componentWillUnmount() { if (this.thread && this.thread.removeAllListeners) { this.thread.removeAllListeners(); } } updateThread = () => { const { userId } = this.props; this.setState({ isFollowingThread: this.thread.replies && !!this.thread.replies.find(t => t === userId) }); } goThreadsView = () => { const { rid, t, navigation } = this.props; navigation.navigate('ThreadMessagesView', { rid, t }); } goRoomActionsView = () => { const { rid, t, navigation } = this.props; navigation.navigate('RoomActionsView', { rid, t }); } toggleFollowThread = () => { const { isFollowingThread } = this.state; const { toggleFollowThread } = this.props; if (toggleFollowThread) { toggleFollowThread(isFollowingThread); } } render() { const { isFollowingThread } = this.state; const { t, tmid, threadsEnabled } = this.props; if (t === 'l') { return null; } if (tmid) { return ( ); } return ( {threadsEnabled ? ( ) : null} ); } } export default RightButtonsContainer;