mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
200 lines
7.8 KiB
JavaScript
200 lines
7.8 KiB
JavaScript
// Copyright (c) 2015 Mattermost, Inc. All Rights Reserved.
|
|
// See License.txt for license information.
|
|
|
|
const Utils = require('../utils/utils.jsx');
|
|
var Modal = ReactBootstrap.Modal;
|
|
|
|
export default class NewChannelModal extends React.Component {
|
|
constructor(props) {
|
|
super(props);
|
|
|
|
this.handleSubmit = this.handleSubmit.bind(this);
|
|
this.handleChange = this.handleChange.bind(this);
|
|
|
|
this.state = {
|
|
displayNameError: ''
|
|
};
|
|
}
|
|
componentWillReceiveProps(nextProps) {
|
|
if (nextProps.show === true && this.props.show === false) {
|
|
this.setState({
|
|
displayNameError: ''
|
|
});
|
|
}
|
|
}
|
|
handleSubmit(e) {
|
|
e.preventDefault();
|
|
|
|
const displayName = ReactDOM.findDOMNode(this.refs.display_name).value.trim();
|
|
if (displayName.length < 1) {
|
|
this.setState({displayNameError: 'This field is required'});
|
|
return;
|
|
}
|
|
|
|
this.props.onSubmitChannel();
|
|
}
|
|
handleChange() {
|
|
const newData = {
|
|
displayName: ReactDOM.findDOMNode(this.refs.display_name).value,
|
|
purpose: ReactDOM.findDOMNode(this.refs.channel_purpose).value
|
|
};
|
|
this.props.onDataChanged(newData);
|
|
}
|
|
render() {
|
|
var displayNameError = null;
|
|
var serverError = null;
|
|
var displayNameClass = 'form-group';
|
|
|
|
if (this.state.displayNameError) {
|
|
displayNameError = <p className='input__help error'>{this.state.displayNameError}</p>;
|
|
displayNameClass += ' has-error';
|
|
}
|
|
|
|
if (this.props.serverError) {
|
|
serverError = <div className='form-group has-error'><p className='input__help error'>{this.props.serverError}</p></div>;
|
|
}
|
|
|
|
var channelTerm = '';
|
|
var channelSwitchText = '';
|
|
switch (this.props.channelType) {
|
|
case 'P':
|
|
channelTerm = 'Group';
|
|
channelSwitchText = (
|
|
<div className='modal-intro'>
|
|
{'Create a new private group with restricted membership. '}
|
|
<a
|
|
href='#'
|
|
onClick={this.props.onTypeSwitched}
|
|
>
|
|
{'Create a public channel'}
|
|
</a>
|
|
</div>
|
|
);
|
|
break;
|
|
case 'O':
|
|
channelTerm = 'Channel';
|
|
channelSwitchText = (
|
|
<div className='modal-intro'>
|
|
{'Create a new public channel anyone can join. '}
|
|
<a
|
|
href='#'
|
|
onClick={this.props.onTypeSwitched}
|
|
>
|
|
{'Create a private group'}
|
|
</a>
|
|
</div>
|
|
);
|
|
break;
|
|
}
|
|
|
|
const prettyTeamURL = Utils.getShortenedTeamURL();
|
|
|
|
return (
|
|
<span>
|
|
<Modal
|
|
show={this.props.show}
|
|
bsSize='large'
|
|
onHide={this.props.onModalDismissed}
|
|
>
|
|
<Modal.Header closeButton={true}>
|
|
<Modal.Title>{'New ' + channelTerm}</Modal.Title>
|
|
</Modal.Header>
|
|
<form
|
|
role='form'
|
|
className='form-horizontal'
|
|
>
|
|
<Modal.Body>
|
|
<div>
|
|
{channelSwitchText}
|
|
</div>
|
|
<div className={displayNameClass}>
|
|
<label className='col-sm-3 form__label control-label'>{'Name'}</label>
|
|
<div className='col-sm-9'>
|
|
<input
|
|
onChange={this.handleChange}
|
|
type='text'
|
|
ref='display_name'
|
|
className='form-control'
|
|
placeholder='Ex: "Bugs", "Marketing", "办公室恋情"'
|
|
maxLength='22'
|
|
value={this.props.channelData.displayName}
|
|
autoFocus={true}
|
|
tabIndex='1'
|
|
/>
|
|
{displayNameError}
|
|
<p className='input__help dark'>
|
|
{'URL: ' + prettyTeamURL + this.props.channelData.name + ' ('}
|
|
<a
|
|
href='#'
|
|
onClick={this.props.onChangeURLPressed}
|
|
>
|
|
{'Edit'}
|
|
</a>
|
|
{')'}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
<div className='form-group less'>
|
|
<div className='col-sm-3'>
|
|
<label className='form__label control-label'>{'Purpose'}</label>
|
|
<label className='form__label light'>{'(optional)'}</label>
|
|
</div>
|
|
<div className='col-sm-9'>
|
|
<textarea
|
|
className='form-control no-resize'
|
|
ref='channel_purpose'
|
|
rows='4'
|
|
placeholder='Purpose'
|
|
maxLength='128'
|
|
value={this.props.channelData.purpose}
|
|
onChange={this.handleChange}
|
|
tabIndex='2'
|
|
/>
|
|
<p className='input__help'>
|
|
{`Describe how this ${channelTerm} should be used.`}
|
|
</p>
|
|
{serverError}
|
|
</div>
|
|
</div>
|
|
</Modal.Body>
|
|
<Modal.Footer>
|
|
<button
|
|
type='button'
|
|
className='btn btn-default'
|
|
onClick={this.props.onModalDismissed}
|
|
>
|
|
{'Cancel'}
|
|
</button>
|
|
<button
|
|
onClick={this.handleSubmit}
|
|
type='submit'
|
|
className='btn btn-primary'
|
|
tabIndex='3'
|
|
>
|
|
{'Create New ' + channelTerm}
|
|
</button>
|
|
</Modal.Footer>
|
|
</form>
|
|
</Modal>
|
|
</span>
|
|
);
|
|
}
|
|
}
|
|
|
|
NewChannelModal.defaultProps = {
|
|
show: false,
|
|
channelType: 'O',
|
|
serverError: ''
|
|
};
|
|
NewChannelModal.propTypes = {
|
|
show: React.PropTypes.bool.isRequired,
|
|
channelType: React.PropTypes.string.isRequired,
|
|
channelData: React.PropTypes.object.isRequired,
|
|
serverError: React.PropTypes.string,
|
|
onSubmitChannel: React.PropTypes.func.isRequired,
|
|
onModalDismissed: React.PropTypes.func.isRequired,
|
|
onTypeSwitched: React.PropTypes.func.isRequired,
|
|
onChangeURLPressed: React.PropTypes.func.isRequired,
|
|
onDataChanged: React.PropTypes.func.isRequired
|
|
};
|