// 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');
var UserStore = require('../stores/user_store.jsx');
var constants = require('../utils/constants.jsx')
WelcomePage = React.createClass({
submitNext: function (e) {
if (!utils.isLocalStorageSupported()) {
this.setState({ storage_error: "This service requires local storage to be enabled. Please enable it or exit private browsing."} );
return;
}
e.preventDefault();
this.props.state.wizard = "team_name";
this.props.updateParent(this.props.state);
},
handleDiffEmail: function (e) {
e.preventDefault();
this.setState({ use_diff: true });
},
handleDiffSubmit: function (e) {
e.preventDefault();
var state = { use_diff: true, server_error: "" };
var email = this.refs.email.getDOMNode().value.trim().toLowerCase();
if (!email || !utils.isEmail(email)) {
state.email_error = "Please enter a valid email address";
this.setState(state);
return;
}
else if (!utils.isLocalStorageSupported()) {
state.email_error = "This service requires local storage to be enabled. Please enable it or exit private browsing.";
this.setState(state);
return;
}
else {
state.email_error = "";
}
client.signupTeam(email, this.props.state.team.name,
function(data) {
this.props.state.wizard = "finished";
this.props.updateParent(this.props.state);
window.location.href = "/signup_team_confirm/?email=" + encodeURI(email);
}.bind(this),
function(err) {
this.state.server_error = err.message;
this.setState(this.state);
}.bind(this)
);
},
getInitialState: function() {
return { use_diff: false };
},
render: function() {
client.track('signup', 'signup_team_01_welcome');
var storage_error = this.state.storage_error ? : null;
var email_error = this.state.email_error ? : null;
var server_error = this.state.server_error ?
: null;
return (
Welcome!
{"Let's set up your " + strings.Team + " on " + config.SiteName + "."}
Please confirm your email address: { this.props.state.team.email }
{ storage_error }
If this is not correct, you can switch to a different email. We'll send you a new invite right away.
{ email_error }
{ server_error }
);
}
});
TeamNamePage = React.createClass({
submitBack: function (e) {
e.preventDefault();
this.props.state.wizard = "welcome";
this.props.updateParent(this.props.state);
},
submitNext: function (e) {
e.preventDefault();
var name = this.refs.name.getDOMNode().value.trim();
if (!name) {
this.setState({name_error: "This field is required"});
return;
}
this.props.state.wizard = "team_url";
this.props.state.team.name = name;
this.props.updateParent(this.props.state);
},
getInitialState: function() {
return { };
},
render: function() {
client.track('signup', 'signup_team_02_name');
var name_error = this.state.name_error ? : null;
return (
{utils.toTitleCase(strings.Team) + " Name"}
{ name_error }
{"Your " + strings.Team + " name shows in menus and headings. It may include the name of your " + strings.Company + ", but it's not required."}
);
}
});
TeamUrlPage = React.createClass({
submitBack: function (e) {
e.preventDefault();
this.props.state.wizard = "team_name";
this.props.updateParent(this.props.state);
},
submitNext: function (e) {
e.preventDefault();
var name = this.refs.name.getDOMNode().value.trim();
if (!name) {
this.setState({name_error: "This field is required"});
return;
}
var cleaned_name = utils.cleanUpUrlable(name);
var urlRegex = /^[a-z0-9]+([a-z\-0-9]+|(__)?)[a-z0-9]+$/g;
if (cleaned_name != name || !urlRegex.test(name)) {
this.setState({name_error: "Must be lowercase alphanumeric characters"});
return;
}
else if (cleaned_name.length <= 3 || cleaned_name.length > 15) {
this.setState({name_error: "Domain must be 4 or more characters up to a maximum of 15"})
return;
}
for (var index = 0; index < constants.RESERVED_DOMAINS.length; index++) {
if (cleaned_name.indexOf(constants.RESERVED_DOMAINS[index]) == 0) {
this.setState({name_error: "This Team URL name is unavailable"})
return;
}
}
client.findTeamByDomain(name,
function(data) {
if (!data) {
if (config.AllowSignupDomainsWizard) {
this.props.state.wizard = "allowed_domains";
} else {
this.props.state.wizard = "send_invites";
this.props.state.team.type = 'O';
}
this.props.state.team.domain = name;
this.props.updateParent(this.props.state);
}
else {
this.state.name_error = "This URL is unavailable. Please try another.";
this.setState(this.state);
}
}.bind(this),
function(err) {
this.state.name_error = err.message;
this.setState(this.state);
}.bind(this)
);
},
getInitialState: function() {
return { };
},
render: function() {
client.track('signup', 'signup_team_03_url');
var name_error = this.state.name_error ? : null;
return (
{utils.toTitleCase(strings.Team) + " URL"}
.{ utils.getDomainWithOutSub() }
{ name_error }
{"Pick something short and memorable for your " + strings.Team + "'s web address."}
{"Your " + strings.Team + " URL can only contain lowercase letters, numbers and dashes. Also, it needs to start with a letter and cannot end in a dash."}
);
}
});
AllowedDomainsPage = React.createClass({
submitBack: function (e) {
e.preventDefault();
this.props.state.wizard = "team_url";
this.props.updateParent(this.props.state);
},
submitNext: function (e) {
e.preventDefault();
if (this.refs.open_network.getDOMNode().checked) {
this.props.state.wizard = "send_invites";
this.props.state.team.type = 'O';
this.props.updateParent(this.props.state);
return;
}
if (this.refs.allow.getDOMNode().checked) {
var name = this.refs.name.getDOMNode().value.trim();
var domainRegex = /^\w+\.\w+$/
if (!name) {
this.setState({name_error: "This field is required"});
return;
}
if(!name.trim().match(domainRegex)) {
this.setState({name_error: "The domain doesn't appear valid"});
return;
}
this.props.state.wizard = "send_invites";
this.props.state.team.allowed_domains = name;
this.props.state.team.type = 'I';
this.props.updateParent(this.props.state);
}
else {
this.props.state.wizard = "send_invites";
this.props.state.team.type = 'I';
this.props.updateParent(this.props.state);
}
},
getInitialState: function() {
return { };
},
render: function() {
client.track('signup', 'signup_team_04_allow_domains');
var name_error = this.state.name_error ? : null;
return (
Email Domain
{"Check this box to allow your " + strings.Team + " members to sign up using their " + strings.Company + " email addresses if you share the same domain--otherwise, you need to invite everyone yourself."}
{"Your " + strings.Team + "'s domain for emails"}
@
{ name_error }
To allow signups from multiple domains, separate each with a comma.
);
}
});
EmailItem = React.createClass({
getInitialState: function() {
return { };
},
getValue: function() {
return this.refs.email.getDOMNode().value.trim()
},
validate: function(teamEmail) {
var email = this.refs.email.getDOMNode().value.trim().toLowerCase();
if (!email) {
return true;
}
if (!utils.isEmail(email)) {
this.state.email_error = "Please enter a valid email address";
this.setState(this.state);
return false;
}
else if (email === teamEmail) {
this.state.email_error = "Please use a different email than the one used at signup";
this.setState(this.state);
return false;
}
else {
this.state.email_error = "";
this.setState(this.state);
return true;
}
},
render: function() {
var email_error = this.state.email_error ? : null;
return (
{ email_error }
);
}
});
SendInivtesPage = React.createClass({
submitBack: function (e) {
e.preventDefault();
if (config.AllowSignupDomainsWizard) {
this.props.state.wizard = "allowed_domains";
} else {
this.props.state.wizard = "team_url";
}
this.props.updateParent(this.props.state);
},
submitNext: function (e) {
e.preventDefault();
var valid = true;
var emails = [];
for (var i = 0; i < this.props.state.invites.length; i++) {
if (!this.refs['email_' + i].validate(this.props.state.team.email)) {
valid = false;
} else {
emails.push(this.refs['email_' + i].getValue());
}
}
if (!valid) {
return;
}
this.props.state.wizard = "username";
this.props.state.invites = emails;
this.props.updateParent(this.props.state);
},
submitAddInvite: function (e) {
e.preventDefault();
this.props.state.wizard = "send_invites";
if (this.props.state.invites == null || this.props.state.invites.length == 0) {
this.props.state.invites = [];
}
this.props.state.invites.push("");
this.props.updateParent(this.props.state);
},
submitSkip: function (e) {
e.preventDefault();
this.props.state.wizard = "username";
this.props.updateParent(this.props.state);
},
getInitialState: function() {
return { };
},
render: function() {
client.track('signup', 'signup_team_05_send_invites');
var name_error = this.state.name_error ? : null;
var emails = [];
for (var i = 0; i < this.props.state.invites.length; i++) {
emails.push();
}
return (
Send Invitations
{ emails }
{"If you'd prefer, you can send invitations after you finish setting up the "+ strings.Team + "."}
);
}
});
UsernamePage = React.createClass({
submitBack: function (e) {
e.preventDefault();
this.props.state.wizard = "send_invites";
this.props.updateParent(this.props.state);
},
submitNext: function (e) {
e.preventDefault();
var name = this.refs.name.getDOMNode().value.trim();
var username_error = utils.isValidUsername(name);
if (username_error === "Cannot use a reserved word as a username.") {
this.setState({name_error: "This username is reserved, please choose a new one." });
return;
} else if (username_error) {
this.setState({name_error: "Username must begin with a letter, and contain between 3 to 15 lowercase characters made up of numbers, letters, and the symbols '.', '-' and '_'." });
return;
}
this.props.state.wizard = "password";
this.props.state.user.username = name;
this.props.updateParent(this.props.state);
},
getInitialState: function() {
return { };
},
render: function() {
client.track('signup', 'signup_team_06_username');
var name_error = this.state.name_error ? : null;
return (
Choose a username
{ name_error }
{"Pick something " + strings.Team + "mates will recognize. Your username is how you will appear to others."}
You'll use your email address ({this.props.state.team.email}) and password to log into {config.SiteName}.
{ name_error }
By proceeding to create your account and use { config.SiteName }, you agree to our Terms of Service and Privacy Policy. If you do not agree, you cannot use {config.SiteName}.