2017-04-22 04:05:35 +10:00
|
|
|
import PropTypes from 'prop-types';
|
2023-05-24 01:15:17 +10:00
|
|
|
import { PureComponent } from 'react';
|
|
|
|
|
2021-06-01 22:35:49 +10:00
|
|
|
import { defineMessages, injectIntl, FormattedMessage } from 'react-intl';
|
2023-05-24 01:15:17 +10:00
|
|
|
|
2017-09-23 09:41:00 +10:00
|
|
|
import classNames from 'classnames';
|
2023-05-24 01:15:17 +10:00
|
|
|
|
2017-09-23 13:40:28 +10:00
|
|
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
2023-05-24 01:15:17 +10:00
|
|
|
|
2020-11-05 04:21:05 +11:00
|
|
|
import { supportsPassiveEvents } from 'detect-passive-events';
|
2023-05-24 01:15:17 +10:00
|
|
|
import Overlay from 'react-overlays/Overlay';
|
|
|
|
|
2020-10-13 10:19:35 +11:00
|
|
|
import { assetHost } from 'mastodon/utils/config';
|
2017-03-02 10:57:55 +11:00
|
|
|
|
2023-05-24 01:15:17 +10:00
|
|
|
import { buildCustomEmojis, categoriesFromEmojis } from '../../emoji/emoji';
|
|
|
|
import { EmojiPicker as EmojiPickerAsync } from '../../ui/util/async-components';
|
|
|
|
|
2017-03-02 10:57:55 +11:00
|
|
|
const messages = defineMessages({
|
2017-04-22 11:36:33 +10:00
|
|
|
emoji: { id: 'emoji_button.label', defaultMessage: 'Insert emoji' },
|
2017-04-23 01:28:36 +10:00
|
|
|
emoji_search: { id: 'emoji_button.search', defaultMessage: 'Search...' },
|
2017-09-23 09:41:00 +10: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' },
|
2017-04-23 01:28:36 +10:00
|
|
|
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' },
|
2017-05-21 01:31:47 +10:00
|
|
|
flags: { id: 'emoji_button.flags', defaultMessage: 'Flags' },
|
2017-03-02 10:57:55 +11:00
|
|
|
});
|
|
|
|
|
2017-10-02 16:22:24 +11:00
|
|
|
let EmojiPicker, Emoji; // load asynchronously
|
|
|
|
|
2023-05-22 23:48:01 +10:00
|
|
|
const listenerOptions = supportsPassiveEvents ? { passive: true, capture: true } : true;
|
2017-09-23 09:41:00 +10:00
|
|
|
|
2021-06-01 22:35:49 +10:00
|
|
|
const backgroundImageFn = () => `${assetHost}/emoji/sheet_13.png`;
|
|
|
|
|
|
|
|
const notFoundFn = () => (
|
|
|
|
<div className='emoji-mart-no-results'>
|
|
|
|
<Emoji
|
|
|
|
emoji='sleuth_or_spy'
|
|
|
|
set='twitter'
|
|
|
|
size={32}
|
|
|
|
sheetSize={32}
|
|
|
|
backgroundImageFn={backgroundImageFn}
|
|
|
|
/>
|
|
|
|
|
|
|
|
<div className='emoji-mart-no-results-label'>
|
|
|
|
<FormattedMessage id='emoji_button.not_found' defaultMessage='No matching emojis found' />
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
|
2023-05-23 18:52:27 +10:00
|
|
|
class ModifierPickerMenu extends PureComponent {
|
2017-09-23 09:41:00 +10:00
|
|
|
|
|
|
|
static propTypes = {
|
|
|
|
active: PropTypes.bool,
|
|
|
|
onSelect: PropTypes.func.isRequired,
|
|
|
|
onClose: PropTypes.func.isRequired,
|
|
|
|
};
|
|
|
|
|
2017-10-03 10:56:50 +11:00
|
|
|
handleClick = e => {
|
|
|
|
this.props.onSelect(e.currentTarget.getAttribute('data-index') * 1);
|
2023-01-30 11:45:35 +11:00
|
|
|
};
|
2017-09-23 09:41:00 +10:00
|
|
|
|
2023-05-10 17:05:32 +10:00
|
|
|
UNSAFE_componentWillReceiveProps (nextProps) {
|
2017-09-23 09:41:00 +10:00
|
|
|
if (nextProps.active) {
|
|
|
|
this.attachListeners();
|
|
|
|
} else {
|
|
|
|
this.removeListeners();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
componentWillUnmount () {
|
|
|
|
this.removeListeners();
|
|
|
|
}
|
|
|
|
|
|
|
|
handleDocumentClick = e => {
|
|
|
|
if (this.node && !this.node.contains(e.target)) {
|
|
|
|
this.props.onClose();
|
|
|
|
}
|
2023-01-30 11:45:35 +11:00
|
|
|
};
|
2017-09-23 09:41:00 +10:00
|
|
|
|
|
|
|
attachListeners () {
|
2023-05-22 23:48:01 +10:00
|
|
|
document.addEventListener('click', this.handleDocumentClick, { capture: true });
|
2017-09-24 08:40:10 +10:00
|
|
|
document.addEventListener('touchend', this.handleDocumentClick, listenerOptions);
|
2017-09-23 09:41:00 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
removeListeners () {
|
2023-05-22 23:48:01 +10:00
|
|
|
document.removeEventListener('click', this.handleDocumentClick, { capture: true });
|
2017-09-24 08:40:10 +10:00
|
|
|
document.removeEventListener('touchend', this.handleDocumentClick, listenerOptions);
|
2017-09-23 09:41:00 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
setRef = c => {
|
|
|
|
this.node = c;
|
2023-01-30 11:45:35 +11:00
|
|
|
};
|
2017-09-23 09:41:00 +10:00
|
|
|
|
|
|
|
render () {
|
2019-03-30 11:41:35 +11:00
|
|
|
const { active } = this.props;
|
2017-09-23 09:41:00 +10:00
|
|
|
|
|
|
|
return (
|
2019-03-30 11:41:35 +11:00
|
|
|
<div className='emoji-picker-dropdown__modifiers__menu' style={{ display: active ? 'block' : 'none' }} ref={this.setRef}>
|
2022-11-05 23:43:37 +11:00
|
|
|
<button type='button' onClick={this.handleClick} data-index={1}><Emoji emoji='fist' set='twitter' size={22} sheetSize={32} skin={1} backgroundImageFn={backgroundImageFn} /></button>
|
|
|
|
<button type='button' onClick={this.handleClick} data-index={2}><Emoji emoji='fist' set='twitter' size={22} sheetSize={32} skin={2} backgroundImageFn={backgroundImageFn} /></button>
|
|
|
|
<button type='button' onClick={this.handleClick} data-index={3}><Emoji emoji='fist' set='twitter' size={22} sheetSize={32} skin={3} backgroundImageFn={backgroundImageFn} /></button>
|
|
|
|
<button type='button' onClick={this.handleClick} data-index={4}><Emoji emoji='fist' set='twitter' size={22} sheetSize={32} skin={4} backgroundImageFn={backgroundImageFn} /></button>
|
|
|
|
<button type='button' onClick={this.handleClick} data-index={5}><Emoji emoji='fist' set='twitter' size={22} sheetSize={32} skin={5} backgroundImageFn={backgroundImageFn} /></button>
|
|
|
|
<button type='button' onClick={this.handleClick} data-index={6}><Emoji emoji='fist' set='twitter' size={22} sheetSize={32} skin={6} backgroundImageFn={backgroundImageFn} /></button>
|
2019-03-30 11:41:35 +11:00
|
|
|
</div>
|
2017-09-23 09:41:00 +10:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2023-05-23 18:52:27 +10:00
|
|
|
class ModifierPicker extends PureComponent {
|
2017-09-23 09:41:00 +10:00
|
|
|
|
|
|
|
static propTypes = {
|
|
|
|
active: PropTypes.bool,
|
|
|
|
modifier: PropTypes.number,
|
|
|
|
onChange: PropTypes.func,
|
|
|
|
onClose: PropTypes.func,
|
|
|
|
onOpen: PropTypes.func,
|
|
|
|
};
|
|
|
|
|
|
|
|
handleClick = () => {
|
|
|
|
if (this.props.active) {
|
|
|
|
this.props.onClose();
|
|
|
|
} else {
|
|
|
|
this.props.onOpen();
|
|
|
|
}
|
2023-01-30 11:45:35 +11:00
|
|
|
};
|
2017-09-23 09:41:00 +10:00
|
|
|
|
|
|
|
handleSelect = modifier => {
|
|
|
|
this.props.onChange(modifier);
|
|
|
|
this.props.onClose();
|
2023-01-30 11:45:35 +11:00
|
|
|
};
|
2017-09-23 09:41:00 +10:00
|
|
|
|
|
|
|
render () {
|
|
|
|
const { active, modifier } = this.props;
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div className='emoji-picker-dropdown__modifiers'>
|
2019-03-30 11:41:35 +11:00
|
|
|
<Emoji emoji='fist' set='twitter' size={22} sheetSize={32} skin={modifier} onClick={this.handleClick} backgroundImageFn={backgroundImageFn} />
|
|
|
|
<ModifierPickerMenu active={active} onSelect={this.handleSelect} onClose={this.props.onClose} />
|
2017-09-23 09:41:00 +10:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2023-05-23 18:52:27 +10:00
|
|
|
class EmojiPickerMenuImpl extends PureComponent {
|
2017-09-23 09:41:00 +10:00
|
|
|
|
|
|
|
static propTypes = {
|
2017-09-23 13:40:28 +10:00
|
|
|
custom_emojis: ImmutablePropTypes.list,
|
2017-10-09 06:47:15 +11:00
|
|
|
frequentlyUsedEmojis: PropTypes.arrayOf(PropTypes.string),
|
2017-10-02 16:22:24 +11:00
|
|
|
loading: PropTypes.bool,
|
2017-09-23 09:41:00 +10:00
|
|
|
onClose: PropTypes.func.isRequired,
|
|
|
|
onPick: PropTypes.func.isRequired,
|
|
|
|
style: PropTypes.object,
|
|
|
|
intl: PropTypes.object.isRequired,
|
2017-10-08 04:02:30 +11:00
|
|
|
skinTone: PropTypes.number.isRequired,
|
|
|
|
onSkinTone: PropTypes.func.isRequired,
|
2017-09-23 09:41:00 +10:00
|
|
|
};
|
|
|
|
|
|
|
|
static defaultProps = {
|
|
|
|
style: {},
|
2017-10-02 16:22:24 +11:00
|
|
|
loading: true,
|
2017-10-09 06:47:15 +11:00
|
|
|
frequentlyUsedEmojis: [],
|
2017-09-23 09:41:00 +10:00
|
|
|
};
|
|
|
|
|
|
|
|
state = {
|
|
|
|
modifierOpen: false,
|
2022-02-17 07:44:47 +11:00
|
|
|
readyToFocus: false,
|
2017-09-23 09:41:00 +10:00
|
|
|
};
|
|
|
|
|
|
|
|
handleDocumentClick = e => {
|
|
|
|
if (this.node && !this.node.contains(e.target)) {
|
|
|
|
this.props.onClose();
|
|
|
|
}
|
2023-01-30 11:45:35 +11:00
|
|
|
};
|
2017-09-23 09:41:00 +10:00
|
|
|
|
|
|
|
componentDidMount () {
|
2023-05-22 23:48:01 +10:00
|
|
|
document.addEventListener('click', this.handleDocumentClick, { capture: true });
|
2017-09-24 08:40:10 +10:00
|
|
|
document.addEventListener('touchend', this.handleDocumentClick, listenerOptions);
|
2022-02-17 07:44:47 +11:00
|
|
|
|
|
|
|
// Because of https://github.com/react-bootstrap/react-bootstrap/issues/2614 we need
|
|
|
|
// to wait for a frame before focusing
|
|
|
|
requestAnimationFrame(() => {
|
|
|
|
this.setState({ readyToFocus: true });
|
|
|
|
if (this.node) {
|
|
|
|
const element = this.node.querySelector('input[type="search"]');
|
|
|
|
if (element) element.focus();
|
|
|
|
}
|
|
|
|
});
|
2017-09-23 09:41:00 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
componentWillUnmount () {
|
2023-05-22 23:48:01 +10:00
|
|
|
document.removeEventListener('click', this.handleDocumentClick, { capture: true });
|
2017-09-24 08:40:10 +10:00
|
|
|
document.removeEventListener('touchend', this.handleDocumentClick, listenerOptions);
|
2017-09-23 09:41:00 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
setRef = c => {
|
|
|
|
this.node = c;
|
2023-01-30 11:45:35 +11:00
|
|
|
};
|
2017-09-23 09:41:00 +10:00
|
|
|
|
|
|
|
getI18n = () => {
|
|
|
|
const { intl } = this.props;
|
|
|
|
|
|
|
|
return {
|
|
|
|
search: intl.formatMessage(messages.emoji_search),
|
|
|
|
categories: {
|
|
|
|
search: intl.formatMessage(messages.search_results),
|
|
|
|
recent: 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),
|
|
|
|
},
|
|
|
|
};
|
2023-01-30 11:45:35 +11:00
|
|
|
};
|
2017-09-23 09:41:00 +10:00
|
|
|
|
2020-06-01 04:34:34 +10:00
|
|
|
handleClick = (emoji, event) => {
|
2017-09-23 13:40:28 +10:00
|
|
|
if (!emoji.native) {
|
|
|
|
emoji.native = emoji.colons;
|
|
|
|
}
|
2020-06-20 21:30:40 +10:00
|
|
|
if (!(event.ctrlKey || event.metaKey)) {
|
2020-06-01 04:34:34 +10:00
|
|
|
this.props.onClose();
|
|
|
|
}
|
2017-09-23 09:41:00 +10:00
|
|
|
this.props.onPick(emoji);
|
2023-01-30 11:45:35 +11:00
|
|
|
};
|
2017-09-23 09:41:00 +10:00
|
|
|
|
|
|
|
handleModifierOpen = () => {
|
|
|
|
this.setState({ modifierOpen: true });
|
2023-01-30 11:45:35 +11:00
|
|
|
};
|
2017-09-23 09:41:00 +10:00
|
|
|
|
|
|
|
handleModifierClose = () => {
|
|
|
|
this.setState({ modifierOpen: false });
|
2023-01-30 11:45:35 +11:00
|
|
|
};
|
2017-09-23 09:41:00 +10:00
|
|
|
|
|
|
|
handleModifierChange = modifier => {
|
2017-10-08 04:02:30 +11:00
|
|
|
this.props.onSkinTone(modifier);
|
2023-01-30 11:45:35 +11:00
|
|
|
};
|
2017-09-23 09:41:00 +10:00
|
|
|
|
|
|
|
render () {
|
2017-11-01 08:58:07 +11:00
|
|
|
const { loading, style, intl, custom_emojis, skinTone, frequentlyUsedEmojis } = this.props;
|
2017-10-02 16:22:24 +11:00
|
|
|
|
|
|
|
if (loading) {
|
|
|
|
return <div style={{ width: 299 }} />;
|
|
|
|
}
|
|
|
|
|
2017-09-23 09:41:00 +10:00
|
|
|
const title = intl.formatMessage(messages.emoji);
|
2019-06-28 23:54:10 +10:00
|
|
|
|
2017-10-08 04:02:30 +11:00
|
|
|
const { modifierOpen } = this.state;
|
2017-09-23 09:41:00 +10:00
|
|
|
|
2019-06-28 23:54:10 +10:00
|
|
|
const categoriesSort = [
|
|
|
|
'recent',
|
|
|
|
'people',
|
|
|
|
'nature',
|
|
|
|
'foods',
|
|
|
|
'activity',
|
|
|
|
'places',
|
|
|
|
'objects',
|
|
|
|
'symbols',
|
|
|
|
'flags',
|
|
|
|
];
|
|
|
|
|
|
|
|
categoriesSort.splice(1, 0, ...Array.from(categoriesFromEmojis(custom_emojis)).sort());
|
|
|
|
|
2017-09-23 09:41:00 +10:00
|
|
|
return (
|
|
|
|
<div className={classNames('emoji-picker-dropdown__menu', { selecting: modifierOpen })} style={style} ref={this.setRef}>
|
2017-10-02 16:22:24 +11:00
|
|
|
<EmojiPicker
|
2017-09-23 09:41:00 +10:00
|
|
|
perLine={8}
|
|
|
|
emojiSize={22}
|
|
|
|
sheetSize={32}
|
2017-11-01 08:58:07 +11:00
|
|
|
custom={buildCustomEmojis(custom_emojis)}
|
2017-09-23 09:41:00 +10:00
|
|
|
color=''
|
|
|
|
emoji=''
|
|
|
|
set='twitter'
|
|
|
|
title={title}
|
|
|
|
i18n={this.getI18n()}
|
|
|
|
onClick={this.handleClick}
|
2017-10-08 04:02:30 +11:00
|
|
|
include={categoriesSort}
|
2017-10-09 06:47:15 +11:00
|
|
|
recent={frequentlyUsedEmojis}
|
2017-10-08 04:02:30 +11:00
|
|
|
skin={skinTone}
|
2017-10-03 10:56:50 +11:00
|
|
|
showPreview={false}
|
2021-06-01 22:35:49 +10:00
|
|
|
showSkinTones={false}
|
2017-09-23 09:41:00 +10:00
|
|
|
backgroundImageFn={backgroundImageFn}
|
2021-06-01 22:35:49 +10:00
|
|
|
notFound={notFoundFn}
|
2022-02-17 07:44:47 +11:00
|
|
|
autoFocus={this.state.readyToFocus}
|
2017-10-09 06:47:15 +11:00
|
|
|
emojiTooltip
|
2017-09-23 09:41:00 +10:00
|
|
|
/>
|
|
|
|
|
|
|
|
<ModifierPicker
|
|
|
|
active={modifierOpen}
|
2017-10-08 04:02:30 +11:00
|
|
|
modifier={skinTone}
|
2017-09-23 09:41:00 +10:00
|
|
|
onOpen={this.handleModifierOpen}
|
|
|
|
onClose={this.handleModifierClose}
|
|
|
|
onChange={this.handleModifierChange}
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2017-05-07 10:42:38 +10:00
|
|
|
|
2023-03-24 13:17:53 +11:00
|
|
|
const EmojiPickerMenu = injectIntl(EmojiPickerMenuImpl);
|
|
|
|
|
2023-05-23 18:52:27 +10:00
|
|
|
class EmojiPickerDropdown extends PureComponent {
|
2017-03-02 10:57:55 +11:00
|
|
|
|
2017-05-12 22:44:10 +10:00
|
|
|
static propTypes = {
|
2017-09-23 13:40:28 +10:00
|
|
|
custom_emojis: ImmutablePropTypes.list,
|
2017-10-09 06:47:15 +11:00
|
|
|
frequentlyUsedEmojis: PropTypes.arrayOf(PropTypes.string),
|
2017-05-12 22:44:10 +10:00
|
|
|
intl: PropTypes.object.isRequired,
|
2017-05-21 01:31:47 +10:00
|
|
|
onPickEmoji: PropTypes.func.isRequired,
|
2017-10-08 04:02:30 +11:00
|
|
|
onSkinTone: PropTypes.func.isRequired,
|
|
|
|
skinTone: PropTypes.number.isRequired,
|
2020-01-24 08:00:13 +11:00
|
|
|
button: PropTypes.node,
|
2017-05-12 22:44:10 +10:00
|
|
|
};
|
|
|
|
|
|
|
|
state = {
|
|
|
|
active: false,
|
2017-10-02 16:22:24 +11:00
|
|
|
loading: false,
|
2017-05-12 22:44:10 +10:00
|
|
|
};
|
2017-03-02 10:57:55 +11:00
|
|
|
|
2017-05-12 22:44:10 +10:00
|
|
|
setRef = (c) => {
|
2017-03-02 10:57:55 +11:00
|
|
|
this.dropdown = c;
|
2023-01-30 11:45:35 +11:00
|
|
|
};
|
2017-03-02 10:57:55 +11:00
|
|
|
|
2023-01-12 07:58:46 +11:00
|
|
|
onShowDropdown = () => {
|
2017-06-02 01:25:10 +10:00
|
|
|
this.setState({ active: true });
|
2017-10-02 16:22:24 +11:00
|
|
|
|
|
|
|
if (!EmojiPicker) {
|
|
|
|
this.setState({ loading: true });
|
|
|
|
|
|
|
|
EmojiPickerAsync().then(EmojiMart => {
|
|
|
|
EmojiPicker = EmojiMart.Picker;
|
2017-10-08 04:02:30 +11:00
|
|
|
Emoji = EmojiMart.Emoji;
|
|
|
|
|
2017-10-02 16:22:24 +11:00
|
|
|
this.setState({ loading: false });
|
|
|
|
}).catch(() => {
|
2020-08-09 01:57:56 +10:00
|
|
|
this.setState({ loading: false, active: false });
|
2017-10-02 16:22:24 +11:00
|
|
|
});
|
|
|
|
}
|
2023-01-30 11:45:35 +11:00
|
|
|
};
|
2017-05-07 10:42:38 +10:00
|
|
|
|
2017-05-12 22:44:10 +10:00
|
|
|
onHideDropdown = () => {
|
2017-06-02 01:25:10 +10:00
|
|
|
this.setState({ active: false });
|
2023-01-30 11:45:35 +11:00
|
|
|
};
|
2017-05-07 10:42:38 +10:00
|
|
|
|
2017-07-28 12:37:30 +10:00
|
|
|
onToggle = (e) => {
|
2017-10-02 16:22:24 +11:00
|
|
|
if (!this.state.loading && (!e.key || e.key === 'Enter')) {
|
2017-07-28 12:37:30 +10:00
|
|
|
if (this.state.active) {
|
|
|
|
this.onHideDropdown();
|
|
|
|
} else {
|
2018-05-03 18:42:18 +10:00
|
|
|
this.onShowDropdown(e);
|
2017-07-28 12:37:30 +10:00
|
|
|
}
|
|
|
|
}
|
2023-01-30 11:45:35 +11:00
|
|
|
};
|
2017-07-28 12:37:30 +10:00
|
|
|
|
2017-09-23 09:41:00 +10:00
|
|
|
handleKeyDown = e => {
|
2017-07-28 12:37:30 +10:00
|
|
|
if (e.key === 'Escape') {
|
|
|
|
this.onHideDropdown();
|
|
|
|
}
|
2023-01-30 11:45:35 +11:00
|
|
|
};
|
2017-07-28 12:37:30 +10:00
|
|
|
|
2017-09-23 09:41:00 +10:00
|
|
|
setTargetRef = c => {
|
|
|
|
this.target = c;
|
2023-01-30 11:45:35 +11:00
|
|
|
};
|
2017-03-02 10:57:55 +11:00
|
|
|
|
2017-09-23 09:41:00 +10:00
|
|
|
findTarget = () => {
|
|
|
|
return this.target;
|
2023-01-30 11:45:35 +11:00
|
|
|
};
|
2017-04-23 01:28:36 +10:00
|
|
|
|
2017-09-23 09:41:00 +10:00
|
|
|
render () {
|
2020-01-24 08:00:13 +11:00
|
|
|
const { intl, onPickEmoji, onSkinTone, skinTone, frequentlyUsedEmojis, button } = this.props;
|
2017-07-28 12:37:30 +10:00
|
|
|
const title = intl.formatMessage(messages.emoji);
|
2023-01-12 07:58:46 +11:00
|
|
|
const { active, loading } = this.state;
|
2017-05-07 10:42:38 +10:00
|
|
|
|
2017-03-02 10:57:55 +11:00
|
|
|
return (
|
2017-09-23 09:41:00 +10:00
|
|
|
<div className='emoji-picker-dropdown' onKeyDown={this.handleKeyDown}>
|
|
|
|
<div ref={this.setTargetRef} className='emoji-button' title={title} aria-label={title} aria-expanded={active} role='button' onClick={this.onToggle} onKeyDown={this.onToggle} tabIndex={0}>
|
2020-01-24 08:00:13 +11:00
|
|
|
{button || <img
|
2017-10-02 16:22:24 +11:00
|
|
|
className={classNames('emojione', { 'pulse-loading': active && loading })}
|
2017-07-15 03:47:53 +10:00
|
|
|
alt='🙂'
|
2023-06-22 01:58:00 +10:00
|
|
|
src={`${assetHost}/emoji/1f642.svg`}
|
2020-01-24 08:00:13 +11:00
|
|
|
/>}
|
2017-09-23 09:41:00 +10:00
|
|
|
</div>
|
|
|
|
|
2023-01-12 07:58:46 +11:00
|
|
|
<Overlay show={active} placement={'bottom'} target={this.findTarget} popperConfig={{ strategy: 'fixed' }}>
|
|
|
|
{({ props, placement })=> (
|
|
|
|
<div {...props} style={{ ...props.style, width: 299 }}>
|
|
|
|
<div className={`dropdown-animation ${placement}`}>
|
|
|
|
<EmojiPickerMenu
|
|
|
|
custom_emojis={this.props.custom_emojis}
|
|
|
|
loading={loading}
|
|
|
|
onClose={this.onHideDropdown}
|
|
|
|
onPick={onPickEmoji}
|
|
|
|
onSkinTone={onSkinTone}
|
|
|
|
skinTone={skinTone}
|
|
|
|
frequentlyUsedEmojis={frequentlyUsedEmojis}
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
)}
|
2017-09-23 09:41:00 +10:00
|
|
|
</Overlay>
|
|
|
|
</div>
|
2017-03-02 10:57:55 +11:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-04-22 04:05:35 +10:00
|
|
|
}
|
2023-03-24 13:17:53 +11:00
|
|
|
|
|
|
|
export default injectIntl(EmojiPickerDropdown);
|