// Copyright (c) 2015 Mattermost, Inc. All Rights Reserved. // See License.txt for license information. import AppDispatcher from '../dispatcher/app_dispatcher.jsx'; import * as Client from '../utils/client.jsx'; import Constants from '../utils/constants.jsx'; import * as Utils from '../utils/utils.jsx'; const Modal = ReactBootstrap.Modal; export default class EditChannelHeaderModal extends React.Component { constructor(props) { super(props); this.handleChange = this.handleChange.bind(this); this.handleSubmit = this.handleSubmit.bind(this); this.onShow = this.onShow.bind(this); this.onHide = this.onHide.bind(this); this.state = { header: props.channel.header, serverError: '' }; } componentDidMount() { if (this.props.show) { this.onShow(); } } componentWillReceiveProps(nextProps) { if (this.props.channel.header !== nextProps.channel.header) { this.setState({ header: nextProps.channel.header }); } } componentDidUpdate(prevProps) { if (this.props.show && !prevProps.show) { this.onShow(); } } handleChange(e) { this.setState({ header: e.target.value }); } handleSubmit() { Client.updateChannelHeader( this.props.channel.id, this.state.header, (channel) => { this.setState({serverError: ''}); this.onHide(); AppDispatcher.handleServerAction({ type: Constants.ActionTypes.RECIEVED_CHANNEL, channel }); }, (err) => { if (err.message === 'Invalid channel_header parameter') { this.setState({serverError: 'This channel header is too long, please enter a shorter one'}); } else { this.setState({serverError: err.message}); } } ); } onShow() { const textarea = ReactDOM.findDOMNode(this.refs.textarea); Utils.placeCaretAtEnd(textarea); } onHide() { this.setState({ serverError: '', header: this.props.channel.header }); this.props.onHide(); } render() { var serverError = null; if (this.state.serverError) { serverError =

; } return ( {'Edit Header for ' + this.props.channel.display_name}

{'Edit the text appearing next to the channel name in the channel header.'}