mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2026-02-15 07:28:59 +00:00
93 lines
2.8 KiB
TypeScript
93 lines
2.8 KiB
TypeScript
// Copyright 2023 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
// loader services
|
|
import { getBadgesForRedux, loadBadges } from './badgeLoader.preload.js';
|
|
import {
|
|
getCallsHistoryForRedux,
|
|
getCallsHistoryUnreadCountForRedux,
|
|
loadCallHistory,
|
|
} from './callHistoryLoader.preload.js';
|
|
import {
|
|
getCallLinksForRedux,
|
|
loadCallLinks,
|
|
} from './callLinksLoader.preload.js';
|
|
import {
|
|
getDistributionListsForRedux,
|
|
loadDistributionLists,
|
|
} from './distributionListLoader.preload.js';
|
|
import {
|
|
getDonationsForRedux,
|
|
loadDonationReceipts,
|
|
} from './donationsLoader.preload.js';
|
|
import { getStoriesForRedux, loadStories } from './storyLoader.preload.js';
|
|
import { getUserDataForRedux, loadUserData } from './userLoader.dom.js';
|
|
import {
|
|
loadCachedProfiles as loadNotificationProfiles,
|
|
getCachedProfiles as getNotificationProfiles,
|
|
} from './notificationProfilesService.preload.js';
|
|
|
|
// old-style loaders
|
|
import {
|
|
getEmojiReducerState,
|
|
loadRecentEmojis,
|
|
} from '../util/loadRecentEmojis.preload.js';
|
|
import {
|
|
load as loadStickers,
|
|
getInitialState as getStickersReduxState,
|
|
} from '../types/Stickers.preload.js';
|
|
|
|
import { type ReduxInitData } from '../state/initializeRedux.preload.js';
|
|
import { reinitializeRedux } from '../state/reinitializeRedux.preload.js';
|
|
import { getGifsStateForRedux, loadGifsState } from './gifsLoader.preload.js';
|
|
import {
|
|
getChatFoldersForRedux,
|
|
loadChatFolders,
|
|
} from './chatFoldersLoader.preload.js';
|
|
import { getInitialMegaphonesState } from '../state/ducks/megaphones.preload.js';
|
|
|
|
export async function loadAll(): Promise<void> {
|
|
await Promise.all([
|
|
loadBadges(),
|
|
loadCallHistory(),
|
|
loadCallLinks(),
|
|
loadChatFolders(),
|
|
loadDistributionLists(),
|
|
loadDonationReceipts(),
|
|
loadGifsState(),
|
|
loadNotificationProfiles(),
|
|
loadRecentEmojis(),
|
|
loadStickers(),
|
|
loadStories(),
|
|
loadUserData(),
|
|
]);
|
|
}
|
|
|
|
export async function loadAllAndReinitializeRedux(): Promise<void> {
|
|
await loadAll();
|
|
reinitializeRedux(getParametersForRedux());
|
|
}
|
|
|
|
export function getParametersForRedux(): ReduxInitData {
|
|
const { mainWindowStats, menuOptions, theme } = getUserDataForRedux();
|
|
|
|
return {
|
|
badgesState: getBadgesForRedux(),
|
|
callHistory: getCallsHistoryForRedux(),
|
|
callHistoryUnreadCount: getCallsHistoryUnreadCountForRedux(),
|
|
callLinks: getCallLinksForRedux(),
|
|
chatFolders: getChatFoldersForRedux(),
|
|
donations: getDonationsForRedux(),
|
|
gifs: getGifsStateForRedux(),
|
|
mainWindowStats,
|
|
menuOptions,
|
|
megaphones: getInitialMegaphonesState(),
|
|
notificationProfiles: getNotificationProfiles(),
|
|
recentEmoji: getEmojiReducerState(),
|
|
stickers: getStickersReduxState(),
|
|
stories: getStoriesForRedux(),
|
|
storyDistributionLists: getDistributionListsForRedux(),
|
|
theme,
|
|
};
|
|
}
|