summaryrefslogtreecommitdiff
path: root/src/client/app/common/scripts/post-form.ts
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2020-01-30 04:37:25 +0900
committerGitHub <noreply@github.com>2020-01-30 04:37:25 +0900
commitf6154dc0af1a0d65819e87240f4385f9573095cb (patch)
tree699a5ca07d6727b7f8497d4769f25d6d62f94b5a /src/client/app/common/scripts/post-form.ts
parentAdd Event activity-type support (#5785) (diff)
downloadmisskey-f6154dc0af1a0d65819e87240f4385f9573095cb.tar.gz
misskey-f6154dc0af1a0d65819e87240f4385f9573095cb.tar.bz2
misskey-f6154dc0af1a0d65819e87240f4385f9573095cb.zip
v12 (#5712)
Co-authored-by: MeiMei <30769358+mei23@users.noreply.github.com> Co-authored-by: Satsuki Yanagi <17376330+u1-liquid@users.noreply.github.com>
Diffstat (limited to 'src/client/app/common/scripts/post-form.ts')
-rw-r--r--src/client/app/common/scripts/post-form.ts537
1 files changed, 0 insertions, 537 deletions
diff --git a/src/client/app/common/scripts/post-form.ts b/src/client/app/common/scripts/post-form.ts
deleted file mode 100644
index 496782fd30..0000000000
--- a/src/client/app/common/scripts/post-form.ts
+++ /dev/null
@@ -1,537 +0,0 @@
-import insertTextAtCursor from 'insert-text-at-cursor';
-import { length } from 'stringz';
-import { toASCII } from 'punycode';
-import MkVisibilityChooser from '../views/components/visibility-chooser.vue';
-import getFace from './get-face';
-import { parse } from '../../../../mfm/parse';
-import { host, url } from '../../config';
-import i18n from '../../i18n';
-import { erase, unique } from '../../../../prelude/array';
-import extractMentions from '../../../../misc/extract-mentions';
-import { formatTimeString } from '../../../../misc/format-time-string';
-
-export default (opts) => ({
- i18n: i18n(),
-
- components: {
- XPostFormAttaches: () => import('../views/components/post-form-attaches.vue').then(m => m.default),
- XPollEditor: () => import('../views/components/poll-editor.vue').then(m => m.default)
- },
-
- props: {
- reply: {
- type: Object,
- required: false
- },
- renote: {
- type: Object,
- required: false
- },
- mention: {
- type: Object,
- required: false
- },
- initialText: {
- type: String,
- required: false
- },
- initialNote: {
- type: Object,
- required: false
- },
- instant: {
- type: Boolean,
- required: false,
- default: false
- }
- },
-
- data() {
- return {
- posting: false,
- text: '',
- files: [],
- uploadings: [],
- poll: false,
- pollChoices: [],
- pollMultiple: false,
- pollExpiration: [],
- useCw: false,
- cw: null,
- geo: null,
- visibility: 'public',
- visibleUsers: [],
- localOnly: false,
- autocomplete: null,
- draghover: false,
- quoteId: null,
- recentHashtags: JSON.parse(localStorage.getItem('hashtags') || '[]'),
- maxNoteTextLength: 1000
- };
- },
-
- computed: {
- draftId(): string {
- return this.renote
- ? `renote:${this.renote.id}`
- : this.reply
- ? `reply:${this.reply.id}`
- : 'note';
- },
-
- placeholder(): string {
- const xs = [
- 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')
- ];
- const x = xs[Math.floor(Math.random() * xs.length)];
-
- return this.renote
- ? opts.mobile ? this.$t('@.post-form.option-quote-placeholder') : this.$t('@.post-form.quote-placeholder')
- : this.reply
- ? this.$t('@.post-form.reply-placeholder')
- : x;
- },
-
- submitText(): string {
- return this.renote
- ? this.$t('@.post-form.renote')
- : this.reply
- ? this.$t('@.post-form.reply')
- : this.$t('@.post-form.submit');
- },
-
- canPost(): boolean {
- return !this.posting &&
- (1 <= this.text.length || 1 <= this.files.length || this.poll || this.renote) &&
- (length(this.text.trim()) <= this.maxNoteTextLength) &&
- (!this.poll || this.pollChoices.length >= 2);
- }
- },
-
- created() {
- this.$root.getMeta().then(meta => {
- this.maxNoteTextLength = meta.maxNoteTextLength;
- });
- },
-
- mounted() {
- if (this.initialText) {
- this.text = this.initialText;
- }
-
- if (this.mention) {
- this.text = this.mention.host ? `@${this.mention.username}@${toASCII(this.mention.host)}` : `@${this.mention.username}`;
- this.text += ' ';
- }
-
- if (this.reply && this.reply.user.host != null) {
- this.text = `@${this.reply.user.username}@${toASCII(this.reply.user.host)} `;
- }
-
- if (this.reply && this.reply.text != null) {
- const ast = parse(this.reply.text);
-
- for (const x of extractMentions(ast)) {
- const mention = x.host ? `@${x.username}@${toASCII(x.host)}` : `@${x.username}`;
-
- // 自分は除外
- if (this.$store.state.i.username == x.username && x.host == null) continue;
- if (this.$store.state.i.username == x.username && x.host == host) continue;
-
- // 重複は除外
- if (this.text.indexOf(`${mention} `) != -1) continue;
-
- this.text += `${mention} `;
- }
- }
-
- // デフォルト公開範囲
- this.applyVisibility(this.$store.state.settings.rememberNoteVisibility ? (this.$store.state.device.visibility || this.$store.state.settings.defaultNoteVisibility) : this.$store.state.settings.defaultNoteVisibility);
-
- if (this.reply && this.reply.localOnly) {
- this.localOnly = true;
- }
-
- // 公開以外へのリプライ時は元の公開範囲を引き継ぐ
- if (this.reply && ['home', 'followers', 'specified'].includes(this.reply.visibility)) {
- this.visibility = this.reply.visibility;
- if (this.reply.visibility === 'specified') {
- this.$root.api('users/show', {
- userIds: this.reply.visibleUserIds.filter(uid => uid !== this.$store.state.i.id && uid !== this.reply.userId)
- }).then(users => {
- this.visibleUsers.push(...users);
- });
-
- if (this.reply.userId !== this.$store.state.i.id) {
- this.$root.api('users/show', { userId: this.reply.userId }).then(user => {
- this.visibleUsers.push(user);
- });
- }
- }
- }
-
- // keep cw when reply
- if (this.$store.state.settings.keepCw && this.reply && this.reply.cw) {
- this.useCw = true;
- this.cw = this.reply.cw;
- }
-
- this.focus();
-
- this.$nextTick(() => {
- this.focus();
- });
-
- this.$nextTick(() => {
- // 書きかけの投稿を復元
- if (!this.instant && !this.mention) {
- const draft = JSON.parse(localStorage.getItem('drafts') || '{}')[this.draftId];
- if (draft) {
- this.text = draft.data.text;
- this.files = (draft.data.files || []).filter(e => e);
- if (draft.data.poll) {
- this.poll = true;
- this.$nextTick(() => {
- (this.$refs.poll as any).set(draft.data.poll);
- });
- }
- this.$emit('change-attached-files', this.files);
- }
- }
-
- // 削除して編集
- if (this.initialNote) {
- const init = this.initialNote;
- this.text = init.text ? init.text : '';
- this.files = init.files;
- this.cw = init.cw;
- this.useCw = init.cw != null;
- if (init.poll) {
- this.poll = true;
- this.$nextTick(() => {
- (this.$refs.poll as any).set({
- choices: init.poll.choices.map(c => c.text),
- multiple: init.poll.multiple
- });
- });
- }
- // hack 位置情報投稿が動くようになったら適用する
- this.geo = null;
- this.visibility = init.visibility;
- this.localOnly = init.localOnly;
- this.quoteId = init.renote ? init.renote.id : null;
- }
-
- this.$nextTick(() => this.watch());
- });
- },
-
- methods: {
- watch() {
- this.$watch('text', () => this.saveDraft());
- this.$watch('poll', () => this.saveDraft());
- this.$watch('files', () => this.saveDraft());
- },
-
- trimmedLength(text: string) {
- return length(text.trim());
- },
-
- addTag(tag: string) {
- insertTextAtCursor(this.$refs.text, ` #${tag} `);
- },
-
- focus() {
- (this.$refs.text as any).focus();
- },
-
- chooseFile() {
- (this.$refs.file as any).click();
- },
-
- chooseFileFromDrive() {
- this.$chooseDriveFile({
- multiple: true
- }).then(files => {
- for (const x of files) this.attachMedia(x);
- });
- },
-
- attachMedia(driveFile) {
- this.files.push(driveFile);
- this.$emit('change-attached-files', this.files);
- },
-
- detachMedia(id) {
- this.files = this.files.filter(x => x.id != id);
- this.$emit('change-attached-files', this.files);
- },
-
- onChangeFile() {
- for (const x of Array.from((this.$refs.file as any).files)) this.upload(x);
- },
-
- upload(file: File, name?: string) {
- (this.$refs.uploader as any).upload(file, this.$store.state.settings.uploadFolder, name);
- },
-
- onChangeUploadings(uploads) {
- this.$emit('change-uploadings', uploads);
- },
-
- onPollUpdate() {
- const got = this.$refs.poll.get();
- this.pollChoices = got.choices;
- this.pollMultiple = got.multiple;
- this.pollExpiration = [got.expiration, got.expiresAt || got.expiredAfter];
- this.saveDraft();
- },
-
- setGeo() {
- if (navigator.geolocation == null) {
- this.$root.dialog({
- type: 'warning',
- text: this.$t('@.post-form.geolocation-alert')
- });
- return;
- }
-
- navigator.geolocation.getCurrentPosition(pos => {
- this.geo = pos.coords;
- this.$emit('geo-attached', this.geo);
- }, err => {
- this.$root.dialog({
- type: 'error',
- title: this.$t('@.post-form.error'),
- text: err.message
- });
- }, {
- enableHighAccuracy: true
- });
- },
-
- removeGeo() {
- this.geo = null;
- this.$emit('geo-dettached');
- },
-
- setVisibility() {
- const w = this.$root.new(MkVisibilityChooser, {
- source: this.$refs.visibilityButton,
- currentVisibility: this.localOnly ? `local-${this.visibility}` : this.visibility
- });
- w.$once('chosen', v => {
- this.applyVisibility(v);
- });
- this.$once('hook:beforeDestroy', () => {
- w.close();
- });
- },
-
- applyVisibility(v: string) {
- const m = v.match(/^local-(.+)/);
- if (m) {
- this.localOnly = true;
- this.visibility = m[1];
- } else {
- this.localOnly = false;
- this.visibility = v;
- }
- },
-
- addVisibleUser() {
- this.$root.dialog({
- title: this.$t('@.post-form.enter-username'),
- user: true
- }).then(({ canceled, result: user }) => {
- if (canceled) return;
- this.visibleUsers.push(user);
- });
- },
-
- removeVisibleUser(user) {
- this.visibleUsers = erase(user, this.visibleUsers);
- },
-
- clear() {
- this.text = '';
- this.files = [];
- this.poll = false;
- this.quoteId = null;
- this.$emit('change-attached-files', this.files);
- },
-
- onKeydown(e) {
- if ((e.which == 10 || e.which == 13) && (e.ctrlKey || e.metaKey) && this.canPost) this.post();
- },
-
- async onPaste(e: ClipboardEvent) {
- for (const { item, i } of Array.from(e.clipboardData.items).map((item, i) => ({item, i}))) {
- if (item.kind == 'file') {
- const file = item.getAsFile();
- const lio = file.name.lastIndexOf('.');
- const ext = lio >= 0 ? file.name.slice(lio) : '';
- const formatted = `${formatTimeString(new Date(file.lastModified), this.$store.state.settings.pastedFileName).replace(/{{number}}/g, `${i + 1}`)}${ext}`;
- const name = this.$store.state.settings.pasteDialog
- ? await this.$root.dialog({
- title: this.$t('@.post-form.enter-file-name'),
- input: {
- default: formatted
- },
- allowEmpty: false
- }).then(({ canceled, result }) => canceled ? false : result)
- : formatted;
- if (name) this.upload(file, name);
- }
- }
-
- const paste = e.clipboardData.getData('text');
-
- if (!this.renote && !this.quoteId && paste.startsWith(url + '/notes/')) {
- e.preventDefault();
-
- this.$root.dialog({
- type: 'info',
- text: this.$t('@.post-form.quote-question'),
- showCancelButton: true
- }).then(({ canceled }) => {
- if (canceled) {
- insertTextAtCursor(this.$refs.text, paste);
- return;
- }
-
- this.quoteId = paste.substr(url.length).match(/^\/notes\/(.+?)\/?$/)[1];
- });
- }
- },
-
- onDragover(e) {
- 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';
- }
- },
-
- onDragenter(e) {
- this.draghover = true;
- },
-
- onDragleave(e) {
- this.draghover = false;
- },
-
- onDrop(e): void {
- this.draghover = false;
-
- // ファイルだったら
- if (e.dataTransfer.files.length > 0) {
- e.preventDefault();
- for (const x of Array.from(e.dataTransfer.files)) this.upload(x);
- return;
- }
-
- //#region ドライブのファイル
- const driveFile = e.dataTransfer.getData('mk_drive_file');
- if (driveFile != null && driveFile != '') {
- const file = JSON.parse(driveFile);
- this.files.push(file);
- this.$emit('change-attached-files', this.files);
- e.preventDefault();
- }
- //#endregion
- },
-
- async emoji() {
- const Picker = await import('../../desktop/views/components/emoji-picker-dialog.vue').then(m => m.default);
- const button = this.$refs.emoji;
- const rect = button.getBoundingClientRect();
- const vm = this.$root.new(Picker, {
- x: button.offsetWidth + rect.left + window.pageXOffset,
- y: rect.top + window.pageYOffset
- });
- vm.$once('chosen', emoji => {
- insertTextAtCursor(this.$refs.text, emoji);
- });
- this.$once('hook:beforeDestroy', () => {
- vm.close();
- });
- },
-
- saveDraft() {
- if (this.instant) return;
-
- const data = JSON.parse(localStorage.getItem('drafts') || '{}');
-
- data[this.draftId] = {
- updatedAt: 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 += getFace();
- },
-
- post() {
- this.posting = true;
- const viaMobile = opts.mobile && !this.$store.state.settings.disableViaMobile;
- this.$root.api('notes/create', {
- text: this.text == '' ? undefined : this.text,
- fileIds: this.files.length > 0 ? this.files.map(f => f.id) : undefined,
- replyId: this.reply ? this.reply.id : undefined,
- renoteId: this.renote ? this.renote.id : this.quoteId ? this.quoteId : undefined,
- poll: this.poll ? (this.$refs.poll as any).get() : undefined,
- cw: this.useCw ? this.cw || '' : undefined,
- visibility: this.visibility,
- visibleUserIds: this.visibility == 'specified' ? this.visibleUsers.map(u => u.id) : undefined,
- localOnly: this.localOnly,
- geo: this.geo ? {
- coordinates: [this.geo.longitude, this.geo.latitude],
- 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,
- viaMobile: viaMobile
- }).then(data => {
- this.clear();
- this.deleteDraft();
- this.$emit('posted');
- if (opts.onSuccess) opts.onSuccess(this);
- }).catch(err => {
- if (opts.onSuccess) opts.onFailure(this);
- }).then(() => {
- this.posting = false;
- });
-
- if (this.text && this.text != '') {
- const hashtags = parse(this.text).filter(x => x.node.type === 'hashtag').map(x => x.node.props.hashtag);
- const history = JSON.parse(localStorage.getItem('hashtags') || '[]') as string[];
- localStorage.setItem('hashtags', JSON.stringify(unique(hashtags.concat(history))));
- }
- },
- }
-});