2017-05-02 20:04:16 -04:00
|
|
|
import React from 'react';
|
2017-04-21 14:05:35 -04:00
|
|
|
import PropTypes from 'prop-types';
|
2017-01-02 08:09:57 -05:00
|
|
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
2017-06-12 06:26:23 -04:00
|
|
|
import { FormattedMessage } from 'react-intl';
|
|
|
|
import ClearColumnButton from './clear_column_button';
|
2017-01-10 11:25:10 -05:00
|
|
|
import SettingToggle from './setting_toggle';
|
2017-01-02 08:09:57 -05:00
|
|
|
|
2017-06-23 13:36:54 -04:00
|
|
|
export default class ColumnSettings extends React.PureComponent {
|
2017-01-02 08:09:57 -05:00
|
|
|
|
2017-05-12 08:44:10 -04:00
|
|
|
static propTypes = {
|
|
|
|
settings: ImmutablePropTypes.map.isRequired,
|
2017-07-13 16:15:32 -04:00
|
|
|
pushSettings: ImmutablePropTypes.map.isRequired,
|
2017-05-12 08:44:10 -04:00
|
|
|
onChange: PropTypes.func.isRequired,
|
|
|
|
onSave: PropTypes.func.isRequired,
|
2017-06-12 06:26:23 -04:00
|
|
|
onClear: PropTypes.func.isRequired,
|
2017-05-12 08:44:10 -04:00
|
|
|
};
|
|
|
|
|
2017-07-13 16:15:32 -04:00
|
|
|
onPushChange = (key, checked) => {
|
|
|
|
this.props.onChange(['push', ...key], checked);
|
|
|
|
}
|
|
|
|
|
2017-01-02 08:09:57 -05:00
|
|
|
render () {
|
2017-07-13 16:15:32 -04:00
|
|
|
const { settings, pushSettings, onChange, onClear } = this.props;
|
2017-01-02 08:09:57 -05:00
|
|
|
|
|
|
|
const alertStr = <FormattedMessage id='notifications.column_settings.alert' defaultMessage='Desktop notifications' />;
|
|
|
|
const showStr = <FormattedMessage id='notifications.column_settings.show' defaultMessage='Show in column' />;
|
2017-01-17 14:09:03 -05:00
|
|
|
const soundStr = <FormattedMessage id='notifications.column_settings.sound' defaultMessage='Play sound' />;
|
2017-01-02 08:09:57 -05:00
|
|
|
|
2017-07-13 16:15:32 -04:00
|
|
|
const showPushSettings = pushSettings.get('browserSupport') && pushSettings.get('isSubscribed');
|
|
|
|
const pushStr = showPushSettings && <FormattedMessage id='notifications.column_settings.push' defaultMessage='Push notifications' />;
|
|
|
|
const pushMeta = showPushSettings && <FormattedMessage id='notifications.column_settings.push_meta' defaultMessage='This device' />;
|
|
|
|
|
2017-01-02 08:09:57 -05:00
|
|
|
return (
|
2017-06-03 19:39:38 -04:00
|
|
|
<div>
|
2017-06-12 06:26:23 -04:00
|
|
|
<div className='column-settings__row'>
|
|
|
|
<ClearColumnButton onClick={onClear} />
|
|
|
|
</div>
|
|
|
|
|
2017-06-03 19:39:38 -04:00
|
|
|
<span className='column-settings__section'><FormattedMessage id='notifications.column_settings.follow' defaultMessage='New followers:' /></span>
|
2017-01-10 11:25:10 -05:00
|
|
|
|
2017-06-03 19:39:38 -04:00
|
|
|
<div className='column-settings__row'>
|
2017-07-13 16:15:32 -04:00
|
|
|
<SettingToggle prefix='notifications_desktop' settings={settings} settingKey={['alerts', 'follow']} onChange={onChange} label={alertStr} />
|
|
|
|
{showPushSettings && <SettingToggle prefix='notifications_push' settings={pushSettings} settingKey={['alerts', 'follow']} meta={pushMeta} onChange={this.onPushChange} label={pushStr} />}
|
2017-06-23 07:55:05 -04:00
|
|
|
<SettingToggle prefix='notifications' settings={settings} settingKey={['shows', 'follow']} onChange={onChange} label={showStr} />
|
|
|
|
<SettingToggle prefix='notifications' settings={settings} settingKey={['sounds', 'follow']} onChange={onChange} label={soundStr} />
|
2017-06-03 19:39:38 -04:00
|
|
|
</div>
|
2017-01-10 11:25:10 -05:00
|
|
|
|
2017-06-03 19:39:38 -04:00
|
|
|
<span className='column-settings__section'><FormattedMessage id='notifications.column_settings.favourite' defaultMessage='Favourites:' /></span>
|
2017-01-10 11:25:10 -05:00
|
|
|
|
2017-06-03 19:39:38 -04:00
|
|
|
<div className='column-settings__row'>
|
2017-07-13 16:15:32 -04:00
|
|
|
<SettingToggle prefix='notifications_desktop' settings={settings} settingKey={['alerts', 'favourite']} onChange={onChange} label={alertStr} />
|
|
|
|
{showPushSettings && <SettingToggle prefix='notifications_push' settings={pushSettings} settingKey={['alerts', 'favourite']} meta={pushMeta} onChange={this.onPushChange} label={pushStr} />}
|
2017-06-23 07:55:05 -04:00
|
|
|
<SettingToggle prefix='notifications' settings={settings} settingKey={['shows', 'favourite']} onChange={onChange} label={showStr} />
|
|
|
|
<SettingToggle prefix='notifications' settings={settings} settingKey={['sounds', 'favourite']} onChange={onChange} label={soundStr} />
|
2017-06-03 19:39:38 -04:00
|
|
|
</div>
|
2017-01-10 11:25:10 -05:00
|
|
|
|
2017-06-03 19:39:38 -04:00
|
|
|
<span className='column-settings__section'><FormattedMessage id='notifications.column_settings.mention' defaultMessage='Mentions:' /></span>
|
2017-01-10 11:25:10 -05:00
|
|
|
|
2017-06-03 19:39:38 -04:00
|
|
|
<div className='column-settings__row'>
|
2017-07-13 16:15:32 -04:00
|
|
|
<SettingToggle prefix='notifications_desktop' settings={settings} settingKey={['alerts', 'mention']} onChange={onChange} label={alertStr} />
|
|
|
|
{showPushSettings && <SettingToggle prefix='notifications_push' settings={pushSettings} settingKey={['alerts', 'mention']} meta={pushMeta} onChange={this.onPushChange} label={pushStr} />}
|
2017-06-23 07:55:05 -04:00
|
|
|
<SettingToggle prefix='notifications' settings={settings} settingKey={['shows', 'mention']} onChange={onChange} label={showStr} />
|
|
|
|
<SettingToggle prefix='notifications' settings={settings} settingKey={['sounds', 'mention']} onChange={onChange} label={soundStr} />
|
2017-06-03 19:39:38 -04:00
|
|
|
</div>
|
2017-01-10 11:25:10 -05:00
|
|
|
|
2017-06-03 19:39:38 -04:00
|
|
|
<span className='column-settings__section'><FormattedMessage id='notifications.column_settings.reblog' defaultMessage='Boosts:' /></span>
|
2017-01-10 11:25:10 -05:00
|
|
|
|
2017-06-03 19:39:38 -04:00
|
|
|
<div className='column-settings__row'>
|
2017-07-13 16:15:32 -04:00
|
|
|
<SettingToggle prefix='notifications_desktop' settings={settings} settingKey={['alerts', 'reblog']} onChange={onChange} label={alertStr} />
|
|
|
|
{showPushSettings && <SettingToggle prefix='notifications_push' settings={pushSettings} settingKey={['alerts', 'reblog']} meta={pushMeta} onChange={this.onPushChange} label={pushStr} />}
|
2017-06-23 07:55:05 -04:00
|
|
|
<SettingToggle prefix='notifications' settings={settings} settingKey={['shows', 'reblog']} onChange={onChange} label={showStr} />
|
|
|
|
<SettingToggle prefix='notifications' settings={settings} settingKey={['sounds', 'reblog']} onChange={onChange} label={soundStr} />
|
2017-01-10 11:25:10 -05:00
|
|
|
</div>
|
2017-06-03 19:39:38 -04:00
|
|
|
</div>
|
2017-01-02 08:09:57 -05:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-04-21 14:05:35 -04:00
|
|
|
}
|