2017-05-03 00:04:16 +00:00
import React from 'react' ;
2017-04-21 18:05:35 +00:00
import PropTypes from 'prop-types' ;
2017-01-02 13:09:57 +00:00
import ImmutablePropTypes from 'react-immutable-proptypes' ;
2017-06-12 10:26:23 +00:00
import { FormattedMessage } from 'react-intl' ;
import ClearColumnButton from './clear_column_button' ;
2020-12-15 17:43:54 +00:00
import GrantPermissionButton from './grant_permission_button' ;
2017-01-10 16:25:10 +00:00
import SettingToggle from './setting_toggle' ;
2022-07-05 00:41:40 +00:00
import { PERMISSION _MANAGE _USERS , PERMISSION _MANAGE _REPORTS } from 'mastodon/permissions' ;
2017-01-02 13:09:57 +00:00
2017-06-23 17:36:54 +00:00
export default class ColumnSettings extends React . PureComponent {
2017-01-02 13:09:57 +00:00
2022-07-05 00:41:40 +00:00
static contextTypes = {
identity : PropTypes . object ,
} ;
2017-05-12 12:44:10 +00:00
static propTypes = {
settings : ImmutablePropTypes . map . isRequired ,
2017-07-13 20:15:32 +00:00
pushSettings : ImmutablePropTypes . map . isRequired ,
2017-05-12 12:44:10 +00:00
onChange : PropTypes . func . isRequired ,
2017-06-12 10:26:23 +00:00
onClear : PropTypes . func . isRequired ,
2020-10-15 14:24:47 +00:00
onRequestNotificationPermission : PropTypes . func ,
2020-10-12 22:37:21 +00:00
alertsEnabled : PropTypes . bool ,
browserSupport : PropTypes . bool ,
browserPermission : PropTypes . bool ,
2017-05-12 12:44:10 +00:00
} ;
2018-01-02 12:50:54 +00:00
onPushChange = ( path , checked ) => {
this . props . onChange ( [ 'push' , ... path ] , checked ) ;
2017-07-13 20:15:32 +00:00
}
2017-01-02 13:09:57 +00:00
render ( ) {
2020-12-15 17:43:54 +00:00
const { settings , pushSettings , onChange , onClear , alertsEnabled , browserSupport , browserPermission , onRequestNotificationPermission } = this . props ;
2017-01-02 13:09:57 +00:00
2021-10-25 14:32:28 +00:00
const unreadMarkersShowStr = < FormattedMessage id = 'notifications.column_settings.unread_notifications.highlight' defaultMessage = 'Highlight unread notifications' / > ;
const filterBarShowStr = < FormattedMessage id = 'notifications.column_settings.filter_bar.show_bar' defaultMessage = 'Show filter bar' / > ;
2018-12-16 04:56:41 +00:00
const filterAdvancedStr = < FormattedMessage id = 'notifications.column_settings.filter_bar.advanced' defaultMessage = 'Display all categories' / > ;
2021-10-25 14:32:28 +00:00
const alertStr = < FormattedMessage id = 'notifications.column_settings.alert' defaultMessage = 'Desktop notifications' / > ;
const showStr = < FormattedMessage id = 'notifications.column_settings.show' defaultMessage = 'Show in column' / > ;
const soundStr = < FormattedMessage id = 'notifications.column_settings.sound' defaultMessage = 'Play sound' / > ;
2017-01-02 13:09:57 +00:00
2017-07-13 20:15:32 +00:00
const showPushSettings = pushSettings . get ( 'browserSupport' ) && pushSettings . get ( 'isSubscribed' ) ;
const pushStr = showPushSettings && < FormattedMessage id = 'notifications.column_settings.push' defaultMessage = 'Push notifications' / > ;
2017-01-02 13:09:57 +00:00
return (
2017-06-03 23:39:38 +00:00
< div >
2020-10-15 14:24:47 +00:00
{ alertsEnabled && browserSupport && browserPermission === 'denied' && (
< div className = 'column-settings__row column-settings__row--with-margin' >
< span className = 'warning-hint' > < FormattedMessage id = 'notifications.permission_denied' defaultMessage = 'Desktop notifications are unavailable due to previously denied browser permissions request' / > < / s p a n >
2020-10-12 22:37:21 +00:00
< / d i v >
) }
2020-12-15 17:43:54 +00:00
{ alertsEnabled && browserSupport && browserPermission === 'default' && (
< div className = 'column-settings__row column-settings__row--with-margin' >
< span className = 'warning-hint' >
< FormattedMessage id = 'notifications.permission_required' defaultMessage = 'Desktop notifications are unavailable because the required permission has not been granted.' / > < GrantPermissionButton onClick = { onRequestNotificationPermission } / >
< / s p a n >
< / d i v >
) }
2017-06-12 10:26:23 +00:00
< div className = 'column-settings__row' >
< ClearColumnButton onClick = { onClear } / >
< / d i v >
2021-03-19 01:44:57 +00:00
< div role = 'group' aria - labelledby = 'notifications-unread-markers' >
< span id = 'notifications-unread-markers' className = 'column-settings__section' >
2021-10-25 14:32:28 +00:00
< FormattedMessage id = 'notifications.column_settings.unread_notifications.category' defaultMessage = 'Unread notifications' / >
2021-03-19 01:44:57 +00:00
< / s p a n >
< div className = 'column-settings__row' >
2021-10-25 14:32:28 +00:00
< SettingToggle id = 'unread-notification-markers' prefix = 'notifications' settings = { settings } settingPath = { [ 'showUnread' ] } onChange = { onChange } label = { unreadMarkersShowStr } / >
2021-03-19 01:44:57 +00:00
< / d i v >
< / d i v >
2018-12-16 04:56:41 +00:00
< div role = 'group' aria - labelledby = 'notifications-filter-bar' >
< span id = 'notifications-filter-bar' className = 'column-settings__section' >
< FormattedMessage id = 'notifications.column_settings.filter_bar.category' defaultMessage = 'Quick filter bar' / >
< / s p a n >
2020-10-15 14:24:47 +00:00
2018-12-16 04:56:41 +00:00
< div className = 'column-settings__row' >
2021-10-25 14:32:28 +00:00
< SettingToggle id = 'show-filter-bar' prefix = 'notifications' settings = { settings } settingPath = { [ 'quickFilter' , 'show' ] } onChange = { onChange } label = { filterBarShowStr } / >
2018-12-16 04:56:41 +00:00
< SettingToggle id = 'show-filter-bar' prefix = 'notifications' settings = { settings } settingPath = { [ 'quickFilter' , 'advanced' ] } onChange = { onChange } label = { filterAdvancedStr } / >
< / d i v >
< / d i v >
2017-07-26 11:46:53 +00:00
< div role = 'group' aria - labelledby = 'notifications-follow' >
< span id = 'notifications-follow' className = 'column-settings__section' > < FormattedMessage id = 'notifications.column_settings.follow' defaultMessage = 'New followers:' / > < / s p a n >
< div className = 'column-settings__row' >
2020-12-15 17:43:54 +00:00
< SettingToggle disabled = { browserPermission === 'denied' } prefix = 'notifications_desktop' settings = { settings } settingPath = { [ 'alerts' , 'follow' ] } onChange = { onChange } label = { alertStr } / >
2018-09-25 13:59:19 +00:00
{ showPushSettings && < SettingToggle prefix = 'notifications_push' settings = { pushSettings } settingPath = { [ 'alerts' , 'follow' ] } onChange = { this . onPushChange } label = { pushStr } / > }
2017-12-20 07:19:59 +00:00
< SettingToggle prefix = 'notifications' settings = { settings } settingPath = { [ 'shows' , 'follow' ] } onChange = { onChange } label = { showStr } / >
< SettingToggle prefix = 'notifications' settings = { settings } settingPath = { [ 'sounds' , 'follow' ] } onChange = { onChange } label = { soundStr } / >
2017-07-26 11:46:53 +00:00
< / d i v >
2017-06-03 23:39:38 +00:00
< / d i v >
2017-01-10 16:25:10 +00:00
2019-12-01 16:25:29 +00:00
< div role = 'group' aria - labelledby = 'notifications-follow-request' >
< span id = 'notifications-follow-request' className = 'column-settings__section' > < FormattedMessage id = 'notifications.column_settings.follow_request' defaultMessage = 'New follow requests:' / > < / s p a n >
< div className = 'column-settings__row' >
2020-12-15 17:43:54 +00:00
< SettingToggle disabled = { browserPermission === 'denied' } prefix = 'notifications_desktop' settings = { settings } settingPath = { [ 'alerts' , 'follow_request' ] } onChange = { onChange } label = { alertStr } / >
2019-12-01 16:25:29 +00:00
{ showPushSettings && < SettingToggle prefix = 'notifications_push' settings = { pushSettings } settingPath = { [ 'alerts' , 'follow_request' ] } onChange = { this . onPushChange } label = { pushStr } / > }
< SettingToggle prefix = 'notifications' settings = { settings } settingPath = { [ 'shows' , 'follow_request' ] } onChange = { onChange } label = { showStr } / >
< SettingToggle prefix = 'notifications' settings = { settings } settingPath = { [ 'sounds' , 'follow_request' ] } onChange = { onChange } label = { soundStr } / >
< / d i v >
< / d i v >
2017-07-26 11:46:53 +00:00
< div role = 'group' aria - labelledby = 'notifications-favourite' >
< span id = 'notifications-favourite' className = 'column-settings__section' > < FormattedMessage id = 'notifications.column_settings.favourite' defaultMessage = 'Favourites:' / > < / s p a n >
2017-01-10 16:25:10 +00:00
2017-07-26 11:46:53 +00:00
< div className = 'column-settings__row' >
2020-12-15 17:43:54 +00:00
< SettingToggle disabled = { browserPermission === 'denied' } prefix = 'notifications_desktop' settings = { settings } settingPath = { [ 'alerts' , 'favourite' ] } onChange = { onChange } label = { alertStr } / >
2018-09-25 13:59:19 +00:00
{ showPushSettings && < SettingToggle prefix = 'notifications_push' settings = { pushSettings } settingPath = { [ 'alerts' , 'favourite' ] } onChange = { this . onPushChange } label = { pushStr } / > }
2017-12-20 07:19:59 +00:00
< SettingToggle prefix = 'notifications' settings = { settings } settingPath = { [ 'shows' , 'favourite' ] } onChange = { onChange } label = { showStr } / >
< SettingToggle prefix = 'notifications' settings = { settings } settingPath = { [ 'sounds' , 'favourite' ] } onChange = { onChange } label = { soundStr } / >
2017-07-26 11:46:53 +00:00
< / d i v >
2017-06-03 23:39:38 +00:00
< / d i v >
2017-01-10 16:25:10 +00:00
2017-07-26 11:46:53 +00:00
< div role = 'group' aria - labelledby = 'notifications-mention' >
< span id = 'notifications-mention' className = 'column-settings__section' > < FormattedMessage id = 'notifications.column_settings.mention' defaultMessage = 'Mentions:' / > < / s p a n >
2017-01-10 16:25:10 +00:00
2017-07-26 11:46:53 +00:00
< div className = 'column-settings__row' >
2020-12-15 17:43:54 +00:00
< SettingToggle disabled = { browserPermission === 'denied' } prefix = 'notifications_desktop' settings = { settings } settingPath = { [ 'alerts' , 'mention' ] } onChange = { onChange } label = { alertStr } / >
2018-09-25 13:59:19 +00:00
{ showPushSettings && < SettingToggle prefix = 'notifications_push' settings = { pushSettings } settingPath = { [ 'alerts' , 'mention' ] } onChange = { this . onPushChange } label = { pushStr } / > }
2017-12-20 07:19:59 +00:00
< SettingToggle prefix = 'notifications' settings = { settings } settingPath = { [ 'shows' , 'mention' ] } onChange = { onChange } label = { showStr } / >
< SettingToggle prefix = 'notifications' settings = { settings } settingPath = { [ 'sounds' , 'mention' ] } onChange = { onChange } label = { soundStr } / >
2017-07-26 11:46:53 +00:00
< / d i v >
2017-06-03 23:39:38 +00:00
< / d i v >
2017-01-10 16:25:10 +00:00
2017-07-26 11:46:53 +00:00
< div role = 'group' aria - labelledby = 'notifications-reblog' >
< span id = 'notifications-reblog' className = 'column-settings__section' > < FormattedMessage id = 'notifications.column_settings.reblog' defaultMessage = 'Boosts:' / > < / s p a n >
2017-01-10 16:25:10 +00:00
2017-07-26 11:46:53 +00:00
< div className = 'column-settings__row' >
2020-12-15 17:43:54 +00:00
< SettingToggle disabled = { browserPermission === 'denied' } prefix = 'notifications_desktop' settings = { settings } settingPath = { [ 'alerts' , 'reblog' ] } onChange = { onChange } label = { alertStr } / >
2018-09-25 13:59:19 +00:00
{ showPushSettings && < SettingToggle prefix = 'notifications_push' settings = { pushSettings } settingPath = { [ 'alerts' , 'reblog' ] } onChange = { this . onPushChange } label = { pushStr } / > }
2017-12-20 07:19:59 +00:00
< SettingToggle prefix = 'notifications' settings = { settings } settingPath = { [ 'shows' , 'reblog' ] } onChange = { onChange } label = { showStr } / >
< SettingToggle prefix = 'notifications' settings = { settings } settingPath = { [ 'sounds' , 'reblog' ] } onChange = { onChange } label = { soundStr } / >
2017-07-26 11:46:53 +00:00
< / d i v >
2017-01-10 16:25:10 +00:00
< / d i v >
2019-03-13 18:29:54 +00:00
< div role = 'group' aria - labelledby = 'notifications-poll' >
< span id = 'notifications-poll' className = 'column-settings__section' > < FormattedMessage id = 'notifications.column_settings.poll' defaultMessage = 'Poll results:' / > < / s p a n >
< div className = 'column-settings__row' >
2020-12-15 17:43:54 +00:00
< SettingToggle disabled = { browserPermission === 'denied' } prefix = 'notifications_desktop' settings = { settings } settingPath = { [ 'alerts' , 'poll' ] } onChange = { onChange } label = { alertStr } / >
2019-03-13 18:29:54 +00:00
{ showPushSettings && < SettingToggle prefix = 'notifications_push' settings = { pushSettings } settingPath = { [ 'alerts' , 'poll' ] } onChange = { this . onPushChange } label = { pushStr } / > }
< SettingToggle prefix = 'notifications' settings = { settings } settingPath = { [ 'shows' , 'poll' ] } onChange = { onChange } label = { showStr } / >
< SettingToggle prefix = 'notifications' settings = { settings } settingPath = { [ 'sounds' , 'poll' ] } onChange = { onChange } label = { soundStr } / >
< / d i v >
< / d i v >
2020-10-15 14:24:47 +00:00
< div role = 'group' aria - labelledby = 'notifications-status' >
2022-04-28 22:24:31 +00:00
< span id = 'notifications-status' className = 'column-settings__section' > < FormattedMessage id = 'notifications.column_settings.status' defaultMessage = 'New posts:' / > < / s p a n >
2020-10-15 14:24:47 +00:00
< div className = 'column-settings__row' >
2020-12-15 17:43:54 +00:00
< SettingToggle disabled = { browserPermission === 'denied' } prefix = 'notifications_desktop' settings = { settings } settingPath = { [ 'alerts' , 'status' ] } onChange = { onChange } label = { alertStr } / >
2020-10-15 14:24:47 +00:00
{ showPushSettings && < SettingToggle prefix = 'notifications_push' settings = { pushSettings } settingPath = { [ 'alerts' , 'status' ] } onChange = { this . onPushChange } label = { pushStr } / > }
< SettingToggle prefix = 'notifications' settings = { settings } settingPath = { [ 'shows' , 'status' ] } onChange = { onChange } label = { showStr } / >
< SettingToggle prefix = 'notifications' settings = { settings } settingPath = { [ 'sounds' , 'status' ] } onChange = { onChange } label = { soundStr } / >
< / d i v >
< / d i v >
2022-02-11 21:20:19 +00:00
< div role = 'group' aria - labelledby = 'notifications-update' >
2022-02-23 15:45:22 +00:00
< span id = 'notifications-update' className = 'column-settings__section' > < FormattedMessage id = 'notifications.column_settings.update' defaultMessage = 'Edits:' / > < / s p a n >
2022-02-11 21:20:19 +00:00
< div className = 'column-settings__row' >
< SettingToggle disabled = { browserPermission === 'denied' } prefix = 'notifications_desktop' settings = { settings } settingPath = { [ 'alerts' , 'update' ] } onChange = { onChange } label = { alertStr } / >
{ showPushSettings && < SettingToggle prefix = 'notifications_push' settings = { pushSettings } settingPath = { [ 'alerts' , 'update' ] } onChange = { this . onPushChange } label = { pushStr } / > }
< SettingToggle prefix = 'notifications' settings = { settings } settingPath = { [ 'shows' , 'update' ] } onChange = { onChange } label = { showStr } / >
< SettingToggle prefix = 'notifications' settings = { settings } settingPath = { [ 'sounds' , 'update' ] } onChange = { onChange } label = { soundStr } / >
< / d i v >
< / d i v >
2022-02-23 15:45:22 +00:00
2022-07-05 00:41:40 +00:00
{ ( this . context . identity . permissions & PERMISSION _MANAGE _USERS === PERMISSION _MANAGE _USERS ) && (
2022-02-23 15:45:22 +00:00
< div role = 'group' aria - labelledby = 'notifications-admin-sign-up' >
< span id = 'notifications-status' className = 'column-settings__section' > < FormattedMessage id = 'notifications.column_settings.admin.sign_up' defaultMessage = 'New sign-ups:' / > < / s p a n >
< div className = 'column-settings__row' >
< SettingToggle disabled = { browserPermission === 'denied' } prefix = 'notifications_desktop' settings = { settings } settingPath = { [ 'alerts' , 'admin.sign_up' ] } onChange = { onChange } label = { alertStr } / >
{ showPushSettings && < SettingToggle prefix = 'notifications_push' settings = { pushSettings } settingPath = { [ 'alerts' , 'admin.sign_up' ] } onChange = { this . onPushChange } label = { pushStr } / > }
< SettingToggle prefix = 'notifications' settings = { settings } settingPath = { [ 'shows' , 'admin.sign_up' ] } onChange = { onChange } label = { showStr } / >
< SettingToggle prefix = 'notifications' settings = { settings } settingPath = { [ 'sounds' , 'admin.sign_up' ] } onChange = { onChange } label = { soundStr } / >
< / d i v >
< / d i v >
) }
2022-06-27 07:30:15 +00:00
2022-07-05 00:41:40 +00:00
{ ( this . context . identity . permissions & PERMISSION _MANAGE _REPORTS === PERMISSION _MANAGE _REPORTS ) && (
2022-06-27 07:30:15 +00:00
< div role = 'group' aria - labelledby = 'notifications-admin-report' >
< span id = 'notifications-status' className = 'column-settings__section' > < FormattedMessage id = 'notifications.column_settings.admin.report' defaultMessage = 'New reports:' / > < / s p a n >
< div className = 'column-settings__row' >
< SettingToggle disabled = { browserPermission === 'denied' } prefix = 'notifications_desktop' settings = { settings } settingPath = { [ 'alerts' , 'admin.report' ] } onChange = { onChange } label = { alertStr } / >
{ showPushSettings && < SettingToggle prefix = 'notifications_push' settings = { pushSettings } settingPath = { [ 'alerts' , 'admin.report' ] } onChange = { this . onPushChange } label = { pushStr } / > }
< SettingToggle prefix = 'notifications' settings = { settings } settingPath = { [ 'shows' , 'admin.report' ] } onChange = { onChange } label = { showStr } / >
< SettingToggle prefix = 'notifications' settings = { settings } settingPath = { [ 'sounds' , 'admin.report' ] } onChange = { onChange } label = { soundStr } / >
< / d i v >
< / d i v >
) }
2017-06-03 23:39:38 +00:00
< / d i v >
2017-01-02 13:09:57 +00:00
) ;
}
2017-04-21 18:05:35 +00:00
}