mirror of
https://github.com/cheeaun/phanpy.git
synced 2024-12-25 03:38:15 +03:00
27 lines
612 B
JavaScript
27 lines
612 B
JavaScript
import openCompose from '../utils/open-compose';
|
|
import states from '../utils/states';
|
|
|
|
import Icon from './icon';
|
|
|
|
export default function ComposeButton() {
|
|
return (
|
|
<button
|
|
type="button"
|
|
id="compose-button"
|
|
onClick={(e) => {
|
|
if (e.shiftKey) {
|
|
const newWin = openCompose();
|
|
|
|
if (!newWin) {
|
|
alert('Looks like your browser is blocking popups.');
|
|
states.showCompose = true;
|
|
}
|
|
} else {
|
|
states.showCompose = true;
|
|
}
|
|
}}
|
|
>
|
|
<Icon icon="quill" size="xl" alt="Compose" />
|
|
</button>
|
|
);
|
|
}
|