mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-12 04:25:31 +08:00
31 lines
790 B
JavaScript
31 lines
790 B
JavaScript
import {Actions, React, ReactDOM} from 'nylas-exports';
|
|
import {RetinaImg} from 'nylas-component-kit';
|
|
|
|
import EmojiButtonPopover from './emoji-button-popover';
|
|
|
|
|
|
class EmojiButton extends React.Component {
|
|
static displayName = 'EmojiButton';
|
|
|
|
onClick = () => {
|
|
const buttonRect = ReactDOM.findDOMNode(this).getBoundingClientRect();
|
|
Actions.openPopover(
|
|
<EmojiButtonPopover />,
|
|
{originRect: buttonRect, direction: 'up'}
|
|
)
|
|
}
|
|
|
|
render() {
|
|
return (
|
|
<button tabIndex={-1} className="btn btn-toolbar btn-emoji" title="Insert emoji…" onClick={this.onClick}>
|
|
<RetinaImg name="icon-composer-emoji.png" mode={RetinaImg.Mode.ContentIsMask} />
|
|
</button>
|
|
);
|
|
}
|
|
}
|
|
|
|
EmojiButton.containerStyles = {
|
|
order: 2,
|
|
};
|
|
|
|
export default EmojiButton;
|