2016-06-02 16:21:14 -04:00
|
|
|
var React = require('react');
|
|
|
|
|
2016-06-03 12:00:00 -04:00
|
|
|
var countryData = require('../../lib/country-data');
|
2016-06-03 11:27:59 -04:00
|
|
|
|
2016-06-02 16:21:14 -04:00
|
|
|
var Button = require('../../components/forms/button.jsx');
|
|
|
|
var Checkbox = require('../../components/forms/checkbox.jsx');
|
|
|
|
var CheckboxGroup = require('../../components/forms/checkbox-group.jsx');
|
|
|
|
var Form = require('../../components/forms/form.jsx');
|
|
|
|
var FormStep = require('../../components/forms/formset.jsx').FormStep;
|
|
|
|
var Input = require('../../components/forms/input.jsx');
|
|
|
|
var PhoneInput = require('../../components/forms/phone-input.jsx');
|
|
|
|
var RadioGroup = require('../../components/forms/radio-group.jsx');
|
|
|
|
var Select = require('../../components/forms/select.jsx');
|
|
|
|
var TextArea = require('../../components/forms/textarea.jsx');
|
|
|
|
|
2016-06-03 11:27:59 -04:00
|
|
|
var DEFAULT_COUNTRY = 'us';
|
2016-06-02 16:21:14 -04:00
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
UsernameStep: React.createClass({
|
|
|
|
render: function () {
|
|
|
|
return (
|
|
|
|
<FormStep title="Create a Teacher Account"
|
|
|
|
description={
|
|
|
|
<p>
|
|
|
|
Creating a Teacher Account requires additional information
|
|
|
|
for review.
|
|
|
|
<strong>The approval process can take up to 24 hours</strong>
|
|
|
|
</p>}>
|
|
|
|
<Form onValidSubmit={this.props.onNextStep}>
|
|
|
|
<Input label="Username"
|
|
|
|
type="text"
|
|
|
|
name="user.username"
|
|
|
|
validations={{
|
|
|
|
matchRegexp: /^[\w-]*$/,
|
|
|
|
minLength: 3,
|
|
|
|
maxLength: 20
|
|
|
|
}}
|
|
|
|
validationErrors={{
|
|
|
|
matchRegexp: 'Your username may only contain characters and -',
|
|
|
|
minLength: 'Usernames must be at least three characters',
|
|
|
|
maxLength: 'Usernames must be at most 20 characters'
|
|
|
|
}}
|
|
|
|
required />
|
|
|
|
<Input label="Password"
|
|
|
|
type="password"
|
|
|
|
name="user.password"
|
|
|
|
validations={{
|
|
|
|
minLength: 6,
|
|
|
|
notEquals: 'password',
|
|
|
|
notEqualsField: 'user.username'
|
|
|
|
}}
|
|
|
|
validationErrors={{
|
|
|
|
minLength: 'Passwords must be at least six characters',
|
|
|
|
notEquals: 'Your password may not be "password"',
|
|
|
|
notEqualsField: 'Your password may not be your username'
|
|
|
|
}}
|
|
|
|
required />
|
|
|
|
<Input label="Confirm Password"
|
|
|
|
type="password"
|
|
|
|
name="passwordConfirmation"
|
|
|
|
validations="equalsField:user.password"
|
|
|
|
validationError="The passwords do not match"
|
|
|
|
required />
|
|
|
|
<Button type="submit">Next Step</Button>
|
|
|
|
</Form>
|
|
|
|
</FormStep>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}),
|
|
|
|
DemographicsStep: React.createClass({
|
2016-06-03 11:27:59 -04:00
|
|
|
getDefaultProps: function () {
|
|
|
|
return {defaultCountry: DEFAULT_COUNTRY};
|
|
|
|
},
|
2016-06-02 16:21:14 -04:00
|
|
|
getInitialState: function () {
|
|
|
|
return {otherDisabled: true};
|
|
|
|
},
|
|
|
|
onChooseGender: function (name, gender) {
|
|
|
|
this.setState({otherDisabled: gender !== 'other'});
|
|
|
|
},
|
|
|
|
render: function () {
|
|
|
|
var monthOptions = [
|
|
|
|
'January', 'February', 'March', 'April', 'May', 'June', 'July',
|
|
|
|
'August', 'September', 'October', 'November', 'December'
|
|
|
|
].map(function (label, id) {
|
|
|
|
return {value: id+1, label: label};
|
|
|
|
});
|
|
|
|
var yearOptions = Array.apply(null, Array(100)).map(function (v, id) {
|
|
|
|
var year = 2016 - id;
|
|
|
|
return {value: year, label: year};
|
|
|
|
});
|
|
|
|
return (
|
|
|
|
<FormStep title="Demographics"
|
|
|
|
description={
|
|
|
|
<p>
|
|
|
|
Your responses to these questions will be kept private.
|
|
|
|
Why do we ask for this information <a onClick={this.handle}>?</a>
|
|
|
|
</p>}>
|
|
|
|
<Form onValidSubmit={this.props.onNextStep}>
|
|
|
|
<Select label="Birth Month" name="user.birth.month" options={monthOptions} required />
|
|
|
|
<Select label="Birth Yeah" name="user.birth.year" options={yearOptions} required />
|
|
|
|
<RadioGroup label="Gender"
|
|
|
|
name="user.gender"
|
|
|
|
onChange={this.onChooseGender}
|
|
|
|
options={[
|
|
|
|
{value: 'female', label: 'Female'},
|
|
|
|
{value: 'male', label: 'Male'},
|
|
|
|
{value: 'other', label: 'Other'}
|
|
|
|
]}
|
|
|
|
required />
|
|
|
|
<Input disabled={this.state.otherDisabled} name="user.genderOther" type="text" />
|
|
|
|
<Select label="Country"
|
|
|
|
name="user.country"
|
2016-06-03 12:00:00 -04:00
|
|
|
options={countryData.countryOptions}
|
2016-06-03 11:27:59 -04:00
|
|
|
value={this.props.defaultCountry}
|
2016-06-02 16:21:14 -04:00
|
|
|
required />
|
|
|
|
<Button type="submit">Next Step</Button>
|
|
|
|
</Form>
|
|
|
|
</FormStep>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}),
|
|
|
|
NameStep: React.createClass({
|
|
|
|
render: function () {
|
|
|
|
return (
|
|
|
|
<FormStep title="First & Last Name"
|
|
|
|
description={
|
|
|
|
<p>
|
|
|
|
Your responses to these questions will be kept private.
|
|
|
|
Why do we ask for this information <a onClick={this.handle}>?</a>
|
|
|
|
</p>}>
|
|
|
|
<Form onValidSubmit={this.props.onNextStep}>
|
|
|
|
<Input label="First Name" type="text" name="user.name.first" required />
|
|
|
|
<Input label="Last Name" type="text" name="user.name.last" required />
|
|
|
|
<Button type="submit">Next Step</Button>
|
|
|
|
</Form>
|
|
|
|
</FormStep>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}),
|
|
|
|
PhoneNumberStep: React.createClass({
|
2016-06-03 11:27:59 -04:00
|
|
|
getDefaultProps: function () {
|
|
|
|
return {defaultCountry: DEFAULT_COUNTRY};
|
|
|
|
},
|
2016-06-02 16:21:14 -04:00
|
|
|
render: function () {
|
|
|
|
return (
|
|
|
|
<FormStep title="Phone Number"
|
|
|
|
description={
|
|
|
|
<p>
|
|
|
|
Your responses to these questions will be kept private.
|
|
|
|
Why do we ask for this information <a onClick={this.handle}>?</a>
|
|
|
|
</p>}>
|
|
|
|
<Form onValidSubmit={this.props.onNextStep}>
|
|
|
|
<PhoneInput label="Phone Number"
|
|
|
|
name="phone"
|
2016-06-03 11:27:59 -04:00
|
|
|
defaultCountry={
|
|
|
|
(this.props.formData.user && this.props.formData.user.country) ||
|
|
|
|
this.props.defaultCountry
|
|
|
|
}
|
2016-06-02 16:21:14 -04:00
|
|
|
required />
|
|
|
|
<Checkbox label={
|
|
|
|
'Yes, I consent to lorem ipsum dolor sit amet, consectetur' +
|
|
|
|
'adipiscing elit.'
|
|
|
|
}
|
|
|
|
name="phoneConsent"
|
|
|
|
required="isFalse"
|
|
|
|
validationErrors={{
|
|
|
|
isFalse: 'You must consent to lorem ipsum'
|
|
|
|
}} />
|
|
|
|
<Button type="submit">Next Step</Button>
|
|
|
|
</Form>
|
|
|
|
</FormStep>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}),
|
|
|
|
OrganizationStep: React.createClass({
|
|
|
|
getInitialState: function () {
|
|
|
|
return {
|
|
|
|
otherDisabled: true
|
|
|
|
};
|
|
|
|
},
|
|
|
|
onChooseOrganization: function (name, values) {
|
|
|
|
this.setState({otherDisabled: values.indexOf('Other') === -1});
|
|
|
|
},
|
|
|
|
render: function () {
|
|
|
|
var organizationOptions = [
|
|
|
|
'Elementary School', 'Middle School', 'High School', 'University / College',
|
|
|
|
'Museum', 'Library', 'Camp', 'Other'
|
|
|
|
].map(function (type) { return {value: type, label: type}; });
|
|
|
|
return (
|
|
|
|
<FormStep title="Organization"
|
|
|
|
description={
|
|
|
|
<p>
|
|
|
|
Your responses to these questions will be kept private.
|
|
|
|
Why do we ask for this information <a onClick={this.handle}>?</a>
|
|
|
|
</p>}>
|
|
|
|
<Form onValidSubmit={this.props.onNextStep}>
|
|
|
|
<Input label="Organization" type="text" name="organization.name" required />
|
|
|
|
<Input label="Title / Position" type="text" name="organization.title" required />
|
|
|
|
<CheckboxGroup label="Type of Organization"
|
|
|
|
name="organization.type"
|
|
|
|
value={[]}
|
|
|
|
options={organizationOptions}
|
|
|
|
onChange={this.onChooseOrganization}
|
|
|
|
required />
|
|
|
|
<Input type="text"
|
|
|
|
name="organization.other"
|
|
|
|
disabled={this.state.otherDisabled}
|
|
|
|
required={!this.state.otherDisabled} />
|
|
|
|
<Input label="Website URL (not required)" type="url" name="organization.url" />
|
|
|
|
<Button type="submit">Next Step</Button>
|
|
|
|
</Form>
|
|
|
|
</FormStep>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}),
|
|
|
|
AddressStep: React.createClass({
|
2016-06-03 11:27:59 -04:00
|
|
|
getDefaultProps: function () {
|
|
|
|
return {defaultCountry: DEFAULT_COUNTRY};
|
|
|
|
},
|
2016-06-03 12:00:00 -04:00
|
|
|
getInitialState: function () {
|
|
|
|
return {
|
|
|
|
countryChoice: (
|
|
|
|
(this.props.formData.user && this.props.formData.user.country) ||
|
|
|
|
this.props.defaultCountry
|
|
|
|
)
|
|
|
|
};
|
|
|
|
},
|
|
|
|
onChangeCountry: function (field, choice) {
|
|
|
|
this.setState({countryChoice: choice});
|
|
|
|
},
|
2016-06-02 16:21:14 -04:00
|
|
|
render: function () {
|
2016-06-03 12:00:00 -04:00
|
|
|
var stateOptions = countryData.subdivisionOptions[this.state.countryChoice];
|
|
|
|
var stateDefault = 'Please select...';
|
2016-06-02 16:21:14 -04:00
|
|
|
stateOptions = [{label: stateDefault}].concat(stateOptions);
|
|
|
|
return (
|
|
|
|
<FormStep title="Address"
|
|
|
|
description={
|
|
|
|
<p>
|
|
|
|
Your responses to these questions will be kept private.
|
|
|
|
Why do we ask for this information <a onClick={this.handle}>?</a>
|
|
|
|
</p>}>
|
|
|
|
<Form onValidSubmit={this.props.onNextStep}>
|
2016-06-03 00:01:46 -04:00
|
|
|
<Select label="Country"
|
|
|
|
name="address.country"
|
2016-06-03 12:00:00 -04:00
|
|
|
options={countryData.countryOptions}
|
|
|
|
onChange={this.onChangeCountry}
|
|
|
|
value={this.state.countryChoice}
|
2016-06-03 00:01:46 -04:00
|
|
|
required />
|
2016-06-02 16:21:14 -04:00
|
|
|
<Input label="Address Line 1" type="text" name="address.line1" required />
|
|
|
|
<Input label="Address Line 2" type="text" name="address.line2" />
|
|
|
|
<Input label="City" type="text" name="address.city" required />
|
|
|
|
<Input label="ZIP Code" type="text" name="address.zip" required />
|
2016-06-03 12:00:00 -04:00
|
|
|
{stateOptions.length > 2 ?
|
|
|
|
<Select label="State / Province" name="address.state" options={stateOptions} required /> :
|
|
|
|
[]
|
|
|
|
}
|
2016-06-02 16:21:14 -04:00
|
|
|
<Button type="submit">Next Step</Button>
|
|
|
|
</Form>
|
|
|
|
</FormStep>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}),
|
|
|
|
UseScratchStep: React.createClass({
|
|
|
|
render: function () {
|
|
|
|
return (
|
|
|
|
<FormStep title="How do you use Scratch?"
|
|
|
|
description={
|
|
|
|
<p>
|
|
|
|
Tell us a little how you plan to use Scratch.
|
|
|
|
Why do we ask for this information <a onClick={this.handle}>?</a>
|
|
|
|
</p>
|
|
|
|
}>
|
|
|
|
<Form onValidSubmit={this.props.onNextStep}>
|
|
|
|
<TextArea label="How do you use Scratch?" name="useScratch" required />
|
|
|
|
<Button type="submit">Next Step</Button>
|
|
|
|
</Form>
|
|
|
|
</FormStep>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}),
|
|
|
|
EmailStep: React.createClass({
|
|
|
|
render: function () {
|
|
|
|
return (
|
|
|
|
<FormStep title="Email Address"
|
|
|
|
description={
|
|
|
|
<p>
|
|
|
|
We will send you a <strong>confirmation email</strong> that will
|
|
|
|
allow you to access your Scratch Teacher Account.
|
|
|
|
</p>}>
|
|
|
|
<Form onValidSubmit={this.props.onNextStep}>
|
|
|
|
<Input label="Email"
|
|
|
|
type="text"
|
|
|
|
name="user.email"
|
|
|
|
validations="isEmail"
|
|
|
|
validationError="Please enter a valid email address"
|
|
|
|
required />
|
|
|
|
<Input label="Confirm Email"
|
|
|
|
type="text"
|
|
|
|
name="confirmEmail"
|
|
|
|
validations="equalsField:user.email"
|
|
|
|
validationErrors={{
|
|
|
|
equalsField: 'The emails do not match'
|
|
|
|
}}
|
|
|
|
required />
|
|
|
|
<Button type="submit">Next Step</Button>
|
|
|
|
</Form>
|
|
|
|
</FormStep>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}),
|
|
|
|
LastStep: React.createClass({
|
|
|
|
render: function () {
|
|
|
|
return (
|
|
|
|
<FormStep title="Almost Done"
|
|
|
|
description={
|
|
|
|
<p>
|
|
|
|
Lorem ipsum dolor sit amet
|
|
|
|
</p>}>
|
|
|
|
<div className="confirm">
|
|
|
|
<h2>Confirm Your Email</h2>
|
|
|
|
<p>
|
|
|
|
Click the link in the confirmation email that we
|
|
|
|
sent to the following address:<br />
|
|
|
|
<strong>{this.props.formData.user.email}</strong>
|
|
|
|
</p>
|
|
|
|
<div className="box-footer">
|
|
|
|
<a onClick="">Wrong email?</a>
|
|
|
|
<a onClick="">Having trouble?</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div className="wait">
|
|
|
|
<h2>Wait for Approval</h2>
|
|
|
|
<p>
|
|
|
|
Your information is being reviewed. Please be
|
|
|
|
patient, the approval process can take up to 24hrs.
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
</FormStep>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
})
|
|
|
|
};
|