2018-02-13 22:26:08 -06:00
|
|
|
<template>
|
|
|
|
<div class="mk-post-form">
|
|
|
|
<div class="form">
|
2018-07-19 15:29:56 -05:00
|
|
|
<header>
|
2018-11-05 10:40:11 -06:00
|
|
|
<button class="cancel" @click="cancel"><fa icon="times"/></button>
|
2018-07-19 15:29:56 -05:00
|
|
|
<div>
|
2018-11-08 22:47:22 -06:00
|
|
|
<span class="text-count" :class="{ over: trimmedLength(text) > maxNoteTextLength }">{{ maxNoteTextLength - trimmedLength(text) }}</span>
|
2018-11-05 10:40:11 -06:00
|
|
|
<span class="geo" v-if="geo"><fa icon="map-marker-alt"/></span>
|
2018-07-19 15:29:56 -05:00
|
|
|
<button class="submit" :disabled="!canPost" @click="post">{{ submitText }}</button>
|
|
|
|
</div>
|
|
|
|
</header>
|
|
|
|
<div class="form">
|
2018-09-13 03:44:36 -05:00
|
|
|
<mk-note-preview class="preview" v-if="reply" :note="reply"/>
|
|
|
|
<mk-note-preview class="preview" v-if="renote" :note="renote"/>
|
2018-07-19 15:29:56 -05:00
|
|
|
<div v-if="visibility == 'specified'" class="visibleUsers">
|
2018-12-05 19:02:04 -06:00
|
|
|
<span v-for="u in visibleUsers">
|
2018-12-06 01:09:33 -06:00
|
|
|
<mk-user-name :user="u"/>
|
2018-12-05 19:02:04 -06:00
|
|
|
<a @click="removeVisibleUser(u)">[x]</a>
|
|
|
|
</span>
|
2018-11-08 12:44:35 -06:00
|
|
|
<a @click="addVisibleUser">+{{ $t('add-visible-user') }}</a>
|
2018-07-19 15:29:56 -05:00
|
|
|
</div>
|
2018-12-15 17:45:10 -06:00
|
|
|
<input v-show="useCw" ref="cw" v-model="cw" :placeholder="$t('annotations')" v-autocomplete="{ model: 'cw' }">
|
|
|
|
<textarea v-model="text" ref="text" :disabled="posting" :placeholder="placeholder" v-autocomplete="{ model: 'text' }"></textarea>
|
2018-07-19 15:29:56 -05:00
|
|
|
<div class="attaches" v-show="files.length != 0">
|
|
|
|
<x-draggable class="files" :list="files" :options="{ animation: 150 }">
|
|
|
|
<div class="file" v-for="file in files" :key="file.id">
|
2018-08-16 10:27:36 -05:00
|
|
|
<div class="img" :style="`background-image: url(${file.thumbnailUrl})`" @click="detachMedia(file)"></div>
|
2018-07-19 15:29:56 -05:00
|
|
|
</div>
|
|
|
|
</x-draggable>
|
|
|
|
</div>
|
2019-01-23 04:42:47 -06:00
|
|
|
<mk-poll-editor v-if="poll" ref="poll" @destroyed="poll = false" @updated="onPollUpdate()"/>
|
2018-07-19 15:29:56 -05:00
|
|
|
<mk-uploader ref="uploader" @uploaded="attachMedia" @change="onChangeUploadings"/>
|
|
|
|
<footer>
|
2018-11-05 10:40:11 -06:00
|
|
|
<button class="upload" @click="chooseFile"><fa icon="upload"/></button>
|
|
|
|
<button class="drive" @click="chooseFileFromDrive"><fa icon="cloud"/></button>
|
|
|
|
<button class="kao" @click="kao"><fa :icon="['far', 'smile']"/></button>
|
|
|
|
<button class="poll" @click="poll = true"><fa icon="chart-pie"/></button>
|
2018-11-13 07:43:09 -06:00
|
|
|
<button class="poll" @click="useCw = !useCw"><fa :icon="['far', 'eye-slash']"/></button>
|
2018-11-05 10:40:11 -06:00
|
|
|
<button class="geo" @click="geo ? removeGeo() : setGeo()"><fa icon="map-marker-alt"/></button>
|
2018-07-26 23:30:46 -05:00
|
|
|
<button class="visibility" @click="setVisibility" ref="visibilityButton">
|
2018-11-05 10:40:11 -06:00
|
|
|
<span v-if="visibility === 'public'"><fa icon="globe"/></span>
|
|
|
|
<span v-if="visibility === 'home'"><fa icon="home"/></span>
|
|
|
|
<span v-if="visibility === 'followers'"><fa icon="unlock"/></span>
|
2019-01-11 18:40:53 -06:00
|
|
|
<span v-if="visibility === 'specified'"><fa icon="envelope"/></span>
|
2018-07-26 23:30:46 -05:00
|
|
|
</button>
|
2018-07-19 15:29:56 -05:00
|
|
|
</footer>
|
2018-09-15 14:34:46 -05:00
|
|
|
<input ref="file" class="file" type="file" multiple="multiple" @change="onChangeFile"/>
|
2018-02-13 22:26:08 -06:00
|
|
|
</div>
|
2018-07-19 15:29:56 -05:00
|
|
|
</div>
|
2018-08-16 16:03:03 -05:00
|
|
|
<div class="hashtags" v-if="recentHashtags.length > 0 && $store.state.settings.suggestRecentHashtags">
|
2018-07-20 12:58:44 -05:00
|
|
|
<a v-for="tag in recentHashtags.slice(0, 5)" @click="addTag(tag)">#{{ tag }}</a>
|
2018-02-13 22:26:08 -06:00
|
|
|
</div>
|
2018-02-21 11:15:46 -06:00
|
|
|
</div>
|
2018-02-13 22:26:08 -06:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
2018-11-08 12:44:35 -06:00
|
|
|
import i18n from '../../../i18n';
|
2018-07-19 15:29:56 -05:00
|
|
|
import insertTextAtCursor from 'insert-text-at-cursor';
|
2018-02-21 16:06:47 -06:00
|
|
|
import * as XDraggable from 'vuedraggable';
|
2018-04-28 18:51:17 -05:00
|
|
|
import MkVisibilityChooser from '../../../common/views/components/visibility-chooser.vue';
|
2018-08-17 14:13:25 -05:00
|
|
|
import getFace from '../../../common/scripts/get-face';
|
2019-01-30 01:56:27 -06:00
|
|
|
import { parse } from '../../../../../mfm/parse';
|
2018-06-12 15:21:55 -05:00
|
|
|
import { host } from '../../../config';
|
2018-09-15 13:48:16 -05:00
|
|
|
import { erase, unique } from '../../../../../prelude/array';
|
2018-09-10 04:02:46 -05:00
|
|
|
import { length } from 'stringz';
|
2018-10-14 02:56:19 -05:00
|
|
|
import { toASCII } from 'punycode';
|
2018-12-18 20:16:29 -06:00
|
|
|
import extractMentions from '../../../../../misc/extract-mentions';
|
2018-02-13 22:26:08 -06:00
|
|
|
|
|
|
|
export default Vue.extend({
|
2018-11-08 12:44:35 -06:00
|
|
|
i18n: i18n('mobile/views/components/post-form.vue'),
|
2018-02-21 16:06:47 -06:00
|
|
|
components: {
|
2019-01-23 04:43:45 -06:00
|
|
|
XDraggable
|
2018-02-21 16:06:47 -06:00
|
|
|
},
|
2018-04-22 03:04:52 -05:00
|
|
|
|
2018-06-16 04:42:49 -05:00
|
|
|
props: {
|
|
|
|
reply: {
|
|
|
|
type: Object,
|
|
|
|
required: false
|
|
|
|
},
|
|
|
|
renote: {
|
|
|
|
type: Object,
|
|
|
|
required: false
|
|
|
|
},
|
2018-12-27 08:14:30 -06:00
|
|
|
mention: {
|
|
|
|
type: Object,
|
|
|
|
required: false
|
|
|
|
},
|
2018-06-16 04:42:49 -05:00
|
|
|
initialText: {
|
|
|
|
type: String,
|
|
|
|
required: false
|
|
|
|
},
|
|
|
|
instant: {
|
|
|
|
type: Boolean,
|
|
|
|
required: false,
|
|
|
|
default: false
|
|
|
|
}
|
|
|
|
},
|
2018-04-22 03:04:52 -05:00
|
|
|
|
2018-02-13 22:26:08 -06:00
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
posting: false,
|
|
|
|
text: '',
|
|
|
|
uploadings: [],
|
|
|
|
files: [],
|
2018-03-04 17:44:37 -06:00
|
|
|
poll: false,
|
2018-12-07 03:33:09 -06:00
|
|
|
pollChoices: [],
|
2018-04-22 03:04:52 -05:00
|
|
|
geo: null,
|
2018-11-16 22:21:40 -06:00
|
|
|
visibility: 'public',
|
2018-04-28 18:51:17 -05:00
|
|
|
visibleUsers: [],
|
2018-11-15 14:47:29 -06:00
|
|
|
localOnly: false,
|
2018-04-22 03:04:52 -05:00
|
|
|
useCw: false,
|
2018-07-19 15:29:56 -05:00
|
|
|
cw: null,
|
2018-10-23 14:00:04 -05:00
|
|
|
recentHashtags: JSON.parse(localStorage.getItem('hashtags') || '[]'),
|
|
|
|
maxNoteTextLength: 1000
|
2018-02-13 22:26:08 -06:00
|
|
|
};
|
|
|
|
},
|
2018-04-22 03:04:52 -05:00
|
|
|
|
2018-10-23 14:00:04 -05:00
|
|
|
created() {
|
2018-11-08 17:13:34 -06:00
|
|
|
this.$root.getMeta().then(meta => {
|
2018-10-23 14:00:04 -05:00
|
|
|
this.maxNoteTextLength = meta.maxNoteTextLength;
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2018-05-28 11:44:15 -05:00
|
|
|
computed: {
|
|
|
|
draftId(): string {
|
|
|
|
return this.renote
|
2018-09-01 09:12:51 -05:00
|
|
|
? `renote:${this.renote.id}`
|
2018-05-28 11:44:15 -05:00
|
|
|
: this.reply
|
2018-09-01 09:12:51 -05:00
|
|
|
? `reply:${this.reply.id}`
|
2018-05-28 11:44:15 -05:00
|
|
|
: 'note';
|
|
|
|
},
|
|
|
|
|
|
|
|
placeholder(): string {
|
2018-05-28 12:00:45 -05:00
|
|
|
const xs = [
|
2018-11-08 12:44:35 -06:00
|
|
|
this.$t('@.note-placeholders.a'),
|
|
|
|
this.$t('@.note-placeholders.b'),
|
|
|
|
this.$t('@.note-placeholders.c'),
|
|
|
|
this.$t('@.note-placeholders.d'),
|
|
|
|
this.$t('@.note-placeholders.e'),
|
|
|
|
this.$t('@.note-placeholders.f')
|
2018-05-28 12:00:45 -05:00
|
|
|
];
|
|
|
|
const x = xs[Math.floor(Math.random() * xs.length)];
|
2018-05-28 11:44:15 -05:00
|
|
|
|
|
|
|
return this.renote
|
2018-11-08 12:44:35 -06:00
|
|
|
? this.$t('quote-placeholder')
|
2018-05-28 11:44:15 -05:00
|
|
|
: this.reply
|
2018-11-08 12:44:35 -06:00
|
|
|
? this.$t('reply-placeholder')
|
2018-05-28 11:44:15 -05:00
|
|
|
: x;
|
|
|
|
},
|
|
|
|
|
|
|
|
submitText(): string {
|
|
|
|
return this.renote
|
2018-11-08 12:44:35 -06:00
|
|
|
? this.$t('renote')
|
2018-05-28 11:44:15 -05:00
|
|
|
: this.reply
|
2018-11-08 12:44:35 -06:00
|
|
|
? this.$t('reply')
|
|
|
|
: this.$t('submit');
|
2018-05-28 11:44:15 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
canPost(): boolean {
|
2018-07-22 23:37:29 -05:00
|
|
|
return !this.posting &&
|
|
|
|
(1 <= this.text.length || 1 <= this.files.length || this.poll || this.renote) &&
|
2018-12-07 03:33:09 -06:00
|
|
|
(this.text.trim().length <= this.maxNoteTextLength) &&
|
|
|
|
(!this.poll || this.pollChoices.length >= 2);
|
2018-05-28 11:44:15 -05:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2018-02-13 22:26:08 -06:00
|
|
|
mounted() {
|
2018-06-16 04:42:49 -05:00
|
|
|
if (this.initialText) {
|
|
|
|
this.text = this.initialText;
|
|
|
|
}
|
|
|
|
|
2018-05-07 02:25:06 -05:00
|
|
|
if (this.reply && this.reply.user.host != null) {
|
2018-10-14 02:56:19 -05:00
|
|
|
this.text = `@${this.reply.user.username}@${toASCII(this.reply.user.host)} `;
|
2018-05-07 02:25:06 -05:00
|
|
|
}
|
|
|
|
|
2018-12-27 08:14:30 -06:00
|
|
|
if (this.mention) {
|
|
|
|
this.text = this.mention.host ? `@${this.mention.username}@${toASCII(this.mention.host)}` : `@${this.mention.username}`;
|
|
|
|
this.text += ' ';
|
|
|
|
}
|
|
|
|
|
2018-05-26 09:20:52 -05:00
|
|
|
if (this.reply && this.reply.text != null) {
|
|
|
|
const ast = parse(this.reply.text);
|
|
|
|
|
2018-12-18 20:16:29 -06:00
|
|
|
for (const x of extractMentions(ast)) {
|
2018-10-14 02:56:19 -05:00
|
|
|
const mention = x.host ? `@${x.username}@${toASCII(x.host)}` : `@${x.username}`;
|
2018-05-26 13:01:08 -05:00
|
|
|
|
|
|
|
// 自分は除外
|
2019-01-05 13:00:30 -06:00
|
|
|
if (this.$store.state.i.username == x.username && x.host == null) continue;
|
|
|
|
if (this.$store.state.i.username == x.username && x.host == host) continue;
|
2018-05-26 13:01:08 -05:00
|
|
|
|
|
|
|
// 重複は除外
|
2019-01-05 13:00:30 -06:00
|
|
|
if (this.text.indexOf(`${mention} `) != -1) continue;
|
2018-05-26 13:01:08 -05:00
|
|
|
|
|
|
|
this.text += `${mention} `;
|
2018-12-11 05:36:55 -06:00
|
|
|
}
|
2018-05-26 09:20:52 -05:00
|
|
|
}
|
|
|
|
|
2018-11-16 22:21:40 -06:00
|
|
|
// デフォルト公開範囲
|
|
|
|
this.applyVisibility(this.$store.state.settings.rememberNoteVisibility ? (this.$store.state.device.visibility || this.$store.state.settings.defaultNoteVisibility) : this.$store.state.settings.defaultNoteVisibility);
|
|
|
|
|
2018-09-26 06:39:59 -05:00
|
|
|
// 公開以外へのリプライ時は元の公開範囲を引き継ぐ
|
2018-12-28 11:55:46 -06:00
|
|
|
if (this.reply && ['home', 'followers', 'specified'].includes(this.reply.visibility)) {
|
2018-09-26 06:39:59 -05:00
|
|
|
this.visibility = this.reply.visibility;
|
|
|
|
}
|
|
|
|
|
2018-12-22 12:41:28 -06:00
|
|
|
if (this.reply) {
|
|
|
|
this.$root.api('users/show', { userId: this.reply.userId }).then(user => {
|
2018-09-26 06:39:59 -05:00
|
|
|
this.visibleUsers.push(user);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2019-01-23 05:43:06 -06:00
|
|
|
// keep cw when reply
|
|
|
|
if (this.$store.state.settings.keepCw && this.reply && this.reply.cw) {
|
|
|
|
this.useCw = true;
|
|
|
|
this.cw = this.reply.cw;
|
|
|
|
}
|
|
|
|
|
2018-09-01 02:23:23 -05:00
|
|
|
this.focus();
|
|
|
|
|
2018-02-21 16:06:47 -06:00
|
|
|
this.$nextTick(() => {
|
2018-02-22 14:43:19 -06:00
|
|
|
this.focus();
|
2018-02-13 22:26:08 -06:00
|
|
|
});
|
|
|
|
},
|
2018-04-22 03:04:52 -05:00
|
|
|
|
2018-02-13 22:26:08 -06:00
|
|
|
methods: {
|
2018-09-10 04:02:46 -05:00
|
|
|
trimmedLength(text: string) {
|
|
|
|
return length(text.trim());
|
|
|
|
},
|
|
|
|
|
2018-07-19 15:29:56 -05:00
|
|
|
addTag(tag: string) {
|
|
|
|
insertTextAtCursor(this.$refs.text, ` #${tag} `);
|
|
|
|
},
|
|
|
|
|
2018-02-22 14:43:19 -06:00
|
|
|
focus() {
|
|
|
|
(this.$refs.text as any).focus();
|
|
|
|
},
|
2018-04-22 03:04:52 -05:00
|
|
|
|
2018-12-02 05:24:38 -06:00
|
|
|
addVisibleUser() {
|
|
|
|
this.$root.dialog({
|
|
|
|
title: this.$t('enter-username'),
|
|
|
|
user: true
|
|
|
|
}).then(({ canceled, result: user }) => {
|
|
|
|
if (canceled) return;
|
|
|
|
this.visibleUsers.push(user);
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2018-02-21 16:06:47 -06:00
|
|
|
chooseFile() {
|
|
|
|
(this.$refs.file as any).click();
|
|
|
|
},
|
2018-04-22 03:04:52 -05:00
|
|
|
|
2018-02-21 16:06:47 -06:00
|
|
|
chooseFileFromDrive() {
|
2018-11-09 01:00:29 -06:00
|
|
|
this.$chooseDriveFile({
|
2018-02-21 16:06:47 -06:00
|
|
|
multiple: true
|
|
|
|
}).then(files => {
|
2018-12-11 05:36:55 -06:00
|
|
|
for (const x of files) this.attachMedia(x);
|
2018-02-21 16:06:47 -06:00
|
|
|
});
|
|
|
|
},
|
2018-04-22 03:04:52 -05:00
|
|
|
|
2018-02-13 22:26:08 -06:00
|
|
|
attachMedia(driveFile) {
|
|
|
|
this.files.push(driveFile);
|
2018-09-05 05:32:46 -05:00
|
|
|
this.$emit('change-attached-files', this.files);
|
2018-02-13 22:26:08 -06:00
|
|
|
},
|
2018-04-22 03:04:52 -05:00
|
|
|
|
2018-02-21 16:06:47 -06:00
|
|
|
detachMedia(file) {
|
|
|
|
this.files = this.files.filter(x => x.id != file.id);
|
2018-09-05 05:32:46 -05:00
|
|
|
this.$emit('change-attached-files', this.files);
|
2018-02-13 22:26:08 -06:00
|
|
|
},
|
2018-04-22 03:04:52 -05:00
|
|
|
|
2018-02-13 22:26:08 -06:00
|
|
|
onChangeFile() {
|
2018-12-11 05:36:55 -06:00
|
|
|
for (const x of Array.from((this.$refs.file as any).files)) this.upload(x);
|
2018-02-13 22:26:08 -06:00
|
|
|
},
|
2018-04-22 03:04:52 -05:00
|
|
|
|
2018-12-07 03:33:09 -06:00
|
|
|
onPollUpdate() {
|
|
|
|
this.pollChoices = this.$refs.poll.get().choices;
|
|
|
|
},
|
|
|
|
|
2018-02-13 22:26:08 -06:00
|
|
|
upload(file) {
|
|
|
|
(this.$refs.uploader as any).upload(file);
|
|
|
|
},
|
2018-04-22 03:04:52 -05:00
|
|
|
|
2018-02-13 22:26:08 -06:00
|
|
|
onChangeUploadings(uploads) {
|
|
|
|
this.$emit('change-uploadings', uploads);
|
|
|
|
},
|
2018-04-22 03:04:52 -05:00
|
|
|
|
2018-03-04 17:44:37 -06:00
|
|
|
setGeo() {
|
|
|
|
if (navigator.geolocation == null) {
|
2018-11-08 12:44:35 -06:00
|
|
|
alert(this.$t('location-alert'));
|
2018-03-04 17:44:37 -06:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
navigator.geolocation.getCurrentPosition(pos => {
|
|
|
|
this.geo = pos.coords;
|
|
|
|
}, err => {
|
2018-09-01 09:12:51 -05:00
|
|
|
alert(`%i18n:@error%: ${err.message}`);
|
2018-03-04 17:44:37 -06:00
|
|
|
}, {
|
2018-07-22 23:37:29 -05:00
|
|
|
enableHighAccuracy: true
|
|
|
|
});
|
2018-03-04 17:44:37 -06:00
|
|
|
},
|
2018-04-22 03:04:52 -05:00
|
|
|
|
2018-03-04 23:09:12 -06:00
|
|
|
removeGeo() {
|
|
|
|
this.geo = null;
|
|
|
|
},
|
2018-04-22 03:04:52 -05:00
|
|
|
|
2018-04-28 18:51:17 -05:00
|
|
|
setVisibility() {
|
2018-11-08 17:13:34 -06:00
|
|
|
const w = this.$root.new(MkVisibilityChooser, {
|
2018-12-29 23:43:03 -06:00
|
|
|
source: this.$refs.visibilityButton,
|
|
|
|
currentVisibility: this.visibility
|
2018-04-28 18:51:17 -05:00
|
|
|
});
|
|
|
|
w.$once('chosen', v => {
|
2018-11-16 22:21:40 -06:00
|
|
|
this.applyVisibility(v);
|
2018-04-28 18:51:17 -05:00
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2018-11-16 22:21:40 -06:00
|
|
|
applyVisibility(v :string) {
|
|
|
|
const m = v.match(/^local-(.+)/);
|
|
|
|
if (m) {
|
|
|
|
this.localOnly = true;
|
|
|
|
this.visibility = m[1];
|
|
|
|
} else {
|
|
|
|
this.localOnly = false;
|
|
|
|
this.visibility = v;
|
|
|
|
}
|
2018-04-28 18:51:17 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
removeVisibleUser(user) {
|
2018-09-06 10:02:55 -05:00
|
|
|
this.visibleUsers = erase(user, this.visibleUsers);
|
2018-04-28 18:51:17 -05:00
|
|
|
},
|
|
|
|
|
2018-02-13 22:26:08 -06:00
|
|
|
clear() {
|
|
|
|
this.text = '';
|
|
|
|
this.files = [];
|
|
|
|
this.poll = false;
|
2018-09-05 05:32:46 -05:00
|
|
|
this.$emit('change-attached-files');
|
2018-02-13 22:26:08 -06:00
|
|
|
},
|
2018-04-22 03:04:52 -05:00
|
|
|
|
2018-02-21 16:06:47 -06:00
|
|
|
post() {
|
|
|
|
this.posting = true;
|
2018-05-26 23:49:09 -05:00
|
|
|
const viaMobile = this.$store.state.settings.disableViaMobile !== true;
|
2018-11-08 17:13:34 -06:00
|
|
|
this.$root.api('notes/create', {
|
2018-02-21 16:06:47 -06:00
|
|
|
text: this.text == '' ? undefined : this.text,
|
2018-09-05 05:32:46 -05:00
|
|
|
fileIds: this.files.length > 0 ? this.files.map(f => f.id) : undefined,
|
2018-03-29 00:48:47 -05:00
|
|
|
replyId: this.reply ? this.reply.id : undefined,
|
2018-05-17 16:27:27 -05:00
|
|
|
renoteId: this.renote ? this.renote.id : undefined,
|
2018-03-03 18:39:25 -06:00
|
|
|
poll: this.poll ? (this.$refs.poll as any).get() : undefined,
|
2018-04-22 03:04:52 -05:00
|
|
|
cw: this.useCw ? this.cw || '' : undefined,
|
2018-03-04 18:03:54 -06:00
|
|
|
geo: this.geo ? {
|
2018-03-29 01:23:15 -05:00
|
|
|
coordinates: [this.geo.longitude, this.geo.latitude],
|
2018-03-04 18:03:54 -06: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-04-28 18:51:17 -05:00
|
|
|
visibility: this.visibility,
|
|
|
|
visibleUserIds: this.visibility == 'specified' ? this.visibleUsers.map(u => u.id) : undefined,
|
2018-11-15 14:47:29 -06:00
|
|
|
localOnly: this.localOnly,
|
2018-03-29 00:48:47 -05:00
|
|
|
viaMobile: viaMobile
|
2018-02-21 16:06:47 -06:00
|
|
|
}).then(data => {
|
2018-06-16 04:42:49 -05:00
|
|
|
this.$emit('posted');
|
2018-02-21 16:06:47 -06:00
|
|
|
}).catch(err => {
|
|
|
|
this.posting = false;
|
|
|
|
});
|
2018-07-19 15:29:56 -05:00
|
|
|
|
|
|
|
if (this.text && this.text != '') {
|
|
|
|
const hashtags = parse(this.text).filter(x => x.type == 'hashtag').map(x => x.hashtag);
|
2018-07-20 05:23:10 -05:00
|
|
|
const history = JSON.parse(localStorage.getItem('hashtags') || '[]') as string[];
|
2018-09-11 13:02:14 -05:00
|
|
|
localStorage.setItem('hashtags', JSON.stringify(unique(hashtags.concat(history))));
|
2018-07-19 15:29:56 -05:00
|
|
|
}
|
2018-02-21 16:06:47 -06:00
|
|
|
},
|
2018-04-22 03:04:52 -05:00
|
|
|
|
2018-02-13 22:26:08 -06:00
|
|
|
cancel() {
|
|
|
|
this.$emit('cancel');
|
2018-02-21 11:37:04 -06:00
|
|
|
},
|
2018-04-22 03:04:52 -05:00
|
|
|
|
2018-02-21 11:37:04 -06:00
|
|
|
kao() {
|
2018-08-17 14:13:25 -05:00
|
|
|
this.text += getFace();
|
2018-02-13 22:26:08 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="stylus" scoped>
|
2018-09-27 22:07:28 -05:00
|
|
|
.mk-post-form
|
2018-02-13 22:26:08 -06:00
|
|
|
max-width 500px
|
|
|
|
width calc(100% - 16px)
|
|
|
|
margin 8px auto
|
|
|
|
|
|
|
|
@media (min-width 500px)
|
|
|
|
margin 16px auto
|
|
|
|
width calc(100% - 32px)
|
2018-07-19 15:29:56 -05:00
|
|
|
|
|
|
|
> .form
|
|
|
|
box-shadow 0 8px 32px rgba(#000, 0.1)
|
2018-04-27 07:33:18 -05:00
|
|
|
|
|
|
|
@media (min-width 600px)
|
|
|
|
margin 32px auto
|
2018-02-13 22:26:08 -06:00
|
|
|
|
|
|
|
> .form
|
2018-09-26 06:28:13 -05:00
|
|
|
background var(--face)
|
2018-07-19 15:29:56 -05:00
|
|
|
border-radius 8px
|
|
|
|
box-shadow 0 0 2px rgba(#000, 0.1)
|
|
|
|
|
|
|
|
> header
|
|
|
|
z-index 1000
|
|
|
|
height 50px
|
2018-09-27 22:07:28 -05:00
|
|
|
box-shadow 0 1px 0 0 var(--mobilePostFormDivider)
|
2018-04-28 18:51:17 -05:00
|
|
|
|
2018-07-19 15:29:56 -05:00
|
|
|
> .cancel
|
|
|
|
padding 0
|
|
|
|
width 50px
|
|
|
|
line-height 50px
|
|
|
|
font-size 24px
|
2018-09-27 22:07:28 -05:00
|
|
|
color var(--text)
|
2018-07-19 15:29:56 -05:00
|
|
|
|
|
|
|
> div
|
|
|
|
position absolute
|
|
|
|
top 0
|
|
|
|
right 0
|
2018-09-27 22:07:28 -05:00
|
|
|
color var(--text)
|
2018-04-28 18:51:17 -05:00
|
|
|
|
2018-07-19 15:29:56 -05:00
|
|
|
> .text-count
|
|
|
|
line-height 50px
|
2018-04-28 18:51:17 -05:00
|
|
|
|
2018-07-19 15:29:56 -05:00
|
|
|
> .geo
|
|
|
|
margin 0 8px
|
|
|
|
line-height 50px
|
2018-02-13 22:26:08 -06:00
|
|
|
|
2018-07-19 15:29:56 -05:00
|
|
|
> .submit
|
|
|
|
margin 8px
|
|
|
|
padding 0 16px
|
|
|
|
line-height 34px
|
|
|
|
vertical-align bottom
|
2018-09-26 06:19:35 -05:00
|
|
|
color var(--primaryForeground)
|
|
|
|
background var(--primary)
|
2018-07-19 15:29:56 -05:00
|
|
|
border-radius 4px
|
2018-02-13 22:26:08 -06:00
|
|
|
|
2018-07-19 15:29:56 -05:00
|
|
|
&:disabled
|
|
|
|
opacity 0.7
|
2018-02-13 22:26:08 -06:00
|
|
|
|
2018-07-19 15:29:56 -05:00
|
|
|
> .form
|
|
|
|
max-width 500px
|
|
|
|
margin 0 auto
|
2018-02-13 22:26:08 -06:00
|
|
|
|
2018-09-13 03:44:36 -05:00
|
|
|
> .preview
|
2018-07-19 15:29:56 -05:00
|
|
|
padding 16px
|
2018-02-13 22:26:08 -06:00
|
|
|
|
2018-07-19 15:29:56 -05:00
|
|
|
> .visibleUsers
|
2018-07-27 23:08:41 -05:00
|
|
|
margin 5px
|
2018-07-19 15:29:56 -05:00
|
|
|
font-size 14px
|
2018-02-13 22:26:08 -06:00
|
|
|
|
2018-07-19 15:29:56 -05:00
|
|
|
> span
|
|
|
|
margin-right 16px
|
2018-09-27 22:07:28 -05:00
|
|
|
color var(--text)
|
2018-02-13 22:26:08 -06:00
|
|
|
|
2018-07-19 15:29:56 -05:00
|
|
|
> input
|
|
|
|
z-index 1
|
2018-05-07 02:39:00 -05:00
|
|
|
|
2018-07-19 15:29:56 -05:00
|
|
|
> input
|
|
|
|
> textarea
|
|
|
|
display block
|
|
|
|
padding 12px
|
2018-05-07 02:39:00 -05:00
|
|
|
margin 0
|
2018-07-19 15:29:56 -05:00
|
|
|
width 100%
|
|
|
|
font-size 16px
|
2018-09-27 22:07:28 -05:00
|
|
|
color var(--inputText)
|
|
|
|
background var(--mobilePostFormTextareaBg)
|
2018-05-07 02:39:00 -05:00
|
|
|
border none
|
|
|
|
border-radius 0
|
2018-09-27 22:07:28 -05:00
|
|
|
box-shadow 0 1px 0 0 var(--mobilePostFormDivider)
|
2018-07-19 15:29:56 -05:00
|
|
|
|
|
|
|
&:disabled
|
|
|
|
opacity 0.5
|
|
|
|
|
|
|
|
> textarea
|
|
|
|
max-width 100%
|
|
|
|
min-width 100%
|
|
|
|
min-height 80px
|
|
|
|
|
|
|
|
> .attaches
|
|
|
|
|
|
|
|
> .files
|
|
|
|
display block
|
|
|
|
margin 0
|
|
|
|
padding 4px
|
|
|
|
list-style none
|
|
|
|
|
|
|
|
&:after
|
|
|
|
content ""
|
|
|
|
display block
|
|
|
|
clear both
|
|
|
|
|
|
|
|
> .file
|
|
|
|
display block
|
|
|
|
float left
|
|
|
|
margin 0
|
|
|
|
padding 0
|
|
|
|
border solid 4px transparent
|
|
|
|
|
|
|
|
> .img
|
|
|
|
width 64px
|
|
|
|
height 64px
|
|
|
|
background-size cover
|
|
|
|
background-position center center
|
|
|
|
|
|
|
|
> .mk-uploader
|
|
|
|
margin 8px 0 0 0
|
|
|
|
padding 8px
|
|
|
|
|
|
|
|
> .file
|
|
|
|
display none
|
|
|
|
|
|
|
|
> footer
|
|
|
|
white-space nowrap
|
|
|
|
overflow auto
|
|
|
|
-webkit-overflow-scrolling touch
|
|
|
|
overflow-scrolling touch
|
|
|
|
|
|
|
|
> *
|
|
|
|
display inline-block
|
|
|
|
padding 0
|
|
|
|
margin 0
|
|
|
|
width 48px
|
|
|
|
height 48px
|
|
|
|
font-size 20px
|
2018-10-07 05:30:24 -05:00
|
|
|
color var(--mobilePostFormButton)
|
2018-07-19 15:29:56 -05:00
|
|
|
background transparent
|
|
|
|
outline none
|
|
|
|
border none
|
|
|
|
border-radius 0
|
|
|
|
box-shadow none
|
|
|
|
|
|
|
|
> .hashtags
|
2018-07-20 12:58:44 -05:00
|
|
|
margin 8px
|
|
|
|
|
2018-07-19 15:29:56 -05:00
|
|
|
> *
|
2018-07-20 12:58:44 -05:00
|
|
|
margin-right 8px
|
2018-02-13 22:26:08 -06:00
|
|
|
|
2018-04-28 18:51:17 -05:00
|
|
|
</style>
|