mirror of
https://github.com/glitch-soc/mastodon.git
synced 2025-01-21 07:03:05 -05:00
99ffae7d44
Port 1e612c5a09097ef62f26bb9882125dc2d53c92df to glitch-soc Signed-off-by: Claire <claire.github-309c@sitedethib.com>
19 lines
648 B
TypeScript
19 lines
648 B
TypeScript
import { createAppAsyncThunk } from 'flavours/glitch/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());
|
|
else void dispatch(expandNotifications());
|
|
},
|
|
);
|