mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
113 lines
3.3 KiB
JavaScript
113 lines
3.3 KiB
JavaScript
// Copyright (c) 2015 Spinpunch, Inc. All Rights Reserved.
|
|
// See License.txt for license information.
|
|
|
|
var WelcomePage = require('./team_signup_welcome_page.jsx');
|
|
var TeamDisplayNamePage = require('./team_signup_display_name_page.jsx');
|
|
var TeamURLPage = require('./team_signup_url_page.jsx');
|
|
var SendInivtesPage = require('./team_signup_send_invites_page.jsx');
|
|
var UsernamePage = require('./team_signup_username_page.jsx');
|
|
var PasswordPage = require('./team_signup_password_page.jsx');
|
|
var BrowserStore = require('../stores/browser_store.jsx');
|
|
|
|
export default class SignupTeamComplete extends React.Component {
|
|
constructor(props) {
|
|
super(props);
|
|
|
|
this.updateParent = this.updateParent.bind(this);
|
|
|
|
var initialState = BrowserStore.getGlobalItem(props.hash);
|
|
|
|
if (!initialState) {
|
|
initialState = {};
|
|
initialState.wizard = 'welcome';
|
|
initialState.team = {};
|
|
initialState.team.email = this.props.email;
|
|
initialState.team.allowed_domains = '';
|
|
initialState.invites = [];
|
|
initialState.invites.push('');
|
|
initialState.invites.push('');
|
|
initialState.invites.push('');
|
|
initialState.user = {};
|
|
initialState.hash = this.props.hash;
|
|
initialState.data = this.props.data;
|
|
}
|
|
|
|
this.state = initialState;
|
|
}
|
|
updateParent(state, skipSet) {
|
|
BrowserStore.setGlobalItem(this.props.hash, state);
|
|
|
|
if (!skipSet) {
|
|
this.setState(state);
|
|
}
|
|
}
|
|
render() {
|
|
if (this.state.wizard === 'welcome') {
|
|
return (
|
|
<WelcomePage
|
|
state={this.state}
|
|
updateParent={this.updateParent}
|
|
/>
|
|
);
|
|
}
|
|
|
|
if (this.state.wizard === 'team_display_name') {
|
|
return (
|
|
<TeamDisplayNamePage
|
|
state={this.state}
|
|
updateParent={this.updateParent}
|
|
/>
|
|
);
|
|
}
|
|
|
|
if (this.state.wizard === 'team_url') {
|
|
return (
|
|
<TeamURLPage
|
|
state={this.state}
|
|
updateParent={this.updateParent}
|
|
/>
|
|
);
|
|
}
|
|
|
|
if (this.state.wizard === 'send_invites') {
|
|
return (
|
|
<SendInivtesPage
|
|
state={this.state}
|
|
updateParent={this.updateParent}
|
|
/>
|
|
);
|
|
}
|
|
|
|
if (this.state.wizard === 'username') {
|
|
return (
|
|
<UsernamePage
|
|
state={this.state}
|
|
updateParent={this.updateParent}
|
|
/>
|
|
);
|
|
}
|
|
|
|
if (this.state.wizard === 'password') {
|
|
return (
|
|
<PasswordPage
|
|
state={this.state}
|
|
updateParent={this.updateParent}
|
|
/>
|
|
);
|
|
}
|
|
|
|
return (<div>You've already completed the signup process for this invitation or this invitation has expired.</div>);
|
|
}
|
|
}
|
|
|
|
SignupTeamComplete.defaultProps = {
|
|
hash: '',
|
|
email: '',
|
|
data: ''
|
|
};
|
|
SignupTeamComplete.propTypes = {
|
|
hash: React.PropTypes.string,
|
|
email: React.PropTypes.string,
|
|
data: React.PropTypes.string
|
|
};
|