2018-02-13 00:11:10 +01:00
|
|
|
<template>
|
2018-06-09 20:27:10 +02:00
|
|
|
<div style="position:initial">
|
2018-12-29 17:32:58 +01:00
|
|
|
<mk-menu :source="source" :items="items" @closed="closed"/>
|
2018-02-13 00:11:10 +01:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
2018-11-08 19:44:35 +01:00
|
|
|
import i18n from '../../../i18n';
|
2018-09-01 02:42:25 +02:00
|
|
|
import { url } from '../../../config';
|
|
|
|
import copyToClipboard from '../../../common/scripts/copy-to-clipboard';
|
2018-11-09 14:35:33 +01:00
|
|
|
import { concat, intersperse } from '../../../../../prelude/array';
|
2019-01-22 21:25:46 +01:00
|
|
|
import { faCopy } from '@fortawesome/free-regular-svg-icons';
|
2018-02-13 00:11:10 +01:00
|
|
|
|
|
|
|
export default Vue.extend({
|
2018-11-08 19:44:35 +01:00
|
|
|
i18n: i18n('common/views/components/note-menu.vue'),
|
2018-12-29 17:32:58 +01:00
|
|
|
props: ['note', 'source'],
|
2019-02-04 17:11:06 +01:00
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
isFavorited: false
|
|
|
|
};
|
|
|
|
},
|
2018-06-05 22:18:08 +02:00
|
|
|
computed: {
|
2018-11-09 14:35:33 +01:00
|
|
|
items(): any[] {
|
2019-02-04 17:11:06 +01:00
|
|
|
return [{
|
|
|
|
icon: 'at',
|
|
|
|
text: this.$t('mention'),
|
|
|
|
action: this.mention
|
|
|
|
}, null, {
|
|
|
|
icon: 'info-circle',
|
|
|
|
text: this.$t('detail'),
|
|
|
|
action: this.detail
|
|
|
|
}, {
|
|
|
|
icon: faCopy,
|
|
|
|
text: this.$t('copy-content'),
|
|
|
|
action: this.copyContent
|
|
|
|
}, {
|
|
|
|
icon: 'link',
|
|
|
|
text: this.$t('copy-link'),
|
|
|
|
action: this.copyLink
|
|
|
|
}, this.note.uri ? {
|
|
|
|
icon: 'external-link-square-alt',
|
|
|
|
text: this.$t('remote'),
|
|
|
|
action: () => {
|
|
|
|
window.open(this.note.uri, '_blank');
|
|
|
|
}
|
|
|
|
} : undefined,
|
|
|
|
null,
|
|
|
|
this.isFavorited ? {
|
|
|
|
icon: 'star',
|
|
|
|
text: this.$t('unfavorite'),
|
|
|
|
action: this.unfavorite
|
|
|
|
} : {
|
|
|
|
icon: 'star',
|
|
|
|
text: this.$t('favorite'),
|
|
|
|
action: this.favorite
|
|
|
|
},
|
|
|
|
this.note.userId == this.$store.state.i.id ? (this.$store.state.i.pinnedNoteIds || []).includes(this.note.id) ? {
|
|
|
|
icon: 'thumbtack',
|
|
|
|
text: this.$t('unpin'),
|
|
|
|
action: this.unpin
|
|
|
|
} : {
|
|
|
|
icon: 'thumbtack',
|
|
|
|
text: this.$t('pin'),
|
|
|
|
action: this.pin
|
|
|
|
} : undefined,
|
|
|
|
null,
|
|
|
|
this.note.userId == this.$store.state.i.id || this.$store.state.i.isAdmin || this.$store.state.i.isModerator ? {
|
|
|
|
icon: ['far', 'trash-alt'],
|
|
|
|
text: this.$t('delete'),
|
|
|
|
action: this.del
|
|
|
|
} : undefined].filter(x => x !== undefined)
|
2018-06-05 22:18:08 +02:00
|
|
|
}
|
2018-02-13 00:11:10 +01:00
|
|
|
},
|
2018-09-24 09:26:12 +02:00
|
|
|
|
2019-02-04 17:11:06 +01:00
|
|
|
created() {
|
|
|
|
this.$root.api('notes/state', {
|
|
|
|
noteId: this.note.id
|
|
|
|
}).then(state => {
|
|
|
|
this.isFavorited = state.isFavorited;
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2018-02-13 00:11:10 +01:00
|
|
|
methods: {
|
2018-12-27 15:14:30 +01:00
|
|
|
mention() {
|
|
|
|
this.$post({ mention: this.note.user });
|
|
|
|
},
|
|
|
|
|
2018-09-01 02:42:25 +02:00
|
|
|
detail() {
|
2018-11-09 14:35:33 +01:00
|
|
|
this.$router.push(`/notes/${this.note.id}`);
|
2018-09-01 02:42:25 +02:00
|
|
|
},
|
|
|
|
|
2019-01-06 09:45:14 +01:00
|
|
|
copyContent() {
|
|
|
|
copyToClipboard(this.note.text);
|
2019-01-22 21:20:28 +01:00
|
|
|
this.$root.dialog({
|
|
|
|
type: 'success',
|
|
|
|
splash: true
|
|
|
|
});
|
2019-01-06 09:45:14 +01:00
|
|
|
},
|
|
|
|
|
2018-09-01 02:42:25 +02:00
|
|
|
copyLink() {
|
2018-11-09 14:35:33 +01:00
|
|
|
copyToClipboard(`${url}/notes/${this.note.id}`);
|
2019-01-22 21:20:28 +01:00
|
|
|
this.$root.dialog({
|
|
|
|
type: 'success',
|
|
|
|
splash: true
|
|
|
|
});
|
2018-09-01 02:42:25 +02:00
|
|
|
},
|
|
|
|
|
2018-02-13 00:11:10 +01:00
|
|
|
pin() {
|
2018-11-09 00:13:34 +01:00
|
|
|
this.$root.api('i/pin', {
|
2018-04-07 19:30:37 +02:00
|
|
|
noteId: this.note.id
|
2018-02-13 00:11:10 +01:00
|
|
|
}).then(() => {
|
2018-12-02 07:28:52 +01:00
|
|
|
this.$root.dialog({
|
2018-11-14 16:01:49 +01:00
|
|
|
type: 'success',
|
|
|
|
splash: true
|
|
|
|
});
|
2018-09-15 14:53:04 +02:00
|
|
|
this.destroyDom();
|
2018-02-13 00:11:10 +01:00
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2018-09-24 09:26:12 +02:00
|
|
|
unpin() {
|
2018-11-09 00:13:34 +01:00
|
|
|
this.$root.api('i/unpin', {
|
2018-09-24 09:26:12 +02:00
|
|
|
noteId: this.note.id
|
|
|
|
}).then(() => {
|
|
|
|
this.destroyDom();
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2018-05-28 07:39:46 +02:00
|
|
|
del() {
|
2018-12-02 07:28:52 +01:00
|
|
|
this.$root.dialog({
|
2018-11-14 12:36:15 +01:00
|
|
|
type: 'warning',
|
|
|
|
text: this.$t('delete-confirm'),
|
|
|
|
showCancelButton: true
|
2018-12-02 12:10:53 +01:00
|
|
|
}).then(({ canceled }) => {
|
|
|
|
if (canceled) return;
|
2018-11-14 12:36:15 +01:00
|
|
|
|
|
|
|
this.$root.api('notes/delete', {
|
|
|
|
noteId: this.note.id
|
|
|
|
}).then(() => {
|
|
|
|
this.destroyDom();
|
|
|
|
});
|
2018-05-28 07:39:46 +02:00
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2018-04-20 06:31:43 +02:00
|
|
|
favorite() {
|
2018-11-09 00:13:34 +01:00
|
|
|
this.$root.api('notes/favorites/create', {
|
2018-04-20 06:31:43 +02:00
|
|
|
noteId: this.note.id
|
|
|
|
}).then(() => {
|
2018-12-02 07:28:52 +01:00
|
|
|
this.$root.dialog({
|
2018-11-14 16:01:49 +01:00
|
|
|
type: 'success',
|
|
|
|
splash: true
|
|
|
|
});
|
2018-09-15 14:53:04 +02:00
|
|
|
this.destroyDom();
|
2018-04-20 06:31:43 +02:00
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2018-10-12 17:54:30 +02:00
|
|
|
unfavorite() {
|
2018-11-09 00:13:34 +01:00
|
|
|
this.$root.api('notes/favorites/delete', {
|
2018-10-12 17:54:30 +02:00
|
|
|
noteId: this.note.id
|
|
|
|
}).then(() => {
|
2018-12-02 07:28:52 +01:00
|
|
|
this.$root.dialog({
|
2018-11-14 16:01:49 +01:00
|
|
|
type: 'success',
|
|
|
|
splash: true
|
|
|
|
});
|
2018-10-12 17:54:30 +02:00
|
|
|
this.destroyDom();
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2018-06-09 20:27:10 +02:00
|
|
|
closed() {
|
|
|
|
this.$nextTick(() => {
|
2018-09-15 14:53:04 +02:00
|
|
|
this.destroyDom();
|
2018-06-09 20:27:10 +02:00
|
|
|
});
|
2018-02-13 00:11:10 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|