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';
|
|
|
|
|
|
|
|
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' },
|
|
|
|
flags: { id: 'emoji_button.flags', defaultMessage: 'Flags' }
|
2017-03-01 23:57:55 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
const settings = {
|
|
|
|
imageType: 'png',
|
|
|
|
sprites: false,
|
|
|
|
imagePathPNG: '/emoji/'
|
|
|
|
};
|
|
|
|
|
2017-04-23 02:26:55 +00:00
|
|
|
const dropdownStyle = {
|
2017-03-24 23:01:43 +00:00
|
|
|
position: 'absolute',
|
|
|
|
right: '5px',
|
|
|
|
top: '5px'
|
|
|
|
};
|
|
|
|
|
2017-04-23 02:26:55 +00:00
|
|
|
const dropdownTriggerStyle = {
|
|
|
|
display: 'block',
|
|
|
|
fontSize: '24px',
|
|
|
|
lineHeight: '24px',
|
|
|
|
marginLeft: '2px',
|
|
|
|
width: '24px'
|
|
|
|
}
|
|
|
|
|
2017-05-07 00:42:38 +00:00
|
|
|
let EmojiPicker; // load asynchronously
|
|
|
|
|
2017-04-21 18:05:35 +00:00
|
|
|
class EmojiPickerDropdown extends React.PureComponent {
|
2017-03-01 23:57:55 +00:00
|
|
|
|
2017-04-21 18:05:35 +00:00
|
|
|
constructor (props, context) {
|
|
|
|
super(props, context);
|
|
|
|
this.setRef = this.setRef.bind(this);
|
|
|
|
this.handleChange = this.handleChange.bind(this);
|
2017-05-07 00:42:38 +00:00
|
|
|
this.onHideDropdown = this.onHideDropdown.bind(this);
|
|
|
|
this.onShowDropdown = this.onShowDropdown.bind(this);
|
|
|
|
this.state = {
|
|
|
|
active: false,
|
|
|
|
loading: false
|
|
|
|
};
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|
2017-03-01 23:57:55 +00:00
|
|
|
|
|
|
|
setRef (c) {
|
|
|
|
this.dropdown = c;
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|
2017-03-01 23:57:55 +00:00
|
|
|
|
|
|
|
handleChange (data) {
|
|
|
|
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-07 00:42:38 +00:00
|
|
|
onShowDropdown () {
|
|
|
|
this.setState({active: true});
|
|
|
|
if (!EmojiPicker) {
|
|
|
|
this.setState({loading: true});
|
|
|
|
import('emojione-picker').then(TheEmojiPicker => {
|
|
|
|
EmojiPicker = TheEmojiPicker.default;
|
|
|
|
this.setState({loading: false});
|
|
|
|
}).catch(err => {
|
|
|
|
// TODO: show the user an error?
|
|
|
|
this.setState({loading: false});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
onHideDropdown () {
|
|
|
|
this.setState({active: false});
|
|
|
|
}
|
|
|
|
|
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-07 00:42:38 +00:00
|
|
|
const { active, loading } = this.state;
|
|
|
|
|
2017-03-01 23:57:55 +00:00
|
|
|
return (
|
2017-05-07 00:42:38 +00:00
|
|
|
<Dropdown ref={this.setRef} style={dropdownStyle} onShow={this.onShowDropdown} onHide={this.onHideDropdown}>
|
2017-04-23 02:26:55 +00:00
|
|
|
<DropdownTrigger className='emoji-button' title={intl.formatMessage(messages.emoji)} style={dropdownTriggerStyle}>
|
2017-05-07 00:42:38 +00:00
|
|
|
<img draggable="false"
|
|
|
|
className={`emojione ${active && loading ? "pulse-loading" : ''}`}
|
|
|
|
alt="🙂" src="/emoji/1f602.svg" />
|
2017-03-01 23:57:55 +00:00
|
|
|
</DropdownTrigger>
|
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 &&
|
|
|
|
(<EmojiPicker emojione={settings} onChange={this.handleChange} searchPlaceholder={intl.formatMessage(messages.emoji_search)} categories={categories} search={true} />)
|
|
|
|
}
|
2017-03-01 23:57:55 +00:00
|
|
|
</DropdownContent>
|
|
|
|
</Dropdown>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
EmojiPickerDropdown.propTypes = {
|
|
|
|
intl: PropTypes.object.isRequired,
|
|
|
|
onPickEmoji: PropTypes.func.isRequired
|
|
|
|
};
|
2017-03-01 23:57:55 +00:00
|
|
|
|
|
|
|
export default injectIntl(EmojiPickerDropdown);
|