summaryrefslogtreecommitdiffstats
path: root/web/react/components/team_display_name_page.jsx
diff options
context:
space:
mode:
authorReed Garmsen <rgarmsen2295@gmail.com>2015-08-17 10:58:42 -0700
committerReed Garmsen <rgarmsen2295@gmail.com>2015-08-17 11:00:52 -0700
commit5dbfa999494e7569e064cb1bc9f2dd5ab414eb9e (patch)
tree2811128da42948c7b7b1c701c288aca11bc8b049 /web/react/components/team_display_name_page.jsx
parent0b4d97aedb26d223063d06765791ca8f1499a0ca (diff)
downloadchat-5dbfa999494e7569e064cb1bc9f2dd5ab414eb9e.tar.gz
chat-5dbfa999494e7569e064cb1bc9f2dd5ab414eb9e.tar.bz2
chat-5dbfa999494e7569e064cb1bc9f2dd5ab414eb9e.zip
Refactors the signup_team_complete.jsx file into multiple files for each component, rather than have all components put in one file
Diffstat (limited to 'web/react/components/team_display_name_page.jsx')
-rw-r--r--web/react/components/team_display_name_page.jsx72
1 files changed, 72 insertions, 0 deletions
diff --git a/web/react/components/team_display_name_page.jsx b/web/react/components/team_display_name_page.jsx
new file mode 100644
index 000000000..eb9fa79c3
--- /dev/null
+++ b/web/react/components/team_display_name_page.jsx
@@ -0,0 +1,72 @@
+// Copyright (c) 2015 Spinpunch, Inc. All Rights Reserved.
+// See License.txt for license information.
+
+var utils = require('../utils/utils.jsx');
+var client = require('../utils/client.jsx');
+
+module.exports = React.createClass({
+ displayName: 'TeamDisplayNamePage',
+ propTypes: {
+ state: React.PropTypes.object,
+ updateParent: React.PropTypes.func
+ },
+ submitBack: function(e) {
+ e.preventDefault();
+ this.props.state.wizard = 'welcome';
+ this.props.updateParent(this.props.state);
+ },
+ submitNext: function(e) {
+ e.preventDefault();
+
+ var displayName = this.refs.name.getDOMNode().value.trim();
+ if (!displayName) {
+ this.setState({nameError: 'This field is required'});
+ 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);
+ },
+ getInitialState: function() {
+ return {};
+ },
+ handleFocus: function(e) {
+ e.preventDefault();
+ e.currentTarget.select();
+ },
+ render: function() {
+ client.track('signup', 'signup_team_02_name');
+
+ var nameError = null;
+ var nameDivClass = 'form-group';
+ if (this.state.nameError) {
+ nameError = <label className='control-label'>{this.state.nameError}</label>;
+ nameDivClass += ' has-error';
+ }
+
+ return (
+ <div>
+ <form>
+ <img className='signup-team-logo' src='/static/images/logo.png' />
+
+ <h2>{utils.toTitleCase(strings.Team) + ' Name'}</h2>
+ <div className={nameDivClass}>
+ <div className='row'>
+ <div className='col-sm-9'>
+ <input type='text' ref='name' className='form-control' placeholder='' maxLength='128' defaultValue={this.props.state.team.display_name} autoFocus={true} onFocus={this.handleFocus} />
+ </div>
+ </div>
+ {nameError}
+ </div>
+ <div>{'Name your ' + strings.Team + ' in any language. Your ' + strings.Team + ' name shows in menus and headings.'}</div>
+ <button type='submit' className='btn btn-primary margin--extra' onClick={this.submitNext}>Next<i className='glyphicon glyphicon-chevron-right'></i></button>
+ <div className='margin--extra'>
+ <a href='#' onClick={this.submitBack}>Back to previous step</a>
+ </div>
+ </form>
+ </div>
+ );
+ }
+});