/* 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'; const React = require('react'); import PropTypes from 'prop-types'; const Modal = require('../../../Modal'); const sdk = require('../../../index'); import { _t } from '../../../languageHandler'; /** * A pure UI component which displays the HS and IS to use. */ module.exports = React.createClass({ displayName: 'ServerConfig', propTypes: { onServerConfigChange: PropTypes.func, // default URLs are defined in config.json (or the hardcoded defaults) // they are used if the user has not overridden them with a custom URL. // In other words, if the custom URL is blank, the default is used. defaultHsUrl: PropTypes.string, // e.g. https://matrix.org defaultIsUrl: PropTypes.string, // e.g. https://vector.im // custom URLs are explicitly provided by the user and override the // default URLs. The user enters them via the component's input fields, // which is reflected on these properties whenever on..UrlChanged fires. // They are persisted in localStorage by MatrixClientPeg, and so can // override the default URLs when the component initially loads. customHsUrl: PropTypes.string, customIsUrl: PropTypes.string, withToggleButton: PropTypes.bool, delayTimeMs: PropTypes.number, // time to wait before invoking onChanged }, getDefaultProps: function() { return { onServerConfigChange: function() {}, customHsUrl: "", customIsUrl: "", withToggleButton: false, delayTimeMs: 0, }; }, getInitialState: function() { return { hs_url: this.props.customHsUrl, is_url: this.props.customIsUrl, // 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.customHsUrl !== this.props.defaultHsUrl) || (this.props.customIsUrl !== this.props.defaultIsUrl), }; }, componentWillReceiveProps: function(newProps) { if (newProps.customHsUrl === this.state.hs_url && newProps.customIsUrl === this.state.is_url) return; this.setState({ hs_url: newProps.customHsUrl, is_url: newProps.customIsUrl, configVisible: !newProps.withToggleButton || (newProps.customHsUrl !== newProps.defaultHsUrl) || (newProps.customIsUrl !== newProps.defaultIsUrl), }); this.props.onServerConfigChange({ hsUrl: newProps.customHsUrl, isUrl: newProps.customIsUrl, }); }, onHomeserverChanged: function(ev) { this.setState({hs_url: ev.target.value}, () => { this._hsTimeoutId = this._waitThenInvoke(this._hsTimeoutId, () => { let hsUrl = this.state.hs_url.trim().replace(/\/$/, ""); if (hsUrl === "") hsUrl = this.props.defaultHsUrl; this.props.onServerConfigChange({ hsUrl: this.state.hs_url, isUrl: this.state.is_url, }); }); }); }, onIdentityServerChanged: function(ev) { this.setState({is_url: ev.target.value}, () => { this._isTimeoutId = this._waitThenInvoke(this._isTimeoutId, () => { let isUrl = this.state.is_url.trim().replace(/\/$/, ""); if (isUrl === "") isUrl = this.props.defaultIsUrl; this.props.onServerConfigChange({ hsUrl: this.state.hs_url, isUrl: this.state.is_url, }); }); }); }, _waitThenInvoke: function(existingTimeoutId, fn) { if (existingTimeoutId) { clearTimeout(existingTimeoutId); } return setTimeout(fn.bind(this), this.props.delayTimeMs); }, onServerConfigVisibleChange: function(visible, ev) { this.setState({ configVisible: visible, }); if (!visible) { this.props.onServerConfigChange({ hsUrl: this.props.defaultHsUrl, isUrl: this.props.defaultIsUrl, }); } else { this.props.onServerConfigChange({ hsUrl: this.state.hs_url, isUrl: this.state.is_url, }); } }, showHelpPopup: function() { const CustomServerDialog = sdk.getComponent('auth.CustomServerDialog'); Modal.createTrackedDialog('Custom Server Dialog', '', CustomServerDialog); }, render: function() { const serverConfigStyle = {}; serverConfigStyle.display = this.state.configVisible ? 'block' : 'none'; let toggleButton; if (this.props.withToggleButton) { toggleButton = (