2018-02-11 10:06:17 -06:00
|
|
|
<template>
|
|
|
|
<div class="mk-post-form"
|
2018-02-12 03:49:06 -06:00
|
|
|
@dragover.prevent.stop="onDragover"
|
2018-02-11 10:06:17 -06:00
|
|
|
@dragenter="onDragenter"
|
|
|
|
@dragleave="onDragleave"
|
2018-02-12 03:49:06 -06:00
|
|
|
@drop.prevent.stop="onDrop"
|
2018-02-11 10:06:17 -06:00
|
|
|
>
|
|
|
|
<div class="content">
|
2018-02-12 03:49:06 -06:00
|
|
|
<textarea :class="{ with: (files.length != 0 || poll) }"
|
|
|
|
ref="text" v-model="text" :disabled="posting"
|
2018-02-11 10:06:17 -06:00
|
|
|
@keydown="onKeydown" @paste="onPaste" :placeholder="placeholder"
|
|
|
|
></textarea>
|
|
|
|
<div class="medias" :class="{ with: poll }" v-show="files.length != 0">
|
|
|
|
<ul ref="media">
|
2018-02-11 21:21:26 -06:00
|
|
|
<li v-for="file in files" :key="file.id">
|
|
|
|
<div class="img" :style="{ backgroundImage: `url(${file.url}?thumbnail&size=64)` }" :title="file.name"></div>
|
2018-02-12 03:49:06 -06:00
|
|
|
<img class="remove" @click="detachMedia(file.id)" src="/assets/desktop/remove.png" title="%i18n:desktop.tags.mk-post-form.attach-cancel%" alt=""/>
|
2018-02-11 10:06:17 -06:00
|
|
|
</li>
|
|
|
|
</ul>
|
2018-02-11 21:21:26 -06:00
|
|
|
<p class="remain">{{ 4 - files.length }}/4</p>
|
2018-02-11 10:06:17 -06:00
|
|
|
</div>
|
2018-02-12 03:49:06 -06:00
|
|
|
<mk-poll-editor v-if="poll" ref="poll" @destroyed="poll = false"/>
|
2018-02-11 10:06:17 -06:00
|
|
|
</div>
|
2018-02-12 03:49:06 -06:00
|
|
|
<mk-uploader @uploaded="attachMedia" @change="onChangeUploadings"/>
|
2018-02-16 00:38:12 -06:00
|
|
|
<button class="upload" title="%i18n:desktop.tags.mk-post-form.attach-media-from-local%" @click="chooseFile">%fa:upload%</button>
|
|
|
|
<button class="drive" title="%i18n:desktop.tags.mk-post-form.attach-media-from-drive%" @click="chooseFileFromDrive">%fa:cloud%</button>
|
2018-02-11 10:06:17 -06:00
|
|
|
<button class="kao" title="%i18n:desktop.tags.mk-post-form.insert-a-kao%" @click="kao">%fa:R smile%</button>
|
2018-02-12 03:49:06 -06:00
|
|
|
<button class="poll" title="%i18n:desktop.tags.mk-post-form.create-poll%" @click="poll = true">%fa:chart-pie%</button>
|
2018-02-14 04:21:15 -06:00
|
|
|
<p class="text-count" :class="{ over: text.length > 1000 }">{{ '%i18n:desktop.tags.mk-post-form.text-remain%'.replace('{}', 1000 - text.length) }}</p>
|
2018-02-16 00:38:12 -06:00
|
|
|
<button :class="{ posting }" class="submit" :disabled="!canPost" @click="post">
|
2018-02-12 03:49:06 -06:00
|
|
|
{{ posting ? '%i18n:desktop.tags.mk-post-form.posting%' : submitText }}<mk-ellipsis v-if="posting"/>
|
2018-02-11 10:06:17 -06:00
|
|
|
</button>
|
2018-02-12 03:49:06 -06:00
|
|
|
<input ref="file" type="file" accept="image/*" multiple="multiple" tabindex="-1" @change="onChangeFile"/>
|
2018-02-11 10:06:17 -06:00
|
|
|
<div class="dropzone" v-if="draghover"></div>
|
|
|
|
</div>
|
|
|
|
</template>
|
2018-02-11 21:21:26 -06:00
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
2018-02-15 12:23:10 -06:00
|
|
|
import * as Sortable from 'sortablejs';
|
2018-02-12 03:49:06 -06:00
|
|
|
import Autocomplete from '../../scripts/autocomplete';
|
|
|
|
import getKao from '../../../common/scripts/get-kao';
|
|
|
|
import notify from '../../scripts/notify';
|
2018-02-11 21:21:26 -06:00
|
|
|
|
|
|
|
export default Vue.extend({
|
2018-02-12 03:49:06 -06:00
|
|
|
props: ['reply', 'repost'],
|
2018-02-11 21:21:26 -06:00
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
posting: false,
|
2018-02-12 03:49:06 -06:00
|
|
|
text: '',
|
|
|
|
files: [],
|
|
|
|
uploadings: [],
|
|
|
|
poll: false,
|
|
|
|
autocomplete: null,
|
|
|
|
draghover: false
|
2018-02-11 21:21:26 -06:00
|
|
|
};
|
|
|
|
},
|
|
|
|
computed: {
|
2018-02-12 03:49:06 -06:00
|
|
|
draftId(): string {
|
|
|
|
return this.repost
|
|
|
|
? 'repost:' + this.repost.id
|
|
|
|
: this.reply
|
|
|
|
? 'reply:' + this.reply.id
|
|
|
|
: 'post';
|
|
|
|
},
|
|
|
|
placeholder(): string {
|
|
|
|
return this.repost
|
|
|
|
? '%i18n:desktop.tags.mk-post-form.quote-placeholder%'
|
|
|
|
: this.reply
|
|
|
|
? '%i18n:desktop.tags.mk-post-form.reply-placeholder%'
|
|
|
|
: '%i18n:desktop.tags.mk-post-form.post-placeholder%';
|
|
|
|
},
|
|
|
|
submitText(): string {
|
|
|
|
return this.repost
|
|
|
|
? '%i18n:desktop.tags.mk-post-form.repost%'
|
|
|
|
: this.reply
|
|
|
|
? '%i18n:desktop.tags.mk-post-form.reply%'
|
|
|
|
: '%i18n:desktop.tags.mk-post-form.post%';
|
|
|
|
},
|
2018-02-11 21:21:26 -06:00
|
|
|
canPost(): boolean {
|
2018-02-12 03:49:06 -06:00
|
|
|
return !this.posting && (this.text.length != 0 || this.files.length != 0 || this.poll || this.repost);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
mounted() {
|
2018-02-16 00:38:12 -06:00
|
|
|
Vue.nextTick(() => {
|
|
|
|
this.autocomplete = new Autocomplete(this.$refs.text);
|
|
|
|
this.autocomplete.attach();
|
|
|
|
|
|
|
|
// 書きかけの投稿を復元
|
|
|
|
const draft = JSON.parse(localStorage.getItem('drafts') || '{}')[this.draftId];
|
|
|
|
if (draft) {
|
|
|
|
this.text = draft.data.text;
|
|
|
|
this.files = draft.data.files;
|
|
|
|
if (draft.data.poll) {
|
|
|
|
this.poll = true;
|
|
|
|
(this.$refs.poll as any).set(draft.data.poll);
|
|
|
|
}
|
|
|
|
this.$emit('change-attached-media', this.files);
|
2018-02-12 03:49:06 -06:00
|
|
|
}
|
|
|
|
|
2018-02-16 00:38:12 -06:00
|
|
|
new Sortable(this.$refs.media, {
|
|
|
|
animation: 150
|
|
|
|
});
|
2018-02-12 03:49:06 -06:00
|
|
|
});
|
|
|
|
},
|
|
|
|
beforeDestroy() {
|
|
|
|
this.autocomplete.detach();
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
focus() {
|
|
|
|
(this.$refs.text as any).focus();
|
|
|
|
},
|
|
|
|
chooseFile() {
|
|
|
|
(this.$refs.file as any).click();
|
|
|
|
},
|
2018-02-17 21:35:18 -06:00
|
|
|
chooseFileFromDrive() {
|
|
|
|
(this as any).apis.chooseDriveFile({
|
|
|
|
multiple: true
|
|
|
|
}).then(files => {
|
2018-02-12 03:49:06 -06:00
|
|
|
files.forEach(this.attachMedia);
|
2018-02-17 21:35:18 -06:00
|
|
|
});
|
2018-02-12 03:49:06 -06:00
|
|
|
},
|
|
|
|
attachMedia(driveFile) {
|
|
|
|
this.files.push(driveFile);
|
|
|
|
this.$emit('change-attached-media', this.files);
|
|
|
|
},
|
|
|
|
detachMedia(id) {
|
|
|
|
this.files = this.files.filter(x => x.id != id);
|
|
|
|
this.$emit('change-attached-media', this.files);
|
|
|
|
},
|
|
|
|
onChangeFile() {
|
|
|
|
Array.from((this.$refs.file as any).files).forEach(this.upload);
|
|
|
|
},
|
|
|
|
upload(file) {
|
|
|
|
(this.$refs.uploader as any).upload(file);
|
|
|
|
},
|
|
|
|
onChangeUploadings(uploads) {
|
|
|
|
this.$emit('change-uploadings', uploads);
|
|
|
|
},
|
|
|
|
clear() {
|
|
|
|
this.text = '';
|
|
|
|
this.files = [];
|
|
|
|
this.poll = false;
|
2018-02-16 00:38:12 -06:00
|
|
|
this.$emit('change-attached-media', this.files);
|
2018-02-12 03:49:06 -06:00
|
|
|
},
|
|
|
|
onKeydown(e) {
|
|
|
|
if ((e.which == 10 || e.which == 13) && (e.ctrlKey || e.metaKey)) this.post();
|
|
|
|
},
|
|
|
|
onPaste(e) {
|
|
|
|
Array.from(e.clipboardData.items).forEach((item: any) => {
|
|
|
|
if (item.kind == 'file') {
|
|
|
|
this.upload(item.getAsFile());
|
|
|
|
}
|
|
|
|
});
|
|
|
|
},
|
|
|
|
onDragover(e) {
|
|
|
|
this.draghover = true;
|
|
|
|
e.dataTransfer.dropEffect = e.dataTransfer.effectAllowed == 'all' ? 'copy' : 'move';
|
|
|
|
},
|
|
|
|
onDragenter(e) {
|
|
|
|
this.draghover = true;
|
|
|
|
},
|
|
|
|
onDragleave(e) {
|
|
|
|
this.draghover = false;
|
|
|
|
},
|
|
|
|
onDrop(e): void {
|
|
|
|
this.draghover = false;
|
|
|
|
|
|
|
|
// ファイルだったら
|
|
|
|
if (e.dataTransfer.files.length > 0) {
|
|
|
|
Array.from(e.dataTransfer.files).forEach(this.upload);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// データ取得
|
|
|
|
const data = e.dataTransfer.getData('text');
|
|
|
|
if (data == null) return;
|
|
|
|
|
|
|
|
try {
|
|
|
|
// パース
|
|
|
|
const obj = JSON.parse(data);
|
|
|
|
|
|
|
|
// (ドライブの)ファイルだったら
|
|
|
|
if (obj.type == 'file') {
|
|
|
|
this.files.push(obj.file);
|
2018-02-16 00:38:12 -06:00
|
|
|
this.$emit('change-attached-media', this.files);
|
2018-02-12 03:49:06 -06:00
|
|
|
}
|
|
|
|
} catch (e) { }
|
|
|
|
},
|
|
|
|
post() {
|
|
|
|
this.posting = true;
|
|
|
|
|
2018-02-17 21:35:18 -06:00
|
|
|
(this as any).api('posts/create', {
|
2018-02-12 03:49:06 -06:00
|
|
|
text: this.text == '' ? undefined : this.text,
|
|
|
|
media_ids: this.files.length > 0 ? this.files.map(f => f.id) : undefined,
|
|
|
|
reply_id: this.reply ? this.reply.id : undefined,
|
|
|
|
repost_id: this.repost ? this.repost.id : undefined,
|
|
|
|
poll: this.poll ? (this.$refs.poll as any).get() : undefined
|
|
|
|
}).then(data => {
|
|
|
|
this.clear();
|
|
|
|
this.deleteDraft();
|
|
|
|
this.$emit('posted');
|
|
|
|
notify(this.repost
|
|
|
|
? '%i18n:desktop.tags.mk-post-form.reposted%'
|
|
|
|
: this.reply
|
|
|
|
? '%i18n:desktop.tags.mk-post-form.replied%'
|
|
|
|
: '%i18n:desktop.tags.mk-post-form.posted%');
|
|
|
|
}).catch(err => {
|
|
|
|
notify(this.repost
|
|
|
|
? '%i18n:desktop.tags.mk-post-form.repost-failed%'
|
|
|
|
: this.reply
|
|
|
|
? '%i18n:desktop.tags.mk-post-form.reply-failed%'
|
|
|
|
: '%i18n:desktop.tags.mk-post-form.post-failed%');
|
|
|
|
}).then(() => {
|
|
|
|
this.posting = false;
|
|
|
|
});
|
|
|
|
},
|
|
|
|
saveDraft() {
|
|
|
|
const data = JSON.parse(localStorage.getItem('drafts') || '{}');
|
|
|
|
|
|
|
|
data[this.draftId] = {
|
|
|
|
updated_at: new Date(),
|
|
|
|
data: {
|
|
|
|
text: this.text,
|
|
|
|
files: this.files,
|
|
|
|
poll: this.poll && this.$refs.poll ? (this.$refs.poll as any).get() : undefined
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
localStorage.setItem('drafts', JSON.stringify(data));
|
|
|
|
},
|
|
|
|
deleteDraft() {
|
|
|
|
const data = JSON.parse(localStorage.getItem('drafts') || '{}');
|
|
|
|
|
|
|
|
delete data[this.draftId];
|
|
|
|
|
|
|
|
localStorage.setItem('drafts', JSON.stringify(data));
|
|
|
|
},
|
|
|
|
kao() {
|
|
|
|
this.text += getKao();
|
2018-02-11 21:21:26 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
2018-02-12 03:49:06 -06:00
|
|
|
<style lang="stylus" scoped>
|
|
|
|
.mk-post-form
|
|
|
|
display block
|
|
|
|
padding 16px
|
|
|
|
background lighten($theme-color, 95%)
|
|
|
|
|
|
|
|
&:after
|
|
|
|
content ""
|
|
|
|
display block
|
|
|
|
clear both
|
|
|
|
|
|
|
|
> .content
|
|
|
|
|
2018-02-16 00:38:12 -06:00
|
|
|
textarea
|
2018-02-12 03:49:06 -06:00
|
|
|
display block
|
|
|
|
padding 12px
|
|
|
|
margin 0
|
|
|
|
width 100%
|
|
|
|
max-width 100%
|
|
|
|
min-width 100%
|
|
|
|
min-height calc(16px + 12px + 12px)
|
|
|
|
font-size 16px
|
|
|
|
color #333
|
|
|
|
background #fff
|
|
|
|
outline none
|
|
|
|
border solid 1px rgba($theme-color, 0.1)
|
|
|
|
border-radius 4px
|
|
|
|
transition border-color .3s ease
|
|
|
|
|
|
|
|
&:hover
|
|
|
|
border-color rgba($theme-color, 0.2)
|
|
|
|
transition border-color .1s ease
|
|
|
|
|
|
|
|
& + *
|
|
|
|
& + * + *
|
|
|
|
border-color rgba($theme-color, 0.2)
|
|
|
|
transition border-color .1s ease
|
|
|
|
|
|
|
|
&:focus
|
|
|
|
color $theme-color
|
|
|
|
border-color rgba($theme-color, 0.5)
|
|
|
|
transition border-color 0s ease
|
|
|
|
|
|
|
|
& + *
|
|
|
|
& + * + *
|
|
|
|
border-color rgba($theme-color, 0.5)
|
|
|
|
transition border-color 0s ease
|
|
|
|
|
|
|
|
&:disabled
|
|
|
|
opacity 0.5
|
|
|
|
|
|
|
|
&::-webkit-input-placeholder
|
|
|
|
color rgba($theme-color, 0.3)
|
|
|
|
|
|
|
|
&.with
|
|
|
|
border-bottom solid 1px rgba($theme-color, 0.1) !important
|
|
|
|
border-radius 4px 4px 0 0
|
|
|
|
|
|
|
|
> .medias
|
|
|
|
margin 0
|
|
|
|
padding 0
|
|
|
|
background lighten($theme-color, 98%)
|
|
|
|
border solid 1px rgba($theme-color, 0.1)
|
|
|
|
border-top none
|
|
|
|
border-radius 0 0 4px 4px
|
|
|
|
transition border-color .3s ease
|
|
|
|
|
|
|
|
&.with
|
|
|
|
border-bottom solid 1px rgba($theme-color, 0.1) !important
|
|
|
|
border-radius 0
|
|
|
|
|
|
|
|
> .remain
|
|
|
|
display block
|
|
|
|
position absolute
|
|
|
|
top 8px
|
|
|
|
right 8px
|
|
|
|
margin 0
|
|
|
|
padding 0
|
|
|
|
color rgba($theme-color, 0.4)
|
|
|
|
|
|
|
|
> ul
|
|
|
|
display block
|
|
|
|
margin 0
|
|
|
|
padding 4px
|
|
|
|
list-style none
|
|
|
|
|
|
|
|
&:after
|
|
|
|
content ""
|
|
|
|
display block
|
|
|
|
clear both
|
|
|
|
|
|
|
|
> li
|
|
|
|
display block
|
|
|
|
float left
|
|
|
|
margin 0
|
|
|
|
padding 0
|
|
|
|
border solid 4px transparent
|
|
|
|
cursor move
|
|
|
|
|
|
|
|
&:hover > .remove
|
|
|
|
display block
|
|
|
|
|
|
|
|
> .img
|
|
|
|
width 64px
|
|
|
|
height 64px
|
|
|
|
background-size cover
|
|
|
|
background-position center center
|
|
|
|
|
|
|
|
> .remove
|
|
|
|
display none
|
|
|
|
position absolute
|
|
|
|
top -6px
|
|
|
|
right -6px
|
|
|
|
width 16px
|
|
|
|
height 16px
|
|
|
|
cursor pointer
|
|
|
|
|
2018-02-16 00:38:12 -06:00
|
|
|
> .mk-poll-editor
|
2018-02-12 03:49:06 -06:00
|
|
|
background lighten($theme-color, 98%)
|
|
|
|
border solid 1px rgba($theme-color, 0.1)
|
|
|
|
border-top none
|
|
|
|
border-radius 0 0 4px 4px
|
|
|
|
transition border-color .3s ease
|
|
|
|
|
2018-02-16 00:38:12 -06:00
|
|
|
> .mk-uploader
|
2018-02-12 03:49:06 -06:00
|
|
|
margin 8px 0 0 0
|
|
|
|
padding 8px
|
|
|
|
border solid 1px rgba($theme-color, 0.2)
|
|
|
|
border-radius 4px
|
|
|
|
|
2018-02-16 00:38:12 -06:00
|
|
|
input[type='file']
|
2018-02-12 03:49:06 -06:00
|
|
|
display none
|
|
|
|
|
|
|
|
.text-count
|
|
|
|
pointer-events none
|
|
|
|
display block
|
|
|
|
position absolute
|
|
|
|
bottom 16px
|
|
|
|
right 138px
|
|
|
|
margin 0
|
|
|
|
line-height 40px
|
|
|
|
color rgba($theme-color, 0.5)
|
|
|
|
|
|
|
|
&.over
|
|
|
|
color #ec3828
|
|
|
|
|
2018-02-16 00:38:12 -06:00
|
|
|
.submit
|
2018-02-12 03:49:06 -06:00
|
|
|
display block
|
|
|
|
position absolute
|
|
|
|
bottom 16px
|
|
|
|
right 16px
|
|
|
|
cursor pointer
|
|
|
|
padding 0
|
|
|
|
margin 0
|
|
|
|
width 110px
|
|
|
|
height 40px
|
|
|
|
font-size 1em
|
|
|
|
color $theme-color-foreground
|
|
|
|
background linear-gradient(to bottom, lighten($theme-color, 25%) 0%, lighten($theme-color, 10%) 100%)
|
|
|
|
outline none
|
|
|
|
border solid 1px lighten($theme-color, 15%)
|
|
|
|
border-radius 4px
|
|
|
|
|
|
|
|
&:not(:disabled)
|
|
|
|
font-weight bold
|
|
|
|
|
|
|
|
&:hover:not(:disabled)
|
|
|
|
background linear-gradient(to bottom, lighten($theme-color, 8%) 0%, darken($theme-color, 8%) 100%)
|
|
|
|
border-color $theme-color
|
|
|
|
|
|
|
|
&:active:not(:disabled)
|
|
|
|
background $theme-color
|
|
|
|
border-color $theme-color
|
|
|
|
|
|
|
|
&:focus
|
|
|
|
&:after
|
|
|
|
content ""
|
|
|
|
pointer-events none
|
|
|
|
position absolute
|
|
|
|
top -5px
|
|
|
|
right -5px
|
|
|
|
bottom -5px
|
|
|
|
left -5px
|
|
|
|
border 2px solid rgba($theme-color, 0.3)
|
|
|
|
border-radius 8px
|
|
|
|
|
|
|
|
&:disabled
|
|
|
|
opacity 0.7
|
|
|
|
cursor default
|
|
|
|
|
|
|
|
&.wait
|
|
|
|
background linear-gradient(
|
|
|
|
45deg,
|
|
|
|
darken($theme-color, 10%) 25%,
|
|
|
|
$theme-color 25%,
|
|
|
|
$theme-color 50%,
|
|
|
|
darken($theme-color, 10%) 50%,
|
|
|
|
darken($theme-color, 10%) 75%,
|
|
|
|
$theme-color 75%,
|
|
|
|
$theme-color
|
|
|
|
)
|
|
|
|
background-size 32px 32px
|
|
|
|
animation stripe-bg 1.5s linear infinite
|
|
|
|
opacity 0.7
|
|
|
|
cursor wait
|
|
|
|
|
|
|
|
@keyframes stripe-bg
|
|
|
|
from {background-position: 0 0;}
|
|
|
|
to {background-position: -64px 32px;}
|
|
|
|
|
2018-02-16 00:38:12 -06:00
|
|
|
.upload
|
|
|
|
.drive
|
2018-02-12 03:49:06 -06:00
|
|
|
.kao
|
|
|
|
.poll
|
|
|
|
display inline-block
|
|
|
|
cursor pointer
|
|
|
|
padding 0
|
|
|
|
margin 8px 4px 0 0
|
|
|
|
width 40px
|
|
|
|
height 40px
|
|
|
|
font-size 1em
|
|
|
|
color rgba($theme-color, 0.5)
|
|
|
|
background transparent
|
|
|
|
outline none
|
|
|
|
border solid 1px transparent
|
|
|
|
border-radius 4px
|
|
|
|
|
|
|
|
&:hover
|
|
|
|
background transparent
|
|
|
|
border-color rgba($theme-color, 0.3)
|
|
|
|
|
|
|
|
&:active
|
|
|
|
color rgba($theme-color, 0.6)
|
|
|
|
background linear-gradient(to bottom, lighten($theme-color, 80%) 0%, lighten($theme-color, 90%) 100%)
|
|
|
|
border-color rgba($theme-color, 0.5)
|
|
|
|
box-shadow 0 2px 4px rgba(0, 0, 0, 0.15) inset
|
|
|
|
|
|
|
|
&:focus
|
|
|
|
&:after
|
|
|
|
content ""
|
|
|
|
pointer-events none
|
|
|
|
position absolute
|
|
|
|
top -5px
|
|
|
|
right -5px
|
|
|
|
bottom -5px
|
|
|
|
left -5px
|
|
|
|
border 2px solid rgba($theme-color, 0.3)
|
|
|
|
border-radius 8px
|
|
|
|
|
|
|
|
> .dropzone
|
|
|
|
position absolute
|
|
|
|
left 0
|
|
|
|
top 0
|
|
|
|
width 100%
|
|
|
|
height 100%
|
|
|
|
border dashed 2px rgba($theme-color, 0.5)
|
|
|
|
pointer-events none
|
|
|
|
|
|
|
|
</style>
|