Add "This Message" reactions
This commit is contained in:
parent
ac58f3178e
commit
9e3f397032
12 changed files with 503 additions and 225 deletions
|
@ -21,6 +21,10 @@ export enum FunGifsCategory {
|
|||
Angry = 'Angry',
|
||||
}
|
||||
|
||||
export enum FunEmojisBase {
|
||||
ThisMessage = 'ThisMessage',
|
||||
}
|
||||
|
||||
export enum FunSectionCommon {
|
||||
SearchResults = 'SearchResults',
|
||||
Recents = 'Recents',
|
||||
|
@ -48,7 +52,10 @@ export function toFunStickersPackSection(
|
|||
return `StickerPack:${pack.id}` as FunStickersPackSection;
|
||||
}
|
||||
|
||||
export type FunEmojisSection = FunSectionCommon | EmojiPickerCategory;
|
||||
export type FunEmojisSection =
|
||||
| FunSectionCommon
|
||||
| EmojiPickerCategory
|
||||
| FunEmojisBase;
|
||||
export type FunStickersSection =
|
||||
| FunSectionCommon
|
||||
| FunStickersSectionBase
|
||||
|
@ -56,8 +63,9 @@ export type FunStickersSection =
|
|||
export type FunGifsSection = FunSectionCommon | FunGifsCategory;
|
||||
|
||||
export const FunEmojisSectionOrder: ReadonlyArray<
|
||||
FunSectionCommon.Recents | EmojiPickerCategory
|
||||
FunSectionCommon.Recents | FunEmojisBase.ThisMessage | EmojiPickerCategory
|
||||
> = [
|
||||
FunEmojisBase.ThisMessage,
|
||||
FunSectionCommon.Recents,
|
||||
EmojiPickerCategory.SmileysAndPeople,
|
||||
EmojiPickerCategory.AnimalsAndNature,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue