pinafore/routes/_components/compose/ComposeToolbar.html

95 lines
2.6 KiB
HTML
Raw Normal View History

2018-02-27 05:50:03 +00:00
<div class="compose-box-toolbar">
2018-03-25 01:04:54 +00:00
<div class="compose-box-toolbar-items">
<IconButton
label="Insert emoji"
href="#fa-smile"
on:click="onEmojiClick()"
/>
<IconButton
svgClassName={$uploadingMedia ? 'spin' : ''}
2018-03-25 01:04:54 +00:00
label="Add media"
href={$uploadingMedia ? '#fa-spinner' : '#fa-camera'}
2018-03-25 01:04:54 +00:00
on:click="onMediaClick()"
disabled={$uploadingMedia || (media.length === 4)}
2018-03-25 01:04:54 +00:00
/>
<IconButton
label="Adjust privacy (currently {postPrivacy.label})"
href={postPrivacy.icon}
2018-03-25 01:04:54 +00:00
on:click="onPostPrivacyClick()"
/>
<IconButton
label={contentWarningShown ? 'Remove content warning' : 'Add content warning'}
2018-03-25 01:04:54 +00:00
href="#fa-exclamation-triangle"
on:click="onContentWarningClick()"
pressable="true"
pressed={contentWarningShown}
2018-03-25 01:04:54 +00:00
/>
</div>
2018-03-01 17:02:42 +00:00
<input ref:input
2018-03-01 17:29:11 +00:00
on:change="onFileChange(event)"
2018-03-01 17:02:42 +00:00
style="display: none;"
type="file"
accept=".jpg,.jpeg,.png,.gif,.webm,.mp4,.m4v,image/jpeg,image/png,image/gif,video/webm,video/mp4">
<ComposeAutosuggest {realm} {text} />
2018-02-27 05:50:03 +00:00
</div>
<style>
.compose-box-toolbar {
grid-area: toolbar;
2018-03-25 01:04:54 +00:00
position: relative;
2018-02-27 05:50:03 +00:00
align-self: center;
2018-03-25 01:04:54 +00:00
}
.compose-box-toolbar-items {
2018-02-27 05:50:03 +00:00
display: flex;
align-items: center;
}
</style>
<script>
import IconButton from '../IconButton.html'
2018-02-28 07:18:07 +00:00
import { store } from '../../_store/store'
import { importShowEmojiDialog, importShowPostPrivacyDialog } from '../dialog/asyncDialogs'
2018-03-02 05:21:49 +00:00
import { doMediaUpload } from '../../_actions/media'
2018-03-03 23:44:43 +00:00
import { toggleContentWarningShown } from '../../_actions/contentWarnings'
2018-03-25 01:04:54 +00:00
import ComposeAutosuggest from './ComposeAutosuggest.html'
2018-02-28 07:18:07 +00:00
2018-02-27 05:50:03 +00:00
export default {
2018-04-20 04:38:01 +00:00
oncreate () {
// for testing
window.__fakeFileInput = (file) => {
this.onFileChange({
target: {
files: [file]
}
})
2018-03-03 01:54:38 +00:00
}
},
2018-02-27 05:50:03 +00:00
components: {
2018-03-25 01:04:54 +00:00
IconButton,
ComposeAutosuggest
2018-02-28 07:18:07 +00:00
},
store: () => store,
methods: {
2018-04-20 04:38:01 +00:00
async onEmojiClick () {
let { realm } = this.get()
let showEmojiDialog = await importShowEmojiDialog()
showEmojiDialog(realm)
2018-03-01 17:02:42 +00:00
},
2018-04-20 04:38:01 +00:00
onMediaClick () {
2018-03-01 17:02:42 +00:00
this.refs.input.click()
2018-03-01 17:29:11 +00:00
},
2018-04-20 04:38:01 +00:00
onFileChange (e) {
2018-03-01 17:29:11 +00:00
let file = e.target.files[0]
let { realm } = this.get()
doMediaUpload(realm, file)
2018-03-03 21:23:26 +00:00
},
2018-04-20 04:38:01 +00:00
async onPostPrivacyClick () {
let { realm } = this.get()
let showPostPrivacyDialog = await importShowPostPrivacyDialog()
showPostPrivacyDialog(realm)
2018-03-03 23:44:43 +00:00
},
2018-04-20 04:38:01 +00:00
onContentWarningClick () {
let { realm } = this.get()
toggleContentWarningShown(realm)
2018-02-28 07:18:07 +00:00
}
2018-02-27 05:50:03 +00:00
}
}
</script>