2018-02-13 00:11:10 +01:00
|
|
|
<template>
|
2018-06-09 20:27:10 +02:00
|
|
|
<div style="position:initial">
|
|
|
|
<mk-menu :source="source" :compact="compact" :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-10-10 13:02:56 +02:00
|
|
|
import Ok from './ok.vue';
|
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-04-07 19:30:37 +02:00
|
|
|
props: ['note', 'source', 'compact'],
|
2018-06-05 22:18:08 +02:00
|
|
|
computed: {
|
|
|
|
items() {
|
2018-09-01 02:42:25 +02:00
|
|
|
const items = [{
|
2018-11-05 17:40:11 +01:00
|
|
|
icon: 'info-circle',
|
2018-11-08 19:44:35 +01:00
|
|
|
text: this.$t('detail'),
|
2018-09-01 02:42:25 +02:00
|
|
|
action: this.detail
|
|
|
|
}, {
|
2018-11-05 17:40:11 +01:00
|
|
|
icon: 'link',
|
2018-11-08 19:44:35 +01:00
|
|
|
text: this.$t('copy-link'),
|
2018-09-01 02:42:25 +02:00
|
|
|
action: this.copyLink
|
2018-10-13 05:51:01 +02:00
|
|
|
}];
|
|
|
|
|
|
|
|
if (this.note.uri) {
|
|
|
|
items.push({
|
2018-11-05 17:40:11 +01:00
|
|
|
icon: 'external-link-square-alt',
|
2018-11-08 19:44:35 +01:00
|
|
|
text: this.$t('remote'),
|
2018-10-13 05:51:01 +02:00
|
|
|
action: () => {
|
|
|
|
window.open(this.note.uri, '_blank');
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
items.push(null);
|
2018-10-12 17:54:30 +02:00
|
|
|
|
|
|
|
if (this.note.isFavorited) {
|
|
|
|
items.push({
|
2018-11-05 17:40:11 +01:00
|
|
|
icon: 'star',
|
2018-11-08 19:44:35 +01:00
|
|
|
text: this.$t('unfavorite'),
|
2018-10-12 17:54:30 +02:00
|
|
|
action: this.unfavorite
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
items.push({
|
2018-11-05 17:40:11 +01:00
|
|
|
icon: 'star',
|
2018-11-08 19:44:35 +01:00
|
|
|
text: this.$t('favorite'),
|
2018-10-12 17:54:30 +02:00
|
|
|
action: this.favorite
|
|
|
|
});
|
|
|
|
}
|
2018-09-01 02:42:25 +02:00
|
|
|
|
2018-06-05 22:18:08 +02:00
|
|
|
if (this.note.userId == this.$store.state.i.id) {
|
2018-09-25 13:44:26 +02:00
|
|
|
if ((this.$store.state.i.pinnedNoteIds || []).includes(this.note.id)) {
|
2018-09-24 09:26:12 +02:00
|
|
|
items.push({
|
2018-11-05 17:40:11 +01:00
|
|
|
icon: 'thumbtack',
|
2018-11-08 19:44:35 +01:00
|
|
|
text: this.$t('unpin'),
|
2018-09-24 09:26:12 +02:00
|
|
|
action: this.unpin
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
items.push({
|
2018-11-05 17:40:11 +01:00
|
|
|
icon: 'thumbtack',
|
2018-11-08 19:44:35 +01:00
|
|
|
text: this.$t('pin'),
|
2018-09-24 09:26:12 +02:00
|
|
|
action: this.pin
|
|
|
|
});
|
|
|
|
}
|
2018-09-19 10:29:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (this.note.userId == this.$store.state.i.id || this.$store.state.i.isAdmin) {
|
2018-10-12 17:54:30 +02:00
|
|
|
items.push(null);
|
2018-06-05 22:18:08 +02:00
|
|
|
items.push({
|
2018-11-05 17:40:11 +01:00
|
|
|
icon: ['far', 'trash-alt'],
|
2018-11-08 19:44:35 +01:00
|
|
|
text: this.$t('delete'),
|
2018-06-08 04:46:45 +02:00
|
|
|
action: this.del
|
2018-06-05 22:18:08 +02:00
|
|
|
});
|
|
|
|
}
|
2018-09-19 10:29:03 +02:00
|
|
|
|
2018-06-05 22:18:08 +02:00
|
|
|
return items;
|
|
|
|
}
|
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-09-01 02:42:25 +02:00
|
|
|
detail() {
|
|
|
|
this.$router.push(`/notes/${ this.note.id }`);
|
|
|
|
},
|
|
|
|
|
|
|
|
copyLink() {
|
|
|
|
copyToClipboard(`${url}/notes/${ this.note.id }`);
|
|
|
|
},
|
|
|
|
|
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-11-09 00:13:34 +01:00
|
|
|
this.$root.new(Ok);
|
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-11-08 19:44:35 +01:00
|
|
|
if (!window.confirm(this.$t('delete-confirm'))) return;
|
2018-11-09 00:13:34 +01:00
|
|
|
this.$root.api('notes/delete', {
|
2018-05-28 07:39:46 +02:00
|
|
|
noteId: this.note.id
|
|
|
|
}).then(() => {
|
2018-09-15 14:53:04 +02:00
|
|
|
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-11-09 00:13:34 +01:00
|
|
|
this.$root.new(Ok);
|
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-11-09 00:13:34 +01:00
|
|
|
this.$root.new(Ok);
|
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>
|