Files
Desktop/ts/services/chatFoldersLoader.preload.ts
T
2026-03-30 11:54:59 -07:00

18 lines
613 B
TypeScript

// Copyright 2025 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
import { DataReader } from '../sql/Client.preload.ts';
import type { CurrentChatFolder } from '../types/CurrentChatFolders.std.ts';
import { strictAssert } from '../util/assert.std.ts';
let chatFolders: ReadonlyArray<CurrentChatFolder>;
export async function loadChatFolders(): Promise<void> {
chatFolders = await DataReader.getCurrentChatFolders();
}
export function getChatFoldersForRedux(): ReadonlyArray<CurrentChatFolder> {
strictAssert(chatFolders != null, 'chatFolders has not been loaded');
return chatFolders;
}