From d8bd57901e33a7057e26e782e295099ffcc0da89 Mon Sep 17 00:00:00 2001 From: Christopher Speller Date: Wed, 6 Sep 2017 23:04:13 -0700 Subject: Removing webapp --- .../admin_console/configuration_settings.jsx | 356 --------------------- 1 file changed, 356 deletions(-) delete mode 100644 webapp/components/admin_console/configuration_settings.jsx (limited to 'webapp/components/admin_console/configuration_settings.jsx') diff --git a/webapp/components/admin_console/configuration_settings.jsx b/webapp/components/admin_console/configuration_settings.jsx deleted file mode 100644 index 6ac68a3bb..000000000 --- a/webapp/components/admin_console/configuration_settings.jsx +++ /dev/null @@ -1,356 +0,0 @@ -// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved. -// See License.txt for license information. - -import React from 'react'; -import {FormattedMessage, FormattedHTMLMessage} from 'react-intl'; - -import ErrorStore from 'stores/error_store.jsx'; - -import {ErrorBarTypes} from 'utils/constants.jsx'; -import * as Utils from 'utils/utils.jsx'; - -import {invalidateAllCaches, reloadConfig} from 'actions/admin_actions.jsx'; -import AdminSettings from './admin_settings.jsx'; -import BooleanSetting from './boolean_setting.jsx'; -import {ConnectionSecurityDropdownSettingWebserver} from './connection_security_dropdown_setting.jsx'; -import SettingsGroup from './settings_group.jsx'; -import RequestButton from './request_button/request_button'; -import TextSetting from './text_setting.jsx'; -import WebserverModeDropdownSetting from './webserver_mode_dropdown_setting.jsx'; - -export default class ConfigurationSettings extends AdminSettings { - constructor(props) { - super(props); - - this.getConfigFromState = this.getConfigFromState.bind(this); - - this.handleSaved = this.handleSaved.bind(this); - - this.renderSettings = this.renderSettings.bind(this); - } - - componentWillReceiveProps(nextProps) { - // special case for this page since we don't update AdminSettings components when the - // stored config changes, but we want this page to update when you reload the config - this.setState(this.getStateFromConfig(nextProps.config)); - } - - getConfigFromState(config) { - config.ServiceSettings.SiteURL = this.state.siteURL; - config.ServiceSettings.ListenAddress = this.state.listenAddress; - config.ServiceSettings.WebserverMode = this.state.webserverMode; - config.ServiceSettings.ConnectionSecurity = this.state.connectionSecurity; - config.ServiceSettings.TLSCertFile = this.state.TLSCertFile; - config.ServiceSettings.TLSKeyFile = this.state.TLSKeyFile; - config.ServiceSettings.UseLetsEncrypt = this.state.useLetsEncrypt; - config.ServiceSettings.LetsEncryptCertificateCacheFile = this.state.letsEncryptCertificateCacheFile; - config.ServiceSettings.Forward80To443 = this.state.forward80To443; - config.ServiceSettings.ReadTimeout = this.parseIntNonZero(this.state.readTimeout); - config.ServiceSettings.WriteTimeout = this.parseIntNonZero(this.state.writeTimeout); - config.ServiceSettings.EnableAPIv3 = this.state.enableAPIv3; - - return config; - } - - getStateFromConfig(config) { - return { - siteURL: config.ServiceSettings.SiteURL, - listenAddress: config.ServiceSettings.ListenAddress, - webserverMode: config.ServiceSettings.WebserverMode, - connectionSecurity: config.ServiceSettings.ConnectionSecurity, - TLSCertFile: config.ServiceSettings.TLSCertFile, - TLSKeyFile: config.ServiceSettings.TLSKeyFile, - useLetsEncrypt: config.ServiceSettings.UseLetsEncrypt, - letsEncryptCertificateCacheFile: config.ServiceSettings.LetsEncryptCertificateCacheFile, - forward80To443: config.ServiceSettings.Forward80To443, - readTimeout: config.ServiceSettings.ReadTimeout, - writeTimeout: config.ServiceSettings.WriteTimeout, - enableAPIv3: config.ServiceSettings.EnableAPIv3 - }; - } - - handleSaved(newConfig) { - if (newConfig.ServiceSettings.SiteURL) { - ErrorStore.clearError(ErrorBarTypes.SITE_URL); - } - } - - renderTitle() { - return ( - - ); - } - - renderSettings() { - const reloadConfigurationHelpText = ( - - - - ), - recycleDatabaseConnections: ( - - - - - - ) - }} - /> - ); - - let reloadConfigButton =
; - if (global.window.mm_license.IsLicensed === 'true') { - reloadConfigButton = ( - - } - showSuccessMessage={false} - errorMessage={{ - id: 'admin.reload.reloadFail', - defaultMessage: 'Reload unsuccessful: {error}' - }} - /> - ); - } - - return ( - -
-
- -
-
- - } - placeholder={Utils.localizeMessage('admin.service.siteURLExample', 'Ex "https://mattermost.example.com:1234"')} - helpText={ - - } - value={this.state.siteURL} - onChange={this.handleChange} - /> - - } - placeholder={Utils.localizeMessage('admin.service.listenExample', 'Ex ":8065"')} - helpText={ - - } - value={this.state.listenAddress} - onChange={this.handleChange} - /> - - - } - helpText={ - - } - disabled={this.state.useLetsEncrypt} - value={this.state.TLSCertFile} - onChange={this.handleChange} - /> - - } - helpText={ - - } - disabled={this.state.useLetsEncrypt} - value={this.state.TLSKeyFile} - onChange={this.handleChange} - /> - - } - helpText={ - - } - value={this.state.useLetsEncrypt} - onChange={this.handleChange} - /> - - } - helpText={ - - } - disabled={!this.state.useLetsEncrypt} - value={this.state.letsEncryptCertificateCacheFile} - onChange={this.handleChange} - /> - - } - helpText={ - - } - value={this.state.forward80To443} - onChange={this.handleChange} - /> - - } - helpText={ - - } - value={this.state.readTimeout} - onChange={this.handleChange} - /> - - } - helpText={ - - } - value={this.state.writeTimeout} - onChange={this.handleChange} - /> - - } - helpText={ - - } - value={this.state.enableAPIv3} - onChange={this.handleChange} - /> - - {reloadConfigButton} - - } - buttonText={ - - } - showSuccessMessage={false} - includeDetailedError={true} - errorMessage={{ - id: 'admin.purge.purgeFail', - defaultMessage: 'Purging unsuccessful: {error}' - }} - /> -
- ); - } -} -- cgit v1.2.3-1-g7c22