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';
|
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'],
|
2018-06-05 22:18:08 +02:00
|
|
|
computed: {
|
2018-11-09 14:35:33 +01:00
|
|
|
items(): any[] {
|
|
|
|
return concat(intersperse([null], [
|
2018-12-27 15:14:30 +01:00
|
|
|
[
|
|
|
|
[{
|
|
|
|
icon: 'at',
|
|
|
|
text: this.$t('mention'),
|
|
|
|
action: this.mention
|
|
|
|
}]
|
|
|
|
],
|
2018-11-09 14:35:33 +01:00
|
|
|
[
|
|
|
|
[{
|
|
|
|
icon: 'info-circle',
|
|
|
|
text: this.$t('detail'),
|
|
|
|
action: this.detail
|
|
|
|
}], [{
|
|
|
|
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');
|
|
|
|
}
|
|
|
|
}] : []
|
|
|
|
],
|
|
|
|
[
|
|
|
|
this.note.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 ? [
|
2018-11-09 14:40:17 +01:00
|
|
|
(this.$store.state.i.pinnedNoteIds || []).includes(this.note.id) ? {
|
2018-11-09 14:35:33 +01:00
|
|
|
icon: 'thumbtack',
|
|
|
|
text: this.$t('unpin'),
|
|
|
|
action: this.unpin
|
2018-11-09 14:40:17 +01:00
|
|
|
} : {
|
|
|
|
icon: 'thumbtack',
|
|
|
|
text: this.$t('pin'),
|
|
|
|
action: this.pin
|
|
|
|
}
|
2018-11-09 14:35:33 +01:00
|
|
|
] : []
|
|
|
|
], [
|
2018-11-14 20:15:42 +01:00
|
|
|
this.note.userId == this.$store.state.i.id || this.$store.state.i.isAdmin || this.$store.state.i.isModerator ? [{
|
2018-11-09 14:35:33 +01:00
|
|
|
icon: ['far', 'trash-alt'],
|
|
|
|
text: this.$t('delete'),
|
|
|
|
action: this.del
|
|
|
|
}] : []
|
|
|
|
]
|
|
|
|
].map(concat).filter(x => x.length > 0)));
|
2018-06-05 22:18:08 +02:00
|
|
|
}
|
2018-02-13 00:11:10 +01:00
|
|
|
},
|
2018-09-24 09:26:12 +02:00
|
|
|
|
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
|
|
|
},
|
|
|
|
|
|
|
|
copyLink() {
|
2018-11-09 14:35:33 +01:00
|
|
|
copyToClipboard(`${url}/notes/${this.note.id}`);
|
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>
|