mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2026-04-02 00:07:56 +01:00
94 lines
2.1 KiB
TypeScript
94 lines
2.1 KiB
TypeScript
// Copyright 2019 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
import lodash from 'lodash';
|
|
import type { ThunkAction } from 'redux-thunk';
|
|
import type { ReadonlyDeep } from 'type-fest';
|
|
import { DataWriter } from '../../sql/Client.preload.js';
|
|
import type { BoundActionCreatorsMapObject } from '../../hooks/useBoundActions.std.js';
|
|
import { useBoundActions } from '../../hooks/useBoundActions.std.js';
|
|
import type { FunEmojiSelection } from '../../components/fun/panels/FunPanelEmojis.dom.js';
|
|
import {
|
|
getEmojiParentByKey,
|
|
getEmojiParentKeyByVariantKey,
|
|
} from '../../components/fun/data/emojis.std.js';
|
|
|
|
const { take, uniq } = lodash;
|
|
|
|
const { updateEmojiUsage } = DataWriter;
|
|
|
|
// State
|
|
|
|
export type EmojisStateType = ReadonlyDeep<{
|
|
recents: Array<string>;
|
|
}>;
|
|
|
|
// Actions
|
|
|
|
type UseEmojiAction = ReadonlyDeep<{
|
|
type: 'emojis/USE_EMOJI';
|
|
payload: string;
|
|
}>;
|
|
|
|
type EmojisActionType = ReadonlyDeep<UseEmojiAction>;
|
|
|
|
// Action Creators
|
|
|
|
export const actions = {
|
|
onUseEmoji,
|
|
useEmoji,
|
|
};
|
|
|
|
export const useEmojisActions = (): BoundActionCreatorsMapObject<
|
|
typeof actions
|
|
> => useBoundActions(actions);
|
|
|
|
function onUseEmoji(
|
|
emojiSelection: FunEmojiSelection
|
|
): ThunkAction<void, unknown, unknown, UseEmojiAction> {
|
|
return async dispatch => {
|
|
try {
|
|
const emojiParentKey = getEmojiParentKeyByVariantKey(
|
|
emojiSelection.variantKey
|
|
);
|
|
const emojiParent = getEmojiParentByKey(emojiParentKey);
|
|
const shortName = emojiParent.englishShortNameDefault;
|
|
await updateEmojiUsage(shortName);
|
|
dispatch(useEmoji(shortName));
|
|
} catch (err) {
|
|
// Errors are ignored.
|
|
}
|
|
};
|
|
}
|
|
|
|
function useEmoji(payload: string): UseEmojiAction {
|
|
return {
|
|
type: 'emojis/USE_EMOJI',
|
|
payload,
|
|
};
|
|
}
|
|
|
|
// Reducer
|
|
|
|
export function getEmptyState(): EmojisStateType {
|
|
return {
|
|
recents: [],
|
|
};
|
|
}
|
|
|
|
export function reducer(
|
|
state: EmojisStateType = getEmptyState(),
|
|
action: EmojisActionType
|
|
): EmojisStateType {
|
|
if (action.type === 'emojis/USE_EMOJI') {
|
|
const { payload } = action;
|
|
|
|
return {
|
|
...state,
|
|
recents: take(uniq([payload, ...state.recents]), 32),
|
|
};
|
|
}
|
|
|
|
return state;
|
|
}
|