blob: 756aae638bc04a37679a6d232f03cb4abc2a664a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
// 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 AllowedDomainsPage = require('./team_signup_allowed_domains_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');
module.exports = React.createClass({
displayName: 'SignupTeamComplete',
propTypes: {
hash: React.PropTypes.string,
email: React.PropTypes.string,
data: React.PropTypes.string
},
updateParent: function(state, skipSet) {
BrowserStore.setGlobalItem(this.props.hash, state);
if (!skipSet) {
this.setState(state);
}
},
getInitialState: function() {
var props = BrowserStore.getGlobalItem(this.props.hash);
if (!props) {
props = {};
props.wizard = 'welcome';
props.team = {};
props.team.email = this.props.email;
props.team.allowed_domains = '';
props.invites = [];
props.invites.push('');
props.invites.push('');
props.invites.push('');
props.user = {};
props.hash = this.props.hash;
props.data = this.props.data;
}
return props;
},
render: function() {
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 === 'allowed_domains') {
return <AllowedDomainsPage 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>);
}
});
|