From d8bd57901e33a7057e26e782e295099ffcc0da89 Mon Sep 17 00:00:00 2001 From: Christopher Speller Date: Wed, 6 Sep 2017 23:04:13 -0700 Subject: Removing webapp --- .../user_settings/email_notification_setting.jsx | 262 --------------------- 1 file changed, 262 deletions(-) delete mode 100644 webapp/components/user_settings/email_notification_setting.jsx (limited to 'webapp/components/user_settings/email_notification_setting.jsx') diff --git a/webapp/components/user_settings/email_notification_setting.jsx b/webapp/components/user_settings/email_notification_setting.jsx deleted file mode 100644 index bfba794ca..000000000 --- a/webapp/components/user_settings/email_notification_setting.jsx +++ /dev/null @@ -1,262 +0,0 @@ -// Copyright (c) 2016-present Mattermost, Inc. All Rights Reserved. -// See License.txt for license information. - -import React from 'react'; -import PropTypes from 'prop-types'; - -import {savePreference} from 'actions/user_actions.jsx'; -import {localizeMessage} from 'utils/utils.jsx'; - -import {FormattedMessage} from 'react-intl'; -import SettingItemMin from 'components/setting_item_min.jsx'; -import SettingItemMax from 'components/setting_item_max.jsx'; - -import {Preferences} from 'utils/constants.jsx'; - -export default class EmailNotificationSetting extends React.Component { - static propTypes = { - activeSection: PropTypes.string.isRequired, - updateSection: PropTypes.func.isRequired, - enableEmail: PropTypes.bool.isRequired, - emailInterval: PropTypes.number.isRequired, - onSubmit: PropTypes.func.isRequired, - onCancel: PropTypes.func.isRequired, - serverError: PropTypes.string - }; - - constructor(props) { - super(props); - - this.state = { - enableEmail: props.enableEmail, - emailInterval: props.emailInterval - }; - } - - componentWillReceiveProps(nextProps) { - if (nextProps.enableEmail !== this.props.enableEmail || nextProps.emailInterval !== this.props.emailInterval) { - this.setState({ - enableEmail: nextProps.enableEmail, - emailInterval: nextProps.emailInterval - }); - } - } - - handleChange = (enableEmail, emailInterval) => { - this.setState({ - enableEmail, - emailInterval - }); - } - - handleSubmit = () => { - // until the rest of the notification settings are moved to preferences, we have to do this separately - savePreference(Preferences.CATEGORY_NOTIFICATIONS, Preferences.EMAIL_INTERVAL, this.state.emailInterval.toString()); - - const {enableEmail} = this.state; - this.props.onSubmit({enableEmail}); - } - - handleExpand = () => { - this.props.updateSection('email'); - } - - handleCancel = (e) => { - this.setState({ - enableEmail: this.props.enableEmail, - emailInterval: this.props.emailInterval - }); - this.props.onCancel(e); - } - - render() { - if (global.window.mm_config.SendEmailNotifications !== 'true' && this.props.activeSection === 'email') { - const inputs = []; - - inputs.push( -
- -
- ); - - return ( - - ); - } - - if (this.props.activeSection !== 'email') { - let description; - - if (global.window.mm_config.SendEmailNotifications !== 'true') { - description = ( - - ); - } else if (this.props.enableEmail) { - switch (this.state.emailInterval) { - case Preferences.INTERVAL_IMMEDIATE: - description = ( - - ); - break; - case Preferences.INTERVAL_HOUR: - description = ( - - ); - break; - default: - description = ( - - ); - } - } else { - description = ( - - ); - } - - return ( - - ); - } - - let batchingOptions = null; - let batchingInfo = null; - if (global.window.mm_config.EnableEmailBatching === 'true') { - batchingOptions = ( -
-
- -
-
- -
-
- ); - - batchingInfo = ( - - ); - } - - return ( - - -
- -
- {batchingOptions} -
- -
-
-
- - {' '} - {batchingInfo} -
- - ]} - submit={this.handleSubmit} - server_error={this.props.serverError} - updateSection={this.handleCancel} - /> - ); - } -} -- cgit v1.2.3-1-g7c22