2023-02-25 14:30:24 -08:00
|
|
|
import { Map as ImmutableMap } from 'immutable';
|
2022-07-05 12:57:41 -07:00
|
|
|
import React, { useEffect, useState, useLayoutEffect } from 'react';
|
2022-06-29 01:25:57 -07:00
|
|
|
import { defineMessages, useIntl } from 'react-intl';
|
2023-02-25 14:30:24 -08:00
|
|
|
import { createSelector } from 'reselect';
|
2022-06-25 20:55:17 -07:00
|
|
|
|
2023-02-25 14:30:24 -08:00
|
|
|
import { useEmoji } from 'soapbox/actions/emojis';
|
|
|
|
import { changeSetting } from 'soapbox/actions/settings';
|
|
|
|
import { useAppDispatch, useAppSelector, useSettings } from 'soapbox/hooks';
|
|
|
|
import { RootState } from 'soapbox/store';
|
2022-06-25 20:55:17 -07:00
|
|
|
|
2022-07-04 13:30:35 -07:00
|
|
|
import { buildCustomEmojis } from '../../emoji';
|
2022-06-25 20:55:17 -07:00
|
|
|
import { EmojiPicker as EmojiPickerAsync } from '../../ui/util/async-components';
|
|
|
|
|
2022-07-04 20:45:01 -07:00
|
|
|
import type { Emoji, CustomEmoji, NativeEmoji } from 'soapbox/features/emoji';
|
2022-06-29 01:25:57 -07:00
|
|
|
|
2022-06-25 20:55:17 -07:00
|
|
|
let EmojiPicker: any; // load asynchronously
|
|
|
|
|
2023-02-23 08:42:31 -08:00
|
|
|
export const messages = defineMessages({
|
2022-06-25 20:55:17 -07:00
|
|
|
emoji: { id: 'emoji_button.label', defaultMessage: 'Insert emoji' },
|
2023-02-23 08:42:31 -08:00
|
|
|
emoji_pick: { id: 'emoji_button.pick', defaultMessage: 'Pick an emoji…' },
|
2022-07-09 11:58:09 -07:00
|
|
|
emoji_oh_no: { id: 'emoji_button.oh_no', defaultMessage: 'Oh no!' },
|
2022-06-25 20:55:17 -07:00
|
|
|
emoji_search: { id: 'emoji_button.search', defaultMessage: 'Search…' },
|
|
|
|
emoji_not_found: { id: 'emoji_button.not_found', defaultMessage: 'No emoji\'s found.' },
|
2022-07-09 11:58:09 -07:00
|
|
|
emoji_add_custom: { id: 'emoji_button.add_custom', defaultMessage: 'Add custom emoji' },
|
2022-06-25 20:55:17 -07:00
|
|
|
custom: { id: 'emoji_button.custom', defaultMessage: 'Custom' },
|
|
|
|
recent: { id: 'emoji_button.recent', defaultMessage: 'Frequently used' },
|
|
|
|
search_results: { id: 'emoji_button.search_results', defaultMessage: 'Search results' },
|
|
|
|
people: { id: 'emoji_button.people', defaultMessage: 'People' },
|
|
|
|
nature: { id: 'emoji_button.nature', defaultMessage: 'Nature' },
|
|
|
|
food: { id: 'emoji_button.food', defaultMessage: 'Food & Drink' },
|
|
|
|
activity: { id: 'emoji_button.activity', defaultMessage: 'Activity' },
|
|
|
|
travel: { id: 'emoji_button.travel', defaultMessage: 'Travel & Places' },
|
|
|
|
objects: { id: 'emoji_button.objects', defaultMessage: 'Objects' },
|
|
|
|
symbols: { id: 'emoji_button.symbols', defaultMessage: 'Symbols' },
|
|
|
|
flags: { id: 'emoji_button.flags', defaultMessage: 'Flags' },
|
2022-07-09 11:58:09 -07:00
|
|
|
skins_choose: { id: 'emoji_button.skins_choose', defaultMessage: 'Choose default skin tone' },
|
|
|
|
skins_1: { id: 'emoji_button.skins_1', defaultMessage: 'Default' },
|
|
|
|
skins_2: { id: 'emoji_button.skins_2', defaultMessage: 'Light' },
|
|
|
|
skins_3: { id: 'emoji_button.skins_3', defaultMessage: 'Medium-Light' },
|
|
|
|
skins_4: { id: 'emoji_button.skins_4', defaultMessage: 'Medium' },
|
|
|
|
skins_5: { id: 'emoji_button.skins_5', defaultMessage: 'Medium-Dark' },
|
|
|
|
skins_6: { id: 'emoji_button.skins_6', defaultMessage: 'Dark' },
|
2022-06-25 20:55:17 -07:00
|
|
|
});
|
|
|
|
|
2023-02-25 14:30:24 -08:00
|
|
|
export interface IEmojiPickerDropdown {
|
|
|
|
onPickEmoji?: (emoji: Emoji) => void
|
|
|
|
condensed?: boolean
|
2023-02-28 11:52:15 -08:00
|
|
|
withCustom?: boolean
|
2023-02-28 09:59:32 -08:00
|
|
|
visible: boolean
|
|
|
|
setVisible: (value: boolean) => void
|
2023-03-19 15:24:39 -07:00
|
|
|
update: (() => any) | null
|
2022-06-25 20:55:17 -07:00
|
|
|
}
|
|
|
|
|
2023-02-25 14:30:24 -08:00
|
|
|
const perLine = 8;
|
|
|
|
const lines = 2;
|
|
|
|
|
|
|
|
const DEFAULTS = [
|
|
|
|
'+1',
|
|
|
|
'grinning',
|
|
|
|
'kissing_heart',
|
|
|
|
'heart_eyes',
|
|
|
|
'laughing',
|
|
|
|
'stuck_out_tongue_winking_eye',
|
|
|
|
'sweat_smile',
|
|
|
|
'joy',
|
|
|
|
'yum',
|
|
|
|
'disappointed',
|
|
|
|
'thinking_face',
|
|
|
|
'weary',
|
|
|
|
'sob',
|
|
|
|
'sunglasses',
|
|
|
|
'heart',
|
|
|
|
'ok_hand',
|
|
|
|
];
|
|
|
|
|
|
|
|
export const getFrequentlyUsedEmojis = createSelector([
|
|
|
|
(state: RootState) => state.settings.get('frequentlyUsedEmojis', ImmutableMap()),
|
|
|
|
], (emojiCounters: ImmutableMap<string, number>) => {
|
|
|
|
let emojis = emojiCounters
|
|
|
|
.keySeq()
|
|
|
|
.sort((a, b) => emojiCounters.get(a)! - emojiCounters.get(b)!)
|
|
|
|
.reverse()
|
|
|
|
.slice(0, perLine * lines)
|
|
|
|
.toArray();
|
|
|
|
|
|
|
|
if (emojis.length < DEFAULTS.length) {
|
|
|
|
const uniqueDefaults = DEFAULTS.filter(emoji => !emojis.includes(emoji));
|
|
|
|
emojis = emojis.concat(uniqueDefaults.slice(0, DEFAULTS.length - emojis.length));
|
|
|
|
}
|
|
|
|
|
|
|
|
return emojis;
|
|
|
|
});
|
|
|
|
|
|
|
|
const getCustomEmojis = createSelector([
|
|
|
|
(state: RootState) => state.custom_emojis,
|
|
|
|
], emojis => emojis.filter(e => e.get('visible_in_picker')).sort((a, b) => {
|
|
|
|
const aShort = a.get('shortcode')!.toLowerCase();
|
|
|
|
const bShort = b.get('shortcode')!.toLowerCase();
|
|
|
|
|
|
|
|
if (aShort < bShort) {
|
|
|
|
return -1;
|
|
|
|
} else if (aShort > bShort) {
|
|
|
|
return 1;
|
|
|
|
} else {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}));
|
|
|
|
|
2022-07-05 12:57:41 -07:00
|
|
|
// Fixes render bug where popover has a delayed position update
|
|
|
|
const RenderAfter = ({ children, update }: any) => {
|
|
|
|
const [nextTick, setNextTick] = useState(false);
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
setTimeout(() => {
|
|
|
|
setNextTick(true);
|
|
|
|
}, 0);
|
|
|
|
}, []);
|
|
|
|
|
|
|
|
useLayoutEffect(() => {
|
|
|
|
if (nextTick) {
|
|
|
|
update();
|
|
|
|
}
|
|
|
|
}, [nextTick, update]);
|
|
|
|
|
|
|
|
return nextTick ? children : null;
|
|
|
|
};
|
|
|
|
|
2023-02-28 09:59:32 -08:00
|
|
|
const EmojiPickerDropdown: React.FC<IEmojiPickerDropdown> = ({
|
2023-02-28 11:52:15 -08:00
|
|
|
onPickEmoji, visible, setVisible, update, withCustom = true,
|
2023-02-28 09:59:32 -08:00
|
|
|
}) => {
|
2022-06-25 20:55:17 -07:00
|
|
|
const intl = useIntl();
|
2023-02-25 14:30:24 -08:00
|
|
|
const dispatch = useAppDispatch();
|
2022-06-25 20:55:17 -07:00
|
|
|
const settings = useSettings();
|
|
|
|
const title = intl.formatMessage(messages.emoji);
|
|
|
|
const userTheme = settings.get('themeMode');
|
|
|
|
const theme = (userTheme === 'dark' || userTheme === 'light') ? userTheme : 'auto';
|
|
|
|
|
2023-02-25 14:30:24 -08:00
|
|
|
const customEmojis = useAppSelector((state) => getCustomEmojis(state));
|
|
|
|
const frequentlyUsedEmojis = useAppSelector((state) => getFrequentlyUsedEmojis(state));
|
|
|
|
|
2022-06-25 20:55:17 -07:00
|
|
|
const [loading, setLoading] = useState(false);
|
|
|
|
|
2023-02-26 11:34:57 -08:00
|
|
|
const handlePick = (emoji: any) => {
|
2022-06-25 20:55:17 -07:00
|
|
|
setVisible(false);
|
2022-07-04 20:45:01 -07:00
|
|
|
|
2023-02-25 14:30:24 -08:00
|
|
|
let pickedEmoji: Emoji;
|
|
|
|
|
2022-07-04 20:45:01 -07:00
|
|
|
if (emoji.native) {
|
2023-02-25 14:30:24 -08:00
|
|
|
pickedEmoji = {
|
2022-07-04 20:45:01 -07:00
|
|
|
id: emoji.id,
|
|
|
|
colons: emoji.shortcodes,
|
|
|
|
custom: false,
|
|
|
|
native: emoji.native,
|
|
|
|
unified: emoji.unified,
|
2023-02-25 14:30:24 -08:00
|
|
|
} as NativeEmoji;
|
2022-07-04 20:45:01 -07:00
|
|
|
} else {
|
2023-02-25 14:30:24 -08:00
|
|
|
pickedEmoji = {
|
2022-07-04 20:45:01 -07:00
|
|
|
id: emoji.id,
|
|
|
|
colons: emoji.shortcodes,
|
|
|
|
custom: true,
|
|
|
|
imageUrl: emoji.src,
|
2023-02-25 14:30:24 -08:00
|
|
|
} as CustomEmoji;
|
2023-02-26 11:34:57 -08:00
|
|
|
}
|
2023-02-25 14:30:24 -08:00
|
|
|
|
2023-02-26 11:34:57 -08:00
|
|
|
dispatch(useEmoji(pickedEmoji)); // eslint-disable-line react-hooks/rules-of-hooks
|
2023-02-25 14:30:24 -08:00
|
|
|
|
2023-02-26 11:34:57 -08:00
|
|
|
if (onPickEmoji) {
|
|
|
|
onPickEmoji(pickedEmoji);
|
2022-07-04 20:45:01 -07:00
|
|
|
}
|
2022-06-29 01:25:57 -07:00
|
|
|
};
|
2022-06-25 20:55:17 -07:00
|
|
|
|
2023-02-25 14:30:24 -08:00
|
|
|
const handleSkinTone = (skinTone: string) => {
|
|
|
|
dispatch(changeSetting(['skinTone'], skinTone));
|
|
|
|
};
|
|
|
|
|
2022-07-09 11:58:09 -07:00
|
|
|
const getI18n = () => {
|
|
|
|
return {
|
|
|
|
search: intl.formatMessage(messages.emoji_search),
|
|
|
|
pick: intl.formatMessage(messages.emoji_pick),
|
|
|
|
search_no_results_1: intl.formatMessage(messages.emoji_oh_no),
|
|
|
|
search_no_results_2: intl.formatMessage(messages.emoji_not_found),
|
|
|
|
add_custom: intl.formatMessage(messages.emoji_add_custom),
|
|
|
|
categories: {
|
|
|
|
search: intl.formatMessage(messages.search_results),
|
|
|
|
frequent: intl.formatMessage(messages.recent),
|
|
|
|
people: intl.formatMessage(messages.people),
|
|
|
|
nature: intl.formatMessage(messages.nature),
|
|
|
|
foods: intl.formatMessage(messages.food),
|
|
|
|
activity: intl.formatMessage(messages.activity),
|
|
|
|
places: intl.formatMessage(messages.travel),
|
|
|
|
objects: intl.formatMessage(messages.objects),
|
|
|
|
symbols: intl.formatMessage(messages.symbols),
|
|
|
|
flags: intl.formatMessage(messages.flags),
|
|
|
|
custom: intl.formatMessage(messages.custom),
|
|
|
|
},
|
|
|
|
skins: {
|
|
|
|
choose: intl.formatMessage(messages.skins_choose),
|
|
|
|
1: intl.formatMessage(messages.skins_1),
|
|
|
|
2: intl.formatMessage(messages.skins_2),
|
|
|
|
3: intl.formatMessage(messages.skins_3),
|
|
|
|
4: intl.formatMessage(messages.skins_4),
|
|
|
|
5: intl.formatMessage(messages.skins_5),
|
|
|
|
6: intl.formatMessage(messages.skins_6),
|
2022-07-09 12:16:42 -07:00
|
|
|
},
|
|
|
|
};
|
|
|
|
};
|
2022-07-13 18:37:28 -07:00
|
|
|
|
2022-06-25 20:55:17 -07:00
|
|
|
useEffect(() => {
|
2022-07-10 04:42:22 -07:00
|
|
|
// fix scrolling focus issue
|
|
|
|
if (visible) {
|
2022-07-11 13:19:37 -07:00
|
|
|
document.body.style.overflow = 'hidden';
|
2022-07-10 04:42:22 -07:00
|
|
|
} else {
|
2023-02-23 08:42:31 -08:00
|
|
|
document.body.style.overflow = '';
|
2022-07-10 04:42:22 -07:00
|
|
|
}
|
|
|
|
|
2022-06-25 20:55:17 -07:00
|
|
|
if (!EmojiPicker) {
|
|
|
|
setLoading(true);
|
|
|
|
|
|
|
|
EmojiPickerAsync().then(EmojiMart => {
|
|
|
|
EmojiPicker = EmojiMart.Picker;
|
|
|
|
|
|
|
|
setLoading(false);
|
|
|
|
}).catch(() => {
|
|
|
|
setLoading(false);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}, [visible]);
|
|
|
|
|
2023-02-28 10:13:34 -08:00
|
|
|
useEffect(() => () => {
|
|
|
|
document.body.style.overflow = '';
|
|
|
|
}, []);
|
|
|
|
|
2022-06-25 20:55:17 -07:00
|
|
|
return (
|
2023-02-28 09:59:32 -08:00
|
|
|
visible ? (
|
|
|
|
<RenderAfter update={update}>
|
|
|
|
{!loading && (
|
|
|
|
<EmojiPicker
|
2023-02-28 11:52:15 -08:00
|
|
|
custom={withCustom ? [{ emojis: buildCustomEmojis(customEmojis) }] : undefined}
|
2023-02-28 09:59:32 -08:00
|
|
|
title={title}
|
|
|
|
onEmojiSelect={handlePick}
|
|
|
|
recent={frequentlyUsedEmojis}
|
|
|
|
perLine={8}
|
|
|
|
skin={handleSkinTone}
|
|
|
|
emojiSize={22}
|
|
|
|
emojiButtonSize={34}
|
|
|
|
set='twitter'
|
|
|
|
theme={theme}
|
|
|
|
i18n={getI18n()}
|
2023-03-02 14:38:17 -08:00
|
|
|
skinTonePosition='search'
|
|
|
|
previewPosition='none'
|
2023-02-28 09:59:32 -08:00
|
|
|
/>
|
|
|
|
)}
|
|
|
|
</RenderAfter>
|
|
|
|
) : null
|
2022-06-25 20:55:17 -07:00
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
export default EmojiPickerDropdown;
|