Pinafore-Web-Client-Frontend/src/routes/_components/compose/ComposeToolbar.html

137 lines
3.9 KiB
HTML
Raw Normal View History

2018-02-27 06:50:03 +01:00
<div class="compose-box-toolbar">
2018-03-25 03:04:54 +02:00
<div class="compose-box-toolbar-items">
<IconButton
className="compose-toolbar-button"
label="{intl.addEmoji}"
2018-03-25 03:04:54 +02:00
href="#fa-smile"
on:click="onEmojiClick()"
/>
<IconButton
className="compose-toolbar-button"
svgClassName={$uploadingMedia ? 'spin' : ''}
label="{intl.addMedia}"
href={$uploadingMedia ? '#fa-spinner' : '#fa-camera'}
2018-03-25 03:04:54 +02:00
on:click="onMediaClick()"
disabled={$uploadingMedia || (media.length === 4)}
2018-03-25 03:04:54 +02:00
/>
<IconButton
className="compose-toolbar-button"
label="{intl.addPoll}"
pressedLabel="{intl.removePoll}"
href="#fa-bar-chart"
on:click="onPollClick()"
pressable={true}
pressed={poll && poll.options && poll.options.length}
/>
2018-03-25 03:04:54 +02:00
<IconButton
className="compose-toolbar-button"
label={postPrivacyLabel}
href={postPrivacy.icon}
2018-03-25 03:04:54 +02:00
on:click="onPostPrivacyClick()"
/>
<IconButton
className="compose-toolbar-button"
label="{intl.addContentWarning}"
pressedLabel="{intl.removeContentWarning}"
2018-03-25 03:04:54 +02:00
href="#fa-exclamation-triangle"
on:click="onContentWarningClick()"
pressable={true}
pressed={contentWarningShown}
2018-03-25 03:04:54 +02:00
/>
</div>
2018-03-01 18:02:42 +01:00
<input ref:input
2018-03-01 18:29:11 +01:00
on:change="onFileChange(event)"
2018-03-01 18:02:42 +01:00
style="display: none;"
type="file"
multiple
accept={mediaAccept} >
2018-02-27 06:50:03 +01:00
</div>
<style>
.compose-box-toolbar {
grid-area: toolbar;
align-self: center;
2018-03-25 03:04:54 +02:00
}
.compose-box-toolbar-items {
2018-02-27 06:50:03 +01:00
display: flex;
align-items: center;
}
@media (max-width: 320px) {
:global(button.icon-button.compose-toolbar-button) {
padding-left: 5px;
padding-right: 5px;
}
}
@media (max-width: 240px) {
:global(button.icon-button.compose-toolbar-button .icon-button-svg) {
width: 20px;
height: 20px;
}
}
2018-02-27 06:50:03 +01:00
</style>
<script>
import IconButton from '../IconButton.html'
2018-02-28 08:18:07 +01:00
import { store } from '../../_store/store'
import { importShowEmojiDialog } from '../dialog/asyncDialogs/importShowEmojiDialog'
import { importShowPostPrivacyDialog } from '../dialog/asyncDialogs/importShowPostPrivacyDialog'
2018-03-02 06:21:49 +01:00
import { doMediaUpload } from '../../_actions/media'
2018-03-04 00:44:43 +01:00
import { toggleContentWarningShown } from '../../_actions/contentWarnings'
import { mediaAccept } from '../../_static/media'
import { enablePoll, disablePoll } from '../../_actions/composePoll'
import { updateCustomEmojiForInstance } from '../../_actions/emoji'
import { formatIntl } from '../../_utils/formatIntl'
2018-02-28 08:18:07 +01:00
2018-02-27 06:50:03 +01:00
export default {
components: {
IconButton
2018-02-28 08:18:07 +01:00
},
data: () => ({
mediaAccept
}),
computed: {
postPrivacyLabel: ({ postPrivacy }) => (
formatIntl('intl.postPrivacyLabel', { label: postPrivacy.label })
)
},
2018-02-28 08:18:07 +01:00
store: () => store,
methods: {
2018-04-20 06:38:01 +02:00
async onEmojiClick () {
2019-08-03 22:49:37 +02:00
const { realm } = this.get()
const { currentInstance } = this.store.get()
const [showEmojiDialog] = await Promise.all([
importShowEmojiDialog(),
updateCustomEmojiForInstance(currentInstance)
])
showEmojiDialog(realm)
2018-03-01 18:02:42 +01:00
},
2018-04-20 06:38:01 +02:00
onMediaClick () {
2018-03-01 18:02:42 +01:00
this.refs.input.click()
2018-03-01 18:29:11 +01:00
},
async onFileChange (e) {
const { files } = e.target
2019-08-03 22:49:37 +02:00
const { realm } = this.get()
for (const file of files) {
await doMediaUpload(realm, file)
}
2018-03-03 22:23:26 +01:00
},
2018-04-20 06:38:01 +02:00
async onPostPrivacyClick () {
2019-08-03 22:49:37 +02:00
const { realm } = this.get()
const showPostPrivacyDialog = await importShowPostPrivacyDialog()
showPostPrivacyDialog(realm)
2018-03-04 00:44:43 +01:00
},
2018-04-20 06:38:01 +02:00
onContentWarningClick () {
2019-08-03 22:49:37 +02:00
const { realm } = this.get()
toggleContentWarningShown(realm)
},
onPollClick () {
2019-08-03 22:49:37 +02:00
const { poll, realm } = this.get()
if (poll && poll.options && poll.options.length) {
disablePoll(realm)
} else {
enablePoll(realm)
}
2018-02-28 08:18:07 +01:00
}
2018-02-27 06:50:03 +01:00
}
}
</script>