// Copyright (c) 2015 Mattermost, Inc. All Rights Reserved. // See License.txt for license information. import * as utils from '../utils/utils.jsx'; import * as client from '../utils/client.jsx'; export default class TeamSignupDisplayNamePage extends React.Component { constructor(props) { super(props); this.submitBack = this.submitBack.bind(this); this.submitNext = this.submitNext.bind(this); this.state = {}; } submitBack(e) { e.preventDefault(); this.props.state.wizard = 'welcome'; this.props.updateParent(this.props.state); } submitNext(e) { e.preventDefault(); var displayName = ReactDOM.findDOMNode(this.refs.name).value.trim(); if (!displayName) { this.setState({nameError: 'This field is required'}); return; } else if (displayName.length < 4 || displayName.length > 15) { this.setState({nameError: 'Name must be 4 or more characters up to a maximum of 15'}); return; } this.props.state.wizard = 'team_url'; this.props.state.team.display_name = displayName; this.props.state.team.name = utils.cleanUpUrlable(displayName); this.props.updateParent(this.props.state); } handleFocus(e) { e.preventDefault(); e.currentTarget.select(); } render() { client.track('signup', 'signup_team_02_name'); var nameError = null; var nameDivClass = 'form-group'; if (this.state.nameError) { nameError = ; nameDivClass += ' has-error'; } return (

{'Team Name'}

{nameError}
{'Name your team in any language. Your team name shows in menus and headings.'}
Back to previous step
); } } TeamSignupDisplayNamePage.propTypes = { state: React.PropTypes.object, updateParent: React.PropTypes.func };