2024-07-18 10:36:09 -04:00
|
|
|
import { createAppAsyncThunk } from 'mastodon/store';
|
|
|
|
|
|
|
|
import { fetchNotifications } from './notification_groups';
|
|
|
|
import { expandNotifications } from './notifications';
|
|
|
|
|
|
|
|
export const initializeNotifications = createAppAsyncThunk(
|
|
|
|
'notifications/initialize',
|
|
|
|
(_, { dispatch, getState }) => {
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unsafe-call, @typescript-eslint/no-unsafe-member-access
|
|
|
|
const enableBeta = getState().settings.getIn(
|
|
|
|
['notifications', 'groupingBeta'],
|
|
|
|
false,
|
|
|
|
) as boolean;
|
|
|
|
|
|
|
|
if (enableBeta) void dispatch(fetchNotifications());
|
2024-08-20 12:18:33 -04:00
|
|
|
else void dispatch(expandNotifications({}));
|
2024-07-18 10:36:09 -04:00
|
|
|
},
|
|
|
|
);
|