/* Copyright 2015, 2016 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 Modal = require('../../../Modal'); var sdk = require('../../../index'); /** * A pure UI component which displays the HS and IS to use. */ module.exports = React.createClass({ displayName: 'ServerConfig', propTypes: { onHsUrlChanged: React.PropTypes.func, onIsUrlChanged: React.PropTypes.func, initialHsUrl: React.PropTypes.string, // whatever the current value is when we create the component initialIsUrl: React.PropTypes.string, // whatever the current value is when we create the component defaultHsUrl: React.PropTypes.string, // e.g. https://matrix.org defaultIsUrl: React.PropTypes.string, // e.g. https://vector.im withToggleButton: React.PropTypes.bool, delayTimeMs: React.PropTypes.number // time to wait before invoking onChanged }, getDefaultProps: function() { return { onHsUrlChanged: function() {}, onIsUrlChanged: function() {}, withToggleButton: false, delayTimeMs: 0 }; }, getInitialState: function() { return { hs_url: this.props.initialHsUrl, is_url: this.props.initialIsUrl, // if withToggleButton is false, then show the config all the time given we have no way otherwise of making it visible configVisible: !this.props.withToggleButton || (this.props.initialHsUrl !== this.props.defaultHsUrl) || (this.props.initialIsUrl !== this.props.defaultIsUrl) } }, onHomeserverChanged: function(ev) { this.setState({hs_url: ev.target.value}, function() { this._hsTimeoutId = this._waitThenInvoke(this._hsTimeoutId, function() { var hsUrl = this.state.hs_url.trim().replace(/\/$/, ""); if (hsUrl === "") hsUrl = this.props.defaultHsUrl; this.props.onHsUrlChanged(hsUrl); }); }); }, onIdentityServerChanged: function(ev) { this.setState({is_url: ev.target.value}, function() { this._isTimeoutId = this._waitThenInvoke(this._isTimeoutId, function() { var isUrl = this.state.is_url.trim().replace(/\/$/, ""); if (isUrl === "") isUrl = this.props.defaultIsUrl; this.props.onIsUrlChanged(isUrl); }); }); }, _waitThenInvoke: function(existingTimeoutId, fn) { if (existingTimeoutId) { clearTimeout(existingTimeoutId); } return setTimeout(fn.bind(this), this.props.delayTimeMs); }, onServerConfigVisibleChange: function(ev) { this.setState({ configVisible: ev.target.checked }); if (!ev.target.checked) { this.props.onHsUrlChanged(this.props.defaultHsUrl); this.props.onIsUrlChanged(this.props.defaultIsUrl); } else { this.props.onHsUrlChanged(this.state.hs_url); this.props.onIsUrlChanged(this.state.is_url); } }, showHelpPopup: function() { var CustomServerDialog = sdk.getComponent('login.CustomServerDialog'); Modal.createDialog(CustomServerDialog); }, render: function() { var serverConfigStyle = {}; serverConfigStyle.display = this.state.configVisible ? 'block' : 'none'; var toggleButton; if (this.props.withToggleButton) { toggleButton = (