pinafore/routes/_components/compose/ComposeToolbar.html

38 lines
1013 B
HTML
Raw Normal View History

2018-02-27 06:50:03 +01:00
<div class="compose-box-toolbar">
2018-02-28 08:18:07 +01:00
<IconButton
label="Insert emoji"
href="#fa-smile"
on:click="onEmojiClick()"
/>
2018-02-27 06:50:03 +01:00
<IconButton label="Add media" href="#fa-camera" />
<IconButton label="Adjust privacy" href="#fa-globe" />
<IconButton label="Add content warning" href="#fa-exclamation-triangle" />
</div>
<style>
.compose-box-toolbar {
grid-area: toolbar;
align-self: center;
display: flex;
align-items: center;
}
</style>
<script>
import IconButton from '../IconButton.html'
2018-02-28 08:18:07 +01:00
import { store } from '../../_store/store'
import { updateCustomEmojiForInstance } from '../../_actions/emoji'
import { importDialogs } from '../../_utils/asyncModules'
2018-02-27 06:50:03 +01:00
export default {
components: {
IconButton
2018-02-28 08:18:07 +01:00
},
store: () => store,
methods: {
async onEmojiClick() {
/* no await */ updateCustomEmojiForInstance(this.store.get('currentInstance'))
let dialogs = await importDialogs()
dialogs.showEmojiDialog()
}
2018-02-27 06:50:03 +01:00
}
}
</script>