34 lines
1.2 KiB
TypeScript
34 lines
1.2 KiB
TypeScript
import MiddlewareRegistry from '../base/redux/MiddlewareRegistry';
|
|
import { SETTINGS_UPDATED } from '../base/settings/actionTypes';
|
|
import { getHideSelfView } from '../base/settings/functions.web';
|
|
import { showNotification } from '../notifications/actions';
|
|
import { DISABLE_SELF_VIEW_NOTIFICATION_ID, NOTIFICATION_TIMEOUT_TYPE } from '../notifications/constants';
|
|
|
|
import { openSettingsDialog } from './actions';
|
|
import { SETTINGS_TABS } from './constants';
|
|
|
|
MiddlewareRegistry.register(({ dispatch, getState }) => next => action => {
|
|
const oldValue = getHideSelfView(getState());
|
|
|
|
const result = next(action);
|
|
|
|
switch (action.type) {
|
|
case SETTINGS_UPDATED: {
|
|
const newValue = action.settings.disableSelfView;
|
|
|
|
if (newValue !== oldValue && newValue) {
|
|
dispatch(showNotification({
|
|
uid: DISABLE_SELF_VIEW_NOTIFICATION_ID,
|
|
titleKey: 'notify.selfViewTitle',
|
|
customActionNameKey: [ 'settings.title' ],
|
|
customActionHandler: [ () =>
|
|
dispatch(openSettingsDialog(SETTINGS_TABS.PROFILE))
|
|
]
|
|
}, NOTIFICATION_TIMEOUT_TYPE.STICKY));
|
|
}
|
|
}
|
|
}
|
|
|
|
return result;
|
|
});
|