2017-05-03 00:04:16 +00:00
|
|
|
import React from 'react';
|
2017-03-01 23:57:55 +00:00
|
|
|
import Dropdown, { DropdownTrigger, DropdownContent } from 'react-simple-dropdown';
|
2017-04-21 18:05:35 +00:00
|
|
|
import PropTypes from 'prop-types';
|
2017-03-01 23:57:55 +00:00
|
|
|
import { defineMessages, injectIntl } from 'react-intl';
|
2017-07-07 22:06:02 +00:00
|
|
|
import { EmojiPicker as EmojiPickerAsync } from '../../ui/util/async-components';
|
2017-03-01 23:57:55 +00:00
|
|
|
|
|
|
|
const messages = defineMessages({
|
2017-04-22 01:36:33 +00:00
|
|
|
emoji: { id: 'emoji_button.label', defaultMessage: 'Insert emoji' },
|
2017-04-22 15:28:36 +00:00
|
|
|
emoji_search: { id: 'emoji_button.search', defaultMessage: 'Search...' },
|
|
|
|
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-20 15:31:47 +00:00
|
|
|
flags: { id: 'emoji_button.flags', defaultMessage: 'Flags' },
|
2017-03-01 23:57:55 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
const settings = {
|
|
|
|
imageType: 'png',
|
|
|
|
sprites: false,
|
2017-05-20 15:31:47 +00:00
|
|
|
imagePathPNG: '/emoji/',
|
2017-03-01 23:57:55 +00:00
|
|
|
};
|
|
|
|
|
2017-05-07 00:42:38 +00:00
|
|
|
let EmojiPicker; // load asynchronously
|
|
|
|
|
2017-06-23 17:36:54 +00:00
|
|
|
@injectIntl
|
|
|
|
export default class EmojiPickerDropdown extends React.PureComponent {
|
2017-03-01 23:57:55 +00:00
|
|
|
|
2017-05-12 12:44:10 +00:00
|
|
|
static propTypes = {
|
|
|
|
intl: PropTypes.object.isRequired,
|
2017-05-20 15:31:47 +00:00
|
|
|
onPickEmoji: PropTypes.func.isRequired,
|
2017-05-12 12:44:10 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
state = {
|
|
|
|
active: false,
|
2017-05-20 15:31:47 +00:00
|
|
|
loading: false,
|
2017-05-12 12:44:10 +00:00
|
|
|
};
|
2017-03-01 23:57:55 +00:00
|
|
|
|
2017-05-12 12:44:10 +00:00
|
|
|
setRef = (c) => {
|
2017-03-01 23:57:55 +00:00
|
|
|
this.dropdown = c;
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|
2017-03-01 23:57:55 +00:00
|
|
|
|
2017-05-12 12:44:10 +00:00
|
|
|
handleChange = (data) => {
|
2017-03-01 23:57:55 +00:00
|
|
|
this.dropdown.hide();
|
|
|
|
this.props.onPickEmoji(data);
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|
2017-03-01 23:57:55 +00:00
|
|
|
|
2017-05-12 12:44:10 +00:00
|
|
|
onShowDropdown = () => {
|
2017-06-01 15:25:10 +00:00
|
|
|
this.setState({ active: true });
|
2017-05-07 00:42:38 +00:00
|
|
|
if (!EmojiPicker) {
|
2017-06-01 15:25:10 +00:00
|
|
|
this.setState({ loading: true });
|
2017-07-07 22:06:02 +00:00
|
|
|
EmojiPickerAsync().then(TheEmojiPicker => {
|
2017-05-07 00:42:38 +00:00
|
|
|
EmojiPicker = TheEmojiPicker.default;
|
2017-06-01 15:25:10 +00:00
|
|
|
this.setState({ loading: false });
|
2017-06-23 14:05:04 +00:00
|
|
|
}).catch(() => {
|
2017-05-07 00:42:38 +00:00
|
|
|
// TODO: show the user an error?
|
2017-06-01 15:25:10 +00:00
|
|
|
this.setState({ loading: false });
|
2017-05-07 00:42:38 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-12 12:44:10 +00:00
|
|
|
onHideDropdown = () => {
|
2017-06-01 15:25:10 +00:00
|
|
|
this.setState({ active: false });
|
2017-05-07 00:42:38 +00:00
|
|
|
}
|
|
|
|
|
2017-07-28 02:37:30 +00:00
|
|
|
onToggle = (e) => {
|
|
|
|
if (!this.state.loading && (!e.key || e.key === 'Enter')) {
|
|
|
|
if (this.state.active) {
|
|
|
|
this.onHideDropdown();
|
|
|
|
} else {
|
|
|
|
this.onShowDropdown();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
onEmojiPickerKeyDown = (e) => {
|
|
|
|
if (e.key === 'Escape') {
|
|
|
|
this.onHideDropdown();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-01 23:57:55 +00:00
|
|
|
render () {
|
|
|
|
const { intl } = this.props;
|
|
|
|
|
2017-04-22 15:28:36 +00:00
|
|
|
const categories = {
|
|
|
|
people: {
|
|
|
|
title: intl.formatMessage(messages.people),
|
|
|
|
emoji: 'smile',
|
|
|
|
},
|
|
|
|
nature: {
|
|
|
|
title: intl.formatMessage(messages.nature),
|
|
|
|
emoji: 'hamster',
|
|
|
|
},
|
|
|
|
food: {
|
|
|
|
title: intl.formatMessage(messages.food),
|
|
|
|
emoji: 'pizza',
|
|
|
|
},
|
|
|
|
activity: {
|
|
|
|
title: intl.formatMessage(messages.activity),
|
|
|
|
emoji: 'soccer',
|
|
|
|
},
|
|
|
|
travel: {
|
|
|
|
title: intl.formatMessage(messages.travel),
|
|
|
|
emoji: 'earth_americas',
|
|
|
|
},
|
|
|
|
objects: {
|
|
|
|
title: intl.formatMessage(messages.objects),
|
|
|
|
emoji: 'bulb',
|
|
|
|
},
|
|
|
|
symbols: {
|
|
|
|
title: intl.formatMessage(messages.symbols),
|
|
|
|
emoji: 'clock9',
|
|
|
|
},
|
|
|
|
flags: {
|
|
|
|
title: intl.formatMessage(messages.flags),
|
|
|
|
emoji: 'flag_gb',
|
2017-05-20 15:31:47 +00:00
|
|
|
},
|
|
|
|
};
|
2017-04-22 15:28:36 +00:00
|
|
|
|
2017-05-07 00:42:38 +00:00
|
|
|
const { active, loading } = this.state;
|
2017-07-28 02:37:30 +00:00
|
|
|
const title = intl.formatMessage(messages.emoji);
|
2017-05-07 00:42:38 +00:00
|
|
|
|
2017-03-01 23:57:55 +00:00
|
|
|
return (
|
2017-07-28 02:37:30 +00:00
|
|
|
<Dropdown ref={this.setRef} className='emoji-picker__dropdown' active={active && !loading} onShow={this.onShowDropdown} onHide={this.onHideDropdown}>
|
2017-07-28 23:58:53 +00:00
|
|
|
<DropdownTrigger className='emoji-button' title={title} aria-label={title} aria-expanded={active} role='button' onKeyDown={this.onToggle} tabIndex={0} >
|
2017-06-06 11:20:07 +00:00
|
|
|
<img
|
|
|
|
className={`emojione ${active && loading ? 'pulse-loading' : ''}`}
|
2017-07-14 17:47:53 +00:00
|
|
|
alt='🙂'
|
|
|
|
src='/emoji/1f602.svg'
|
2017-06-06 11:20:07 +00:00
|
|
|
/>
|
2017-03-01 23:57:55 +00:00
|
|
|
</DropdownTrigger>
|
2017-07-14 17:47:53 +00:00
|
|
|
|
2017-05-01 16:13:10 +00:00
|
|
|
<DropdownContent className='dropdown__left'>
|
2017-05-07 00:42:38 +00:00
|
|
|
{
|
|
|
|
this.state.active && !this.state.loading &&
|
2017-07-28 02:37:30 +00:00
|
|
|
(<EmojiPicker emojione={settings} onChange={this.handleChange} searchPlaceholder={intl.formatMessage(messages.emoji_search)} onKeyDown={this.onEmojiPickerKeyDown} categories={categories} search />)
|
2017-05-07 00:42:38 +00:00
|
|
|
}
|
2017-03-01 23:57:55 +00:00
|
|
|
</DropdownContent>
|
|
|
|
</Dropdown>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|