2018-02-11 17:06:17 +01:00
|
|
|
<template>
|
|
|
|
<div class="mk-post-form"
|
2018-02-26 22:25:17 +01:00
|
|
|
@dragover.stop="onDragover"
|
2018-02-11 17:06:17 +01:00
|
|
|
@dragenter="onDragenter"
|
|
|
|
@dragleave="onDragleave"
|
2018-02-26 22:25:17 +01:00
|
|
|
@drop.stop="onDrop"
|
2018-02-11 17:06:17 +01:00
|
|
|
>
|
|
|
|
<div class="content">
|
2018-04-28 22:28:34 +02:00
|
|
|
<div v-if="visibility == 'specified'" class="visibleUsers">
|
|
|
|
<span v-for="u in visibleUsers">{{ u | userName }}<a @click="removeVisibleUser(u)">[x]</a></span>
|
2018-07-31 19:54:12 +02:00
|
|
|
<a @click="addVisibleUser">%i18n:@add-visible-user%</a>
|
2018-04-28 22:28:34 +02:00
|
|
|
</div>
|
2018-08-16 23:03:03 +02:00
|
|
|
<div class="hashtags" v-if="recentHashtags.length > 0 && $store.state.settings.suggestRecentHashtags">
|
2018-07-20 19:58:44 +02:00
|
|
|
<b>%i18n:@recent-tags%:</b>
|
|
|
|
<a v-for="tag in recentHashtags.slice(0, 5)" @click="addTag(tag)" title="%@click-to-tagging%">#{{ tag }}</a>
|
2018-07-19 22:29:56 +02:00
|
|
|
</div>
|
2018-08-07 03:00:58 +02:00
|
|
|
<input v-show="useCw" v-model="cw" placeholder="%i18n:@annotations%">
|
2018-02-12 10:49:06 +01:00
|
|
|
<textarea :class="{ with: (files.length != 0 || poll) }"
|
|
|
|
ref="text" v-model="text" :disabled="posting"
|
2018-02-11 17:06:17 +01:00
|
|
|
@keydown="onKeydown" @paste="onPaste" :placeholder="placeholder"
|
2018-02-25 05:05:55 +01:00
|
|
|
v-autocomplete="'text'"
|
2018-02-11 17:06:17 +01:00
|
|
|
></textarea>
|
2018-09-05 12:32:46 +02:00
|
|
|
<div class="files" :class="{ with: poll }" v-show="files.length != 0">
|
2018-02-21 21:57:24 +01:00
|
|
|
<x-draggable :list="files" :options="{ animation: 150 }">
|
|
|
|
<div v-for="file in files" :key="file.id">
|
2018-08-16 17:27:36 +02:00
|
|
|
<div class="img" :style="{ backgroundImage: `url(${file.thumbnailUrl})` }" :title="file.name"></div>
|
2018-04-14 18:04:40 +02:00
|
|
|
<img class="remove" @click="detachMedia(file.id)" src="/assets/desktop/remove.png" title="%i18n:@attach-cancel%" alt=""/>
|
2018-02-21 21:57:24 +01:00
|
|
|
</div>
|
|
|
|
</x-draggable>
|
2018-02-12 04:21:26 +01:00
|
|
|
<p class="remain">{{ 4 - files.length }}/4</p>
|
2018-02-11 17:06:17 +01:00
|
|
|
</div>
|
2018-02-21 21:57:24 +01:00
|
|
|
<mk-poll-editor v-if="poll" ref="poll" @destroyed="poll = false" @updated="saveDraft()"/>
|
2018-02-11 17:06:17 +01:00
|
|
|
</div>
|
2018-02-22 18:09:48 +01:00
|
|
|
<mk-uploader ref="uploader" @uploaded="attachMedia" @change="onChangeUploadings"/>
|
2018-04-14 18:04:40 +02:00
|
|
|
<button class="upload" title="%i18n:@attach-media-from-local%" @click="chooseFile">%fa:upload%</button>
|
|
|
|
<button class="drive" title="%i18n:@attach-media-from-drive%" @click="chooseFileFromDrive">%fa:cloud%</button>
|
|
|
|
<button class="kao" title="%i18n:@insert-a-kao%" @click="kao">%fa:R smile%</button>
|
2018-09-02 14:39:47 +02:00
|
|
|
<button class="poll" title="%i18n:@create-poll%" @click="poll = !poll">%fa:chart-pie%</button>
|
2018-07-31 19:54:12 +02:00
|
|
|
<button class="poll" title="%i18n:@hide-contents%" @click="useCw = !useCw">%fa:eye-slash%</button>
|
|
|
|
<button class="geo" title="%i18n:@attach-location-information%" @click="geo ? removeGeo() : setGeo()">%fa:map-marker-alt%</button>
|
|
|
|
<button class="visibility" title="%i18n:@visibility%" @click="setVisibility" ref="visibilityButton">
|
2018-07-26 13:46:50 +02:00
|
|
|
<span v-if="visibility === 'public'">%fa:globe%</span>
|
|
|
|
<span v-if="visibility === 'home'">%fa:home%</span>
|
|
|
|
<span v-if="visibility === 'followers'">%fa:unlock%</span>
|
|
|
|
<span v-if="visibility === 'specified'">%fa:envelope%</span>
|
|
|
|
<span v-if="visibility === 'private'">%fa:lock%</span>
|
|
|
|
</button>
|
2018-09-10 11:02:46 +02:00
|
|
|
<p class="text-count" :class="{ over: this.trimmedLength(text) > 1000 }">{{ 1000 - this.trimmedLength(text) }}</p>
|
2018-02-16 07:38:12 +01:00
|
|
|
<button :class="{ posting }" class="submit" :disabled="!canPost" @click="post">
|
2018-05-20 13:26:38 +02:00
|
|
|
{{ posting ? '%i18n:@posting%' : submitText }}<mk-ellipsis v-if="posting"/>
|
2018-02-11 17:06:17 +01:00
|
|
|
</button>
|
2018-02-12 10:49:06 +01:00
|
|
|
<input ref="file" type="file" accept="image/*" multiple="multiple" tabindex="-1" @change="onChangeFile"/>
|
2018-02-11 17:06:17 +01:00
|
|
|
<div class="dropzone" v-if="draghover"></div>
|
|
|
|
</div>
|
|
|
|
</template>
|
2018-02-12 04:21:26 +01:00
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
2018-07-19 22:29:56 +02:00
|
|
|
import insertTextAtCursor from 'insert-text-at-cursor';
|
2018-02-21 21:57:24 +01:00
|
|
|
import * as XDraggable from 'vuedraggable';
|
2018-08-17 21:13:25 +02:00
|
|
|
import getFace from '../../../common/scripts/get-face';
|
2018-04-28 10:25:56 +02:00
|
|
|
import MkVisibilityChooser from '../../../common/views/components/visibility-chooser.vue';
|
2018-06-20 18:21:57 +02:00
|
|
|
import parse from '../../../../../mfm/parse';
|
2018-06-12 22:21:55 +02:00
|
|
|
import { host } from '../../../config';
|
2018-09-11 20:02:14 +02:00
|
|
|
import { erase, unique } from '../../../../../prelude/array';
|
2018-09-10 11:02:46 +02:00
|
|
|
import { length } from 'stringz';
|
2018-09-09 20:02:06 +02:00
|
|
|
import parseAcct from '../../../../../misc/acct/parse';
|
2018-02-12 04:21:26 +01:00
|
|
|
|
|
|
|
export default Vue.extend({
|
2018-02-21 21:57:24 +01:00
|
|
|
components: {
|
2018-04-28 10:25:56 +02:00
|
|
|
XDraggable,
|
|
|
|
MkVisibilityChooser
|
2018-02-21 21:57:24 +01:00
|
|
|
},
|
2018-04-22 10:04:52 +02:00
|
|
|
|
2018-06-16 11:42:49 +02:00
|
|
|
props: {
|
|
|
|
reply: {
|
|
|
|
type: Object,
|
|
|
|
required: false
|
|
|
|
},
|
|
|
|
renote: {
|
|
|
|
type: Object,
|
|
|
|
required: false
|
|
|
|
},
|
|
|
|
initialText: {
|
|
|
|
type: String,
|
|
|
|
required: false
|
|
|
|
},
|
|
|
|
instant: {
|
|
|
|
type: Boolean,
|
|
|
|
required: false,
|
|
|
|
default: false
|
|
|
|
}
|
|
|
|
},
|
2018-04-22 10:04:52 +02:00
|
|
|
|
2018-02-12 04:21:26 +01:00
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
posting: false,
|
2018-02-12 10:49:06 +01:00
|
|
|
text: '',
|
|
|
|
files: [],
|
|
|
|
uploadings: [],
|
|
|
|
poll: false,
|
2018-04-22 10:04:52 +02:00
|
|
|
useCw: false,
|
|
|
|
cw: null,
|
2018-03-05 00:44:37 +01:00
|
|
|
geo: null,
|
2018-09-07 14:13:15 +02:00
|
|
|
visibility: this.$store.state.settings.rememberNoteVisibility ? (this.$store.state.device.visibility || this.$store.state.settings.defaultNoteVisibility) : this.$store.state.settings.defaultNoteVisibility,
|
2018-04-28 22:28:34 +02:00
|
|
|
visibleUsers: [],
|
2018-02-12 10:49:06 +01:00
|
|
|
autocomplete: null,
|
2018-07-19 22:29:56 +02:00
|
|
|
draghover: false,
|
|
|
|
recentHashtags: JSON.parse(localStorage.getItem('hashtags') || '[]')
|
2018-02-12 04:21:26 +01:00
|
|
|
};
|
|
|
|
},
|
2018-04-22 10:04:52 +02:00
|
|
|
|
2018-02-12 04:21:26 +01:00
|
|
|
computed: {
|
2018-02-12 10:49:06 +01:00
|
|
|
draftId(): string {
|
2018-04-07 19:30:37 +02:00
|
|
|
return this.renote
|
2018-09-01 16:12:51 +02:00
|
|
|
? `renote:${this.renote.id}`
|
2018-02-12 10:49:06 +01:00
|
|
|
: this.reply
|
2018-09-01 16:12:51 +02:00
|
|
|
? `reply:${this.reply.id}`
|
2018-04-07 19:30:37 +02:00
|
|
|
: 'note';
|
2018-02-12 10:49:06 +01:00
|
|
|
},
|
2018-04-22 10:04:52 +02:00
|
|
|
|
2018-02-12 10:49:06 +01:00
|
|
|
placeholder(): string {
|
2018-05-28 19:00:45 +02:00
|
|
|
const xs = [
|
2018-05-28 18:44:15 +02:00
|
|
|
'%i18n:common.note-placeholders.a%',
|
|
|
|
'%i18n:common.note-placeholders.b%',
|
|
|
|
'%i18n:common.note-placeholders.c%',
|
|
|
|
'%i18n:common.note-placeholders.d%',
|
2018-05-28 19:00:45 +02:00
|
|
|
'%i18n:common.note-placeholders.e%',
|
|
|
|
'%i18n:common.note-placeholders.f%'
|
|
|
|
];
|
|
|
|
const x = xs[Math.floor(Math.random() * xs.length)];
|
2018-05-28 18:44:15 +02:00
|
|
|
|
2018-04-07 19:30:37 +02:00
|
|
|
return this.renote
|
2018-05-20 13:26:38 +02:00
|
|
|
? '%i18n:@quote-placeholder%'
|
2018-02-12 10:49:06 +01:00
|
|
|
: this.reply
|
2018-05-20 13:26:38 +02:00
|
|
|
? '%i18n:@reply-placeholder%'
|
2018-05-28 18:44:15 +02:00
|
|
|
: x;
|
2018-02-12 10:49:06 +01:00
|
|
|
},
|
2018-04-22 10:04:52 +02:00
|
|
|
|
2018-02-12 10:49:06 +01:00
|
|
|
submitText(): string {
|
2018-04-07 19:30:37 +02:00
|
|
|
return this.renote
|
2018-05-20 13:26:38 +02:00
|
|
|
? '%i18n:@renote%'
|
2018-02-12 10:49:06 +01:00
|
|
|
: this.reply
|
2018-05-20 13:26:38 +02:00
|
|
|
? '%i18n:@reply%'
|
2018-05-28 18:44:15 +02:00
|
|
|
: '%i18n:@submit%';
|
2018-02-12 10:49:06 +01:00
|
|
|
},
|
2018-04-22 10:04:52 +02:00
|
|
|
|
2018-02-12 04:21:26 +01:00
|
|
|
canPost(): boolean {
|
2018-07-23 06:37:29 +02:00
|
|
|
return !this.posting &&
|
|
|
|
(1 <= this.text.length || 1 <= this.files.length || this.poll || this.renote) &&
|
2018-09-10 11:02:46 +02:00
|
|
|
(length(this.text.trim()) <= 1000);
|
2018-02-12 10:49:06 +01:00
|
|
|
}
|
|
|
|
},
|
2018-04-22 10:04:52 +02:00
|
|
|
|
2018-05-07 09:25:06 +02:00
|
|
|
mounted() {
|
2018-06-16 11:42:49 +02:00
|
|
|
if (this.initialText) {
|
|
|
|
this.text = this.initialText;
|
|
|
|
}
|
|
|
|
|
2018-05-07 09:25:06 +02:00
|
|
|
if (this.reply && this.reply.user.host != null) {
|
|
|
|
this.text = `@${this.reply.user.username}@${this.reply.user.host} `;
|
2018-02-21 21:57:24 +01:00
|
|
|
}
|
2018-04-22 10:04:52 +02:00
|
|
|
|
2018-05-26 16:20:52 +02:00
|
|
|
if (this.reply && this.reply.text != null) {
|
|
|
|
const ast = parse(this.reply.text);
|
|
|
|
|
|
|
|
ast.filter(t => t.type == 'mention').forEach(x => {
|
|
|
|
const mention = x.host ? `@${x.username}@${x.host}` : `@${x.username}`;
|
2018-05-26 20:01:08 +02:00
|
|
|
|
|
|
|
// 自分は除外
|
2018-05-27 06:49:09 +02:00
|
|
|
if (this.$store.state.i.username == x.username && x.host == null) return;
|
2018-06-12 22:21:55 +02:00
|
|
|
if (this.$store.state.i.username == x.username && x.host == host) return;
|
2018-05-26 20:01:08 +02:00
|
|
|
|
|
|
|
// 重複は除外
|
|
|
|
if (this.text.indexOf(`${mention} `) != -1) return;
|
|
|
|
|
|
|
|
this.text += `${mention} `;
|
2018-05-26 16:20:52 +02:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2018-02-18 10:40:24 +01:00
|
|
|
this.$nextTick(() => {
|
2018-02-16 07:38:12 +01:00
|
|
|
// 書きかけの投稿を復元
|
2018-06-16 11:42:49 +02:00
|
|
|
if (!this.instant) {
|
|
|
|
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.$nextTick(() => {
|
|
|
|
(this.$refs.poll as any).set(draft.data.poll);
|
|
|
|
});
|
|
|
|
}
|
2018-09-05 12:32:46 +02:00
|
|
|
this.$emit('change-attached-files', this.files);
|
2018-02-16 07:38:12 +01:00
|
|
|
}
|
2018-02-12 10:49:06 +01:00
|
|
|
}
|
2018-05-07 09:25:06 +02:00
|
|
|
|
|
|
|
this.$nextTick(() => this.watch());
|
2018-02-12 10:49:06 +01:00
|
|
|
});
|
|
|
|
},
|
2018-04-22 10:04:52 +02:00
|
|
|
|
2018-02-12 10:49:06 +01:00
|
|
|
methods: {
|
2018-09-10 11:02:46 +02:00
|
|
|
trimmedLength(text: string) {
|
|
|
|
return length(text.trim());
|
|
|
|
},
|
|
|
|
|
2018-07-19 22:29:56 +02:00
|
|
|
addTag(tag: string) {
|
|
|
|
insertTextAtCursor(this.$refs.text, ` #${tag} `);
|
|
|
|
},
|
|
|
|
|
2018-05-07 09:25:06 +02:00
|
|
|
watch() {
|
|
|
|
this.$watch('text', () => this.saveDraft());
|
|
|
|
this.$watch('poll', () => this.saveDraft());
|
|
|
|
this.$watch('files', () => this.saveDraft());
|
|
|
|
},
|
|
|
|
|
2018-02-12 10:49:06 +01:00
|
|
|
focus() {
|
|
|
|
(this.$refs.text as any).focus();
|
|
|
|
},
|
2018-04-22 10:04:52 +02:00
|
|
|
|
2018-02-12 10:49:06 +01:00
|
|
|
chooseFile() {
|
|
|
|
(this.$refs.file as any).click();
|
|
|
|
},
|
2018-04-22 10:04:52 +02:00
|
|
|
|
2018-02-18 04:35:18 +01:00
|
|
|
chooseFileFromDrive() {
|
|
|
|
(this as any).apis.chooseDriveFile({
|
|
|
|
multiple: true
|
|
|
|
}).then(files => {
|
2018-02-12 10:49:06 +01:00
|
|
|
files.forEach(this.attachMedia);
|
2018-02-18 04:35:18 +01:00
|
|
|
});
|
2018-02-12 10:49:06 +01:00
|
|
|
},
|
2018-04-22 10:04:52 +02:00
|
|
|
|
2018-02-12 10:49:06 +01:00
|
|
|
attachMedia(driveFile) {
|
|
|
|
this.files.push(driveFile);
|
2018-09-05 12:32:46 +02:00
|
|
|
this.$emit('change-attached-files', this.files);
|
2018-02-12 10:49:06 +01:00
|
|
|
},
|
2018-04-22 10:04:52 +02:00
|
|
|
|
2018-02-12 10:49:06 +01:00
|
|
|
detachMedia(id) {
|
|
|
|
this.files = this.files.filter(x => x.id != id);
|
2018-09-05 12:32:46 +02:00
|
|
|
this.$emit('change-attached-files', this.files);
|
2018-02-12 10:49:06 +01:00
|
|
|
},
|
2018-04-22 10:04:52 +02:00
|
|
|
|
2018-02-12 10:49:06 +01:00
|
|
|
onChangeFile() {
|
|
|
|
Array.from((this.$refs.file as any).files).forEach(this.upload);
|
|
|
|
},
|
2018-04-22 10:04:52 +02:00
|
|
|
|
2018-02-12 10:49:06 +01:00
|
|
|
upload(file) {
|
|
|
|
(this.$refs.uploader as any).upload(file);
|
|
|
|
},
|
2018-04-22 10:04:52 +02:00
|
|
|
|
2018-02-12 10:49:06 +01:00
|
|
|
onChangeUploadings(uploads) {
|
|
|
|
this.$emit('change-uploadings', uploads);
|
|
|
|
},
|
2018-04-22 10:04:52 +02:00
|
|
|
|
2018-02-12 10:49:06 +01:00
|
|
|
clear() {
|
|
|
|
this.text = '';
|
|
|
|
this.files = [];
|
|
|
|
this.poll = false;
|
2018-09-05 12:32:46 +02:00
|
|
|
this.$emit('change-attached-files', this.files);
|
2018-02-12 10:49:06 +01:00
|
|
|
},
|
2018-04-22 10:04:52 +02:00
|
|
|
|
2018-02-12 10:49:06 +01:00
|
|
|
onKeydown(e) {
|
2018-07-20 19:06:49 +02:00
|
|
|
if ((e.which == 10 || e.which == 13) && (e.ctrlKey || e.metaKey) && this.canPost) this.post();
|
2018-02-12 10:49:06 +01:00
|
|
|
},
|
2018-04-22 10:04:52 +02:00
|
|
|
|
2018-02-12 10:49:06 +01:00
|
|
|
onPaste(e) {
|
|
|
|
Array.from(e.clipboardData.items).forEach((item: any) => {
|
|
|
|
if (item.kind == 'file') {
|
|
|
|
this.upload(item.getAsFile());
|
|
|
|
}
|
|
|
|
});
|
|
|
|
},
|
2018-04-22 10:04:52 +02:00
|
|
|
|
2018-02-12 10:49:06 +01:00
|
|
|
onDragover(e) {
|
2018-02-26 22:25:17 +01:00
|
|
|
const isFile = e.dataTransfer.items[0].kind == 'file';
|
|
|
|
const isDriveFile = e.dataTransfer.types[0] == 'mk_drive_file';
|
|
|
|
if (isFile || isDriveFile) {
|
|
|
|
e.preventDefault();
|
|
|
|
this.draghover = true;
|
|
|
|
e.dataTransfer.dropEffect = e.dataTransfer.effectAllowed == 'all' ? 'copy' : 'move';
|
|
|
|
}
|
2018-02-12 10:49:06 +01:00
|
|
|
},
|
2018-04-22 10:04:52 +02:00
|
|
|
|
2018-02-12 10:49:06 +01:00
|
|
|
onDragenter(e) {
|
|
|
|
this.draghover = true;
|
|
|
|
},
|
2018-04-22 10:04:52 +02:00
|
|
|
|
2018-02-12 10:49:06 +01:00
|
|
|
onDragleave(e) {
|
|
|
|
this.draghover = false;
|
|
|
|
},
|
2018-04-22 10:04:52 +02:00
|
|
|
|
2018-02-12 10:49:06 +01:00
|
|
|
onDrop(e): void {
|
|
|
|
this.draghover = false;
|
|
|
|
|
|
|
|
// ファイルだったら
|
|
|
|
if (e.dataTransfer.files.length > 0) {
|
2018-02-26 22:25:17 +01:00
|
|
|
e.preventDefault();
|
2018-02-12 10:49:06 +01:00
|
|
|
Array.from(e.dataTransfer.files).forEach(this.upload);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-02-26 22:25:17 +01:00
|
|
|
//#region ドライブのファイル
|
|
|
|
const driveFile = e.dataTransfer.getData('mk_drive_file');
|
|
|
|
if (driveFile != null && driveFile != '') {
|
|
|
|
const file = JSON.parse(driveFile);
|
|
|
|
this.files.push(file);
|
2018-09-05 12:32:46 +02:00
|
|
|
this.$emit('change-attached-files', this.files);
|
2018-02-26 22:25:17 +01:00
|
|
|
e.preventDefault();
|
2018-02-26 20:36:16 +01:00
|
|
|
}
|
2018-02-26 22:25:17 +01:00
|
|
|
//#endregion
|
2018-02-12 10:49:06 +01:00
|
|
|
},
|
2018-04-22 10:04:52 +02:00
|
|
|
|
2018-03-05 00:44:37 +01:00
|
|
|
setGeo() {
|
|
|
|
if (navigator.geolocation == null) {
|
2018-07-31 19:54:12 +02:00
|
|
|
alert('%i18n:@geolocation-alert%');
|
2018-03-05 00:44:37 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
navigator.geolocation.getCurrentPosition(pos => {
|
|
|
|
this.geo = pos.coords;
|
|
|
|
this.$emit('geo-attached', this.geo);
|
|
|
|
}, err => {
|
2018-09-01 16:12:51 +02:00
|
|
|
alert(`%i18n:@error%: ${err.message}`);
|
2018-03-05 00:44:37 +01:00
|
|
|
}, {
|
2018-07-23 06:37:29 +02:00
|
|
|
enableHighAccuracy: true
|
|
|
|
});
|
2018-03-05 00:44:37 +01:00
|
|
|
},
|
2018-04-22 10:04:52 +02:00
|
|
|
|
2018-03-05 06:09:12 +01:00
|
|
|
removeGeo() {
|
|
|
|
this.geo = null;
|
|
|
|
this.$emit('geo-dettached');
|
|
|
|
},
|
2018-04-22 10:04:52 +02:00
|
|
|
|
2018-04-28 10:25:56 +02:00
|
|
|
setVisibility() {
|
|
|
|
const w = (this as any).os.new(MkVisibilityChooser, {
|
2018-08-17 09:35:04 +02:00
|
|
|
source: this.$refs.visibilityButton
|
2018-04-28 10:25:56 +02:00
|
|
|
});
|
|
|
|
w.$once('chosen', v => {
|
|
|
|
this.visibility = v;
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2018-04-28 22:28:34 +02:00
|
|
|
addVisibleUser() {
|
|
|
|
(this as any).apis.input({
|
2018-07-31 19:56:21 +02:00
|
|
|
title: '%i18n:@enter-username%'
|
2018-09-09 20:02:06 +02:00
|
|
|
}).then(acct => {
|
|
|
|
if (acct.startsWith('@')) acct = acct.substr(1);
|
|
|
|
(this as any).api('users/show', parseAcct(acct)).then(user => {
|
2018-04-28 22:28:34 +02:00
|
|
|
this.visibleUsers.push(user);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
removeVisibleUser(user) {
|
2018-09-06 17:02:55 +02:00
|
|
|
this.visibleUsers = erase(user, this.visibleUsers);
|
2018-04-28 22:28:34 +02:00
|
|
|
},
|
|
|
|
|
2018-02-12 10:49:06 +01:00
|
|
|
post() {
|
|
|
|
this.posting = true;
|
|
|
|
|
2018-04-07 19:30:37 +02:00
|
|
|
(this as any).api('notes/create', {
|
2018-02-12 10:49:06 +01:00
|
|
|
text: this.text == '' ? undefined : this.text,
|
2018-09-05 12:32:46 +02:00
|
|
|
fileIds: this.files.length > 0 ? this.files.map(f => f.id) : undefined,
|
2018-03-29 07:48:47 +02:00
|
|
|
replyId: this.reply ? this.reply.id : undefined,
|
2018-04-07 19:30:37 +02:00
|
|
|
renoteId: this.renote ? this.renote.id : undefined,
|
2018-03-05 00:44:37 +01:00
|
|
|
poll: this.poll ? (this.$refs.poll as any).get() : undefined,
|
2018-04-22 10:04:52 +02:00
|
|
|
cw: this.useCw ? this.cw || '' : undefined,
|
2018-04-28 10:25:56 +02:00
|
|
|
visibility: this.visibility,
|
2018-04-29 00:01:47 +02:00
|
|
|
visibleUserIds: this.visibility == 'specified' ? this.visibleUsers.map(u => u.id) : undefined,
|
2018-03-05 01:03:54 +01:00
|
|
|
geo: this.geo ? {
|
2018-03-29 08:23:15 +02:00
|
|
|
coordinates: [this.geo.longitude, this.geo.latitude],
|
2018-03-05 01:03:54 +01:00
|
|
|
altitude: this.geo.altitude,
|
|
|
|
accuracy: this.geo.accuracy,
|
|
|
|
altitudeAccuracy: this.geo.altitudeAccuracy,
|
|
|
|
heading: isNaN(this.geo.heading) ? null : this.geo.heading,
|
|
|
|
speed: this.geo.speed,
|
|
|
|
} : null
|
2018-02-12 10:49:06 +01:00
|
|
|
}).then(data => {
|
|
|
|
this.clear();
|
|
|
|
this.deleteDraft();
|
|
|
|
this.$emit('posted');
|
2018-04-07 19:30:37 +02:00
|
|
|
(this as any).apis.notify(this.renote
|
2018-05-20 13:26:38 +02:00
|
|
|
? '%i18n:@reposted%'
|
2018-02-12 10:49:06 +01:00
|
|
|
: this.reply
|
2018-05-20 13:26:38 +02:00
|
|
|
? '%i18n:@replied%'
|
|
|
|
: '%i18n:@posted%');
|
2018-02-12 10:49:06 +01:00
|
|
|
}).catch(err => {
|
2018-04-07 19:30:37 +02:00
|
|
|
(this as any).apis.notify(this.renote
|
2018-05-20 13:26:38 +02:00
|
|
|
? '%i18n:@renote-failed%'
|
2018-02-12 10:49:06 +01:00
|
|
|
: this.reply
|
2018-05-20 13:26:38 +02:00
|
|
|
? '%i18n:@reply-failed%'
|
|
|
|
: '%i18n:@note-failed%');
|
2018-02-12 10:49:06 +01:00
|
|
|
}).then(() => {
|
|
|
|
this.posting = false;
|
|
|
|
});
|
2018-07-19 22:29:56 +02:00
|
|
|
|
|
|
|
if (this.text && this.text != '') {
|
|
|
|
const hashtags = parse(this.text).filter(x => x.type == 'hashtag').map(x => x.hashtag);
|
2018-07-20 12:23:10 +02:00
|
|
|
const history = JSON.parse(localStorage.getItem('hashtags') || '[]') as string[];
|
2018-09-11 20:02:14 +02:00
|
|
|
localStorage.setItem('hashtags', JSON.stringify(unique(hashtags.concat(history))));
|
2018-07-19 22:29:56 +02:00
|
|
|
}
|
2018-02-12 10:49:06 +01:00
|
|
|
},
|
2018-04-22 10:04:52 +02:00
|
|
|
|
2018-02-12 10:49:06 +01:00
|
|
|
saveDraft() {
|
2018-06-16 11:42:49 +02:00
|
|
|
if (this.instant) return;
|
|
|
|
|
2018-02-12 10:49:06 +01:00
|
|
|
const data = JSON.parse(localStorage.getItem('drafts') || '{}');
|
|
|
|
|
|
|
|
data[this.draftId] = {
|
2018-03-29 07:48:47 +02:00
|
|
|
updatedAt: new Date(),
|
2018-02-12 10:49:06 +01:00
|
|
|
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));
|
|
|
|
},
|
2018-04-22 10:04:52 +02:00
|
|
|
|
2018-02-12 10:49:06 +01:00
|
|
|
deleteDraft() {
|
|
|
|
const data = JSON.parse(localStorage.getItem('drafts') || '{}');
|
|
|
|
|
|
|
|
delete data[this.draftId];
|
|
|
|
|
|
|
|
localStorage.setItem('drafts', JSON.stringify(data));
|
|
|
|
},
|
2018-04-22 10:04:52 +02:00
|
|
|
|
2018-02-12 10:49:06 +01:00
|
|
|
kao() {
|
2018-08-17 21:13:25 +02:00
|
|
|
this.text += getFace();
|
2018-02-12 04:21:26 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
2018-02-12 10:49:06 +01:00
|
|
|
<style lang="stylus" scoped>
|
2018-03-03 05:47:55 +01:00
|
|
|
@import '~const.styl'
|
|
|
|
|
2018-04-19 22:06:32 +02:00
|
|
|
root(isDark)
|
2018-02-12 10:49:06 +01:00
|
|
|
display block
|
|
|
|
padding 16px
|
2018-04-19 22:06:32 +02:00
|
|
|
background isDark ? #282C37 : lighten($theme-color, 95%)
|
2018-02-12 10:49:06 +01:00
|
|
|
|
|
|
|
&:after
|
|
|
|
content ""
|
|
|
|
display block
|
|
|
|
clear both
|
|
|
|
|
|
|
|
> .content
|
2018-04-22 10:04:52 +02:00
|
|
|
> input
|
|
|
|
> textarea
|
2018-02-12 10:49:06 +01:00
|
|
|
display block
|
|
|
|
width 100%
|
2018-04-22 10:04:52 +02:00
|
|
|
padding 12px
|
2018-02-12 10:49:06 +01:00
|
|
|
font-size 16px
|
2018-04-21 08:46:46 +02:00
|
|
|
color isDark ? #fff : #333
|
2018-04-19 22:06:32 +02:00
|
|
|
background isDark ? #191d23 : #fff
|
2018-02-12 10:49:06 +01:00
|
|
|
outline none
|
|
|
|
border solid 1px rgba($theme-color, 0.1)
|
|
|
|
border-radius 4px
|
2018-04-22 10:04:52 +02:00
|
|
|
transition border-color .2s ease
|
2018-02-12 10:49:06 +01:00
|
|
|
|
|
|
|
&:hover
|
|
|
|
border-color rgba($theme-color, 0.2)
|
|
|
|
transition border-color .1s ease
|
|
|
|
|
2018-04-22 10:04:52 +02:00
|
|
|
&:focus
|
|
|
|
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)
|
|
|
|
|
|
|
|
> input
|
|
|
|
margin-bottom 8px
|
|
|
|
|
|
|
|
> textarea
|
|
|
|
margin 0
|
|
|
|
max-width 100%
|
|
|
|
min-width 100%
|
2018-07-20 21:33:04 +02:00
|
|
|
min-height 84px
|
2018-04-22 10:04:52 +02:00
|
|
|
|
|
|
|
&:hover
|
2018-02-12 10:49:06 +01:00
|
|
|
& + *
|
|
|
|
& + * + *
|
|
|
|
border-color rgba($theme-color, 0.2)
|
|
|
|
transition border-color .1s ease
|
|
|
|
|
|
|
|
&:focus
|
|
|
|
& + *
|
|
|
|
& + * + *
|
|
|
|
border-color rgba($theme-color, 0.5)
|
|
|
|
transition border-color 0s ease
|
|
|
|
|
|
|
|
&.with
|
|
|
|
border-bottom solid 1px rgba($theme-color, 0.1) !important
|
|
|
|
border-radius 4px 4px 0 0
|
|
|
|
|
2018-04-28 22:28:34 +02:00
|
|
|
> .visibleUsers
|
|
|
|
margin-bottom 8px
|
|
|
|
font-size 14px
|
|
|
|
|
|
|
|
> span
|
|
|
|
margin-right 16px
|
|
|
|
color isDark ? #fff : #666
|
|
|
|
|
2018-07-19 22:29:56 +02:00
|
|
|
> .hashtags
|
2018-07-20 19:58:44 +02:00
|
|
|
margin 0 0 8px 0
|
|
|
|
overflow hidden
|
2018-07-20 18:21:27 +02:00
|
|
|
white-space nowrap
|
2018-07-20 19:58:44 +02:00
|
|
|
font-size 14px
|
|
|
|
|
|
|
|
> b
|
|
|
|
color isDark ? #9baec8 : darken($theme-color, 20%)
|
|
|
|
|
2018-07-19 22:29:56 +02:00
|
|
|
> *
|
2018-07-20 19:58:44 +02:00
|
|
|
margin-right 8px
|
2018-07-20 18:21:27 +02:00
|
|
|
white-space nowrap
|
2018-07-19 22:29:56 +02:00
|
|
|
|
2018-09-05 12:32:46 +02:00
|
|
|
> .files
|
2018-02-12 10:49:06 +01:00
|
|
|
margin 0
|
|
|
|
padding 0
|
2018-04-20 00:45:37 +02:00
|
|
|
background isDark ? #181b23 : lighten($theme-color, 98%)
|
2018-02-12 10:49:06 +01:00
|
|
|
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)
|
|
|
|
|
2018-02-21 21:57:24 +01:00
|
|
|
> div
|
2018-02-12 10:49:06 +01:00
|
|
|
padding 4px
|
|
|
|
|
|
|
|
&:after
|
|
|
|
content ""
|
|
|
|
display block
|
|
|
|
clear both
|
|
|
|
|
2018-02-21 21:57:24 +01:00
|
|
|
> div
|
2018-02-12 10:49:06 +01:00
|
|
|
float left
|
|
|
|
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 07:38:12 +01:00
|
|
|
> .mk-poll-editor
|
2018-04-21 03:10:04 +02:00
|
|
|
background isDark ? #181b23 : lighten($theme-color, 98%)
|
2018-02-12 10:49:06 +01:00
|
|
|
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 07:38:12 +01:00
|
|
|
> .mk-uploader
|
2018-02-12 10:49:06 +01:00
|
|
|
margin 8px 0 0 0
|
|
|
|
padding 8px
|
|
|
|
border solid 1px rgba($theme-color, 0.2)
|
|
|
|
border-radius 4px
|
|
|
|
|
2018-02-16 07:38:12 +01:00
|
|
|
input[type='file']
|
2018-02-12 10:49:06 +01:00
|
|
|
display none
|
|
|
|
|
2018-02-16 07:38:12 +01:00
|
|
|
.submit
|
2018-02-12 10:49:06 +01: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-04-29 02:00:41 +02:00
|
|
|
> .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-03-03 08:35:15 +01:00
|
|
|
> .upload
|
|
|
|
> .drive
|
|
|
|
> .kao
|
|
|
|
> .poll
|
2018-03-05 00:44:37 +01:00
|
|
|
> .geo
|
2018-04-28 10:25:56 +02:00
|
|
|
> .visibility
|
2018-02-12 10:49:06 +01:00
|
|
|
display inline-block
|
|
|
|
cursor pointer
|
|
|
|
padding 0
|
|
|
|
margin 8px 4px 0 0
|
|
|
|
width 40px
|
|
|
|
height 40px
|
|
|
|
font-size 1em
|
2018-04-19 22:06:32 +02:00
|
|
|
color isDark ? $theme-color : rgba($theme-color, 0.5)
|
2018-02-12 10:49:06 +01:00
|
|
|
background transparent
|
|
|
|
outline none
|
|
|
|
border solid 1px transparent
|
|
|
|
border-radius 4px
|
|
|
|
|
|
|
|
&:hover
|
|
|
|
background transparent
|
2018-04-19 22:06:32 +02:00
|
|
|
border-color isDark ? rgba($theme-color, 0.5) : rgba($theme-color, 0.3)
|
2018-02-12 10:49:06 +01:00
|
|
|
|
|
|
|
&:active
|
|
|
|
color rgba($theme-color, 0.6)
|
2018-04-19 22:06:32 +02:00
|
|
|
background isDark ? transparent : linear-gradient(to bottom, lighten($theme-color, 80%) 0%, lighten($theme-color, 90%) 100%)
|
2018-02-12 10:49:06 +01:00
|
|
|
border-color rgba($theme-color, 0.5)
|
2018-04-29 01:51:17 +02:00
|
|
|
box-shadow 0 2px 4px rgba(#000, 0.15) inset
|
2018-02-12 10:49:06 +01:00
|
|
|
|
|
|
|
&: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
|
|
|
|
|
2018-04-19 22:06:32 +02:00
|
|
|
.mk-post-form[data-darkmode]
|
|
|
|
root(true)
|
|
|
|
|
|
|
|
.mk-post-form:not([data-darkmode])
|
|
|
|
root(false)
|
|
|
|
|
2018-02-12 10:49:06 +01:00
|
|
|
</style>
|