// Copyright (c) 2015 Mattermost, Inc. All Rights Reserved. // See License.txt for license information. import React from 'react'; import * as Utils from 'utils/utils.jsx'; import AdminSettings from './admin_settings.jsx'; import {FormattedHTMLMessage, FormattedMessage} from 'react-intl'; import SettingsGroup from './settings_group.jsx'; import TextSetting from './text_setting.jsx'; export default class ExternalServiceSettings extends AdminSettings { constructor(props) { super(props); this.getConfigFromState = this.getConfigFromState.bind(this); this.renderSettings = this.renderSettings.bind(this); } getConfigFromState(config) { config.ServiceSettings.GoogleDeveloperKey = this.state.googleDeveloperKey; return config; } getStateFromConfig(config) { return { googleDeveloperKey: config.ServiceSettings.GoogleDeveloperKey }; } renderTitle() { return ( ); } renderSettings() { return ( } placeholder={Utils.localizeMessage('admin.service.googleExample', 'Ex "7rAh6iwQCkV4cA1Gsg3fgGOXJAQ43QV"')} helpText={ } value={this.state.googleDeveloperKey} onChange={this.handleChange} /> ); } }