Move emoji loading into TS

This commit is contained in:
Josh Perez 2021-09-20 13:59:09 -04:00 committed by GitHub
parent 48daaaa81d
commit e9ef239ff0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 35 additions and 41 deletions

View file

@ -0,0 +1,28 @@
// Copyright 2019-2021 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
import { take } from 'lodash';
import dataInterface from '../sql/Client';
type RecentEmojiObjectType = {
recents: Array<string>;
};
let initialState: RecentEmojiObjectType;
async function getRecentEmojisForRedux() {
const recent = await dataInterface.getRecentEmojis();
return recent.map(e => e.shortName);
}
export async function loadRecentEmojis(): Promise<void> {
const recents = await getRecentEmojisForRedux();
initialState = {
recents: take(recents, 32),
};
}
export function getEmojiReducerState(): RecentEmojiObjectType {
return initialState;
}