22 lines
651 B
TypeScript
22 lines
651 B
TypeScript
// Copyright 2023 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
import { DataReader } from '../sql/Client';
|
|
import { strictAssert } from '../util/assert';
|
|
import { makeLookup } from '../util/makeLookup';
|
|
|
|
import type { BadgeType } from '../badges/types';
|
|
import type { BadgesStateType } from '../state/ducks/badges';
|
|
|
|
let badges: Array<BadgeType> | undefined;
|
|
|
|
export async function loadBadges(): Promise<void> {
|
|
badges = await DataReader.getAllBadges();
|
|
}
|
|
|
|
export function getBadgesForRedux(): BadgesStateType {
|
|
strictAssert(badges != null, 'badges have not been loaded');
|
|
return {
|
|
byId: makeLookup(badges, 'id'),
|
|
};
|
|
}
|