import React from 'react'; import { connect } from 'react-redux'; import PropTypes from 'prop-types'; import { ScrollView, Text } from 'react-native'; import isEqual from 'lodash/isEqual'; import Loading from '../../containers/Loading'; import KeyboardView from '../../presentation/KeyboardView'; import scrollPersistTaps from '../../utils/scrollPersistTaps'; import I18n from '../../i18n'; import { CustomHeaderButtons, Item, CloseModalButton } from '../../containers/HeaderButton'; import StatusBar from '../../containers/StatusBar'; import { themes } from '../../constants/colors'; import { withTheme } from '../../theme'; import { getUserSelector } from '../../selectors/login'; import TextInput from '../../containers/TextInput'; import RocketChat from '../../lib/rocketchat'; import Navigation from '../../lib/Navigation'; import { createDiscussionRequest } from '../../actions/createDiscussion'; import { showErrorAlert } from '../../utils/info'; import SelectChannel from './SelectChannel'; import SelectUsers from './SelectUsers'; import styles from './styles'; import SafeAreaView from '../../containers/SafeAreaView'; import { goRoom } from '../../utils/goRoom'; class CreateChannelView extends React.Component { propTypes = { navigation: PropTypes.object, route: PropTypes.object, server: PropTypes.string, user: PropTypes.object, create: PropTypes.func, loading: PropTypes.bool, result: PropTypes.object, failure: PropTypes.bool, error: PropTypes.object, theme: PropTypes.string, isMasterDetail: PropTypes.bool } constructor(props) { super(props); const { route } = props; this.channel = route.params?.channel; const message = route.params?.message ?? {}; this.state = { channel: this.channel, message, name: message?.msg || '', users: [], reply: '' }; this.setHeader(); } componentDidUpdate(prevProps, prevState) { const { loading, failure, error, result, isMasterDetail } = this.props; if (!isEqual(this.state, prevState)) { this.setHeader(); } if (!loading && loading !== prevProps.loading) { setTimeout(() => { if (failure) { const msg = error.reason || I18n.t('There_was_an_error_while_action', { action: I18n.t('creating_channel') }); showErrorAlert(msg); } else { const { rid, t, prid } = result; if (isMasterDetail) { Navigation.navigate('DrawerNavigator'); } else { Navigation.navigate('RoomsListView'); } const item = { rid, name: RocketChat.getRoomTitle(result), t, prid }; goRoom({ item, isMasterDetail }); } }, 300); } } setHeader = () => { const { navigation, route } = this.props; const showCloseModal = route.params?.showCloseModal; navigation.setOptions({ title: I18n.t('Create_Discussion'), headerRight: ( this.valid() ? () => ( ) : null ), headerLeft: showCloseModal ? () => : undefined }); } submit = () => { const { name: t_name, channel: { prid, rid }, message: { id: pmid }, reply, users } = this.state; const { create } = this.props; // create discussion create({ prid: prid || rid, pmid, t_name, reply, users }); }; valid = () => { const { channel, name } = this.state; return ( channel && channel.rid && channel.rid.trim().length && name.trim().length ); }; render() { const { name, users } = this.state; const { server, user, loading, theme } = this.props; return ( {I18n.t('Discussion_Desc')} this.setState({ channel: { rid: value } })} theme={theme} /> this.setState({ name: text })} theme={theme} /> this.setState({ users: value })} theme={theme} /> this.setState({ reply: text })} /> ); } } const mapStateToProps = state => ({ user: getUserSelector(state), server: state.server.server, error: state.createDiscussion.error, failure: state.createDiscussion.failure, loading: state.createDiscussion.isFetching, result: state.createDiscussion.result, isMasterDetail: state.app.isMasterDetail }); const mapDispatchToProps = dispatch => ({ create: data => dispatch(createDiscussionRequest(data)) }); export default connect(mapStateToProps, mapDispatchToProps)(withTheme(CreateChannelView));