/* Copyright 2015 OpenMarket Ltd Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ 'use strict'; var React = require('react'); var ComponentBroker = require("../../../../src/ComponentBroker"); var Loader = require("react-loader"); var RegisterController = require("../../../../src/controllers/templates/Register"); var ServerConfig = ComponentBroker.get("molecules/ServerConfig"); module.exports = React.createClass({ DEFAULT_HS_URL: 'https://matrix.org', DEFAULT_IS_URL: 'https://matrix.org', displayName: 'Register', mixins: [RegisterController], getInitialState: function() { return { serverConfigVisible: false }; }, componentWillMount: function() { this.customHsUrl = this.DEFAULT_HS_URL; this.customIsUrl = this.DEFAULT_IS_URL; }, getRegFormVals: function() { return { email: this.refs.email.getDOMNode().value, username: this.refs.username.getDOMNode().value, password: this.refs.password.getDOMNode().value, confirmPassword: this.refs.confirmPassword.getDOMNode().value }; }, getHsUrl: function() { if (this.state.serverConfigVisible) { return this.customHsUrl; } else { return this.DEFAULT_HS_URL; } }, getIsUrl: function() { if (this.state.serverConfigVisible) { return this.customIsUrl; } else { return this.DEFAULT_IS_URL; } }, onServerConfigVisibleChange: function(ev) { this.setState({ serverConfigVisible: ev.target.checked }); }, getUserIdSuffix: function() { return ''; var actualHsUrl = document.createElement('a'); actualHsUrl.href = this.getHsUrl(); var defaultHsUrl = document.createElement('a'); defaultHsUrl.href = this.DEFAULT_HS_URL; if (actualHsUrl.host == defaultHsUrl.host) { return ':matrix.org'; } return ''; }, onServerUrlChanged: function(newUrl) { this.customHsUrl = this.refs.serverConfig.getHsUrl(); this.customIsUrl = this.refs.serverConfig.getIsUrl(); this.forceUpdate(); }, componentForStep: function(step) { switch (step) { case 'initial': var serverConfigStyle = {}; serverConfigStyle.display = this.state.serverConfigVisible ? 'block' : 'none'; return (

{this.getUserIdSuffix()}



); // XXX: clearly these should be separate organisms case 'stage_m.login.email.identity': return (
Please check your email to continue registration.
); case 'stage_m.login.recaptcha': return (
This Home Server would like to make sure you are not a robot
); } }, registerContent: function() { if (this.state.busy) { return ( ); } else { return (

Create an account

{this.componentForStep(this.state.step)}
{this.state.errorText}
I already have an account
); } }, onBadFields: function(bad) { var keys = Object.keys(bad); var strings = []; for (var i = 0; i < keys.length; ++i) { switch (bad[keys[i]]) { case this.FieldErrors.PasswordMismatch: strings.push("Passwords don't match"); break; case this.FieldErrors.Missing: strings.push("Missing "+keys[i]); break; case this.FieldErrors.TooShort: strings.push(keys[i]+" is too short"); break; case this.FieldErrors.InUse: strings.push(keys[i]+" is already taken"); break; } } var errtxt = strings.join(', '); this.setState({ errorText: errtxt }); }, render: function() { return (
vector
{this.registerContent()}
); } });