feat(notifications) add ability to disable specific notifications

This works together with the broader "notifications" config option. One
might choose to leave the existing option unespecified *thus allowing
all notifications) and then use this new one to be explicit about which
ones to disable.
This commit is contained in:
Saúl Ibarra Corretgé 2022-05-16 11:27:31 +02:00 committed by Saúl Ibarra Corretgé
parent 420c7c87e3
commit 05127467c2
3 changed files with 7 additions and 1 deletions

View File

@ -1344,6 +1344,9 @@ var config = {
// 'transcribing.failedToStart' // shown when transcribing fails to start
// ],
// List of notifications to be disabled. Works in tandem with the above setting.
// disabledNotifications: [],
// Prevent the filmstrip from autohiding when screen width is under a certain threshold
// disableFilmstripAutohiding: false,

View File

@ -94,6 +94,7 @@ export default [
'disableBeforeUnloadHandlers',
'disableChatSmileys',
'disableDeepLinking',
'disabledNotifications',
'disabledSounds',
'disableFilmstripAutohiding',
'disableInitialGUM',

View File

@ -109,10 +109,12 @@ export function showErrorNotification(props: Object, type: ?string) {
*/
export function showNotification(props: Object = {}, type: ?string) {
return function(dispatch: Function, getState: Function) {
const { notifications, notificationTimeouts } = getState()['features/base/config'];
const { disabledNotifications = [], notifications, notificationTimeouts } = getState()['features/base/config'];
const enabledFlag = getFeatureFlag(getState(), NOTIFICATIONS_ENABLED, true);
const shouldDisplay = enabledFlag
&& !(disabledNotifications.includes(props.descriptionKey)
|| disabledNotifications.includes(props.titleKey))
&& (!notifications
|| notifications.includes(props.descriptionKey)
|| notifications.includes(props.titleKey));