2024-08-28 00:55:51 +10:00
|
|
|
import { selectUseGroupedNotifications } from 'mastodon/selectors/settings';
|
2024-07-19 00:36:09 +10:00
|
|
|
import { createAppAsyncThunk } from 'mastodon/store';
|
|
|
|
|
|
|
|
import { fetchNotifications } from './notification_groups';
|
|
|
|
import { expandNotifications } from './notifications';
|
|
|
|
|
|
|
|
export const initializeNotifications = createAppAsyncThunk(
|
|
|
|
'notifications/initialize',
|
|
|
|
(_, { dispatch, getState }) => {
|
2024-08-28 00:55:51 +10:00
|
|
|
if (selectUseGroupedNotifications(getState()))
|
|
|
|
void dispatch(fetchNotifications());
|
2024-08-21 02:18:33 +10:00
|
|
|
else void dispatch(expandNotifications({}));
|
2024-07-19 00:36:09 +10:00
|
|
|
},
|
|
|
|
);
|