/* 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 MatrixClientPeg = require("../../../../src/MatrixClientPeg"); var ProgressBar = ComponentBroker.get("molecules/ProgressBar"); var Loader = require("react-loader"); var LoginController = require("../../../../src/controllers/templates/Login"); var ServerConfig = ComponentBroker.get("molecules/ServerConfig"); module.exports = React.createClass({ DEFAULT_HS_URL: 'https://matrix.org', DEFAULT_IS_URL: 'https://matrix.org', displayName: 'Login', mixins: [LoginController], getInitialState: function() { return { serverConfigVisible: false }; }, componentWillMount: function() { this.onHSChosen(); this.customHsUrl = this.DEFAULT_HS_URL; this.customIsUrl = this.DEFAULT_IS_URL; }, 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 }, this.onHsUrlChanged); }, /** * Gets the form field values for the current login stage */ getFormVals: function() { return { 'username': this.refs.user.getDOMNode().value, 'password': this.refs.pass.getDOMNode().value }; }, onHsUrlChanged: function() { this.customHsUrl = this.refs.serverConfig.getHsUrl(); this.customIsUrl = this.refs.serverConfig.getIsUrl(); MatrixClientPeg.replaceUsingUrls( this.getHsUrl(), this.getIsUrl() ); this.setState({ hs_url: this.getHsUrl(), is_url: this.getIsUrl() }); // XXX: HSes do not have to offer password auth, so we // need to update and maybe show a different component // when a new HS is entered. /*if (this.updateHsTimeout) { clearTimeout(this.updateHsTimeout); } var self = this; this.updateHsTimeout = setTimeout(function() { self.onHSChosen(); }, 500);*/ }, componentForStep: function(step) { switch (step) { case 'choose_hs': var serverConfigStyle = {}; serverConfigStyle.display = this.state.serverConfigVisible ? 'block' : 'none'; return (
); // XXX: clearly these should be separate organisms case 'stage_m.login.password': return (


{this.componentForStep('choose_hs')}
); } }, onUsernameChanged: function(ev) { this.setState({username: ev.target.value}); }, onPasswordChanged: function(ev) { this.setState({password: ev.target.value}); }, loginContent: function() { if (this.state.busy) { return ( ); } else { return (

Sign in

{this.componentForStep(this.state.step)}
{this.state.errorText}
Create a new account
); } }, render: function() { return (
vector
{this.loginContent()}
); } });