2018-02-13 01:11:10 +02:00
|
|
|
<template>
|
2018-06-09 21:27:10 +03:00
|
|
|
<div style="position:initial">
|
|
|
|
<mk-menu :source="source" :compact="compact" :items="items" @closed="closed"/>
|
2018-02-13 01:11:10 +02:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
2018-11-08 20:44:35 +02:00
|
|
|
import i18n from '../../../i18n';
|
2018-09-01 03:42:25 +03:00
|
|
|
import { url } from '../../../config';
|
|
|
|
import copyToClipboard from '../../../common/scripts/copy-to-clipboard';
|
2018-10-10 14:02:56 +03:00
|
|
|
import Ok from './ok.vue';
|
2018-02-13 01:11:10 +02:00
|
|
|
|
|
|
|
export default Vue.extend({
|
2018-11-08 20:44:35 +02:00
|
|
|
i18n: i18n('common/views/components/note-menu.vue'),
|
2018-04-07 20:30:37 +03:00
|
|
|
props: ['note', 'source', 'compact'],
|
2018-06-05 23:18:08 +03:00
|
|
|
computed: {
|
|
|
|
items() {
|
2018-09-01 03:42:25 +03:00
|
|
|
const items = [{
|
2018-11-05 18:40:11 +02:00
|
|
|
icon: 'info-circle',
|
2018-11-08 20:44:35 +02:00
|
|
|
text: this.$t('detail'),
|
2018-09-01 03:42:25 +03:00
|
|
|
action: this.detail
|
|
|
|
}, {
|
2018-11-05 18:40:11 +02:00
|
|
|
icon: 'link',
|
2018-11-08 20:44:35 +02:00
|
|
|
text: this.$t('copy-link'),
|
2018-09-01 03:42:25 +03:00
|
|
|
action: this.copyLink
|
2018-10-13 06:51:01 +03:00
|
|
|
}];
|
|
|
|
|
|
|
|
if (this.note.uri) {
|
|
|
|
items.push({
|
2018-11-05 18:40:11 +02:00
|
|
|
icon: 'external-link-square-alt',
|
2018-11-08 20:44:35 +02:00
|
|
|
text: this.$t('remote'),
|
2018-10-13 06:51:01 +03:00
|
|
|
action: () => {
|
|
|
|
window.open(this.note.uri, '_blank');
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
items.push(null);
|
2018-10-12 18:54:30 +03:00
|
|
|
|
|
|
|
if (this.note.isFavorited) {
|
|
|
|
items.push({
|
2018-11-05 18:40:11 +02:00
|
|
|
icon: 'star',
|
2018-11-08 20:44:35 +02:00
|
|
|
text: this.$t('unfavorite'),
|
2018-10-12 18:54:30 +03:00
|
|
|
action: this.unfavorite
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
items.push({
|
2018-11-05 18:40:11 +02:00
|
|
|
icon: 'star',
|
2018-11-08 20:44:35 +02:00
|
|
|
text: this.$t('favorite'),
|
2018-10-12 18:54:30 +03:00
|
|
|
action: this.favorite
|
|
|
|
});
|
|
|
|
}
|
2018-09-01 03:42:25 +03:00
|
|
|
|
2018-06-05 23:18:08 +03:00
|
|
|
if (this.note.userId == this.$store.state.i.id) {
|
2018-09-25 14:44:26 +03:00
|
|
|
if ((this.$store.state.i.pinnedNoteIds || []).includes(this.note.id)) {
|
2018-09-24 10:26:12 +03:00
|
|
|
items.push({
|
2018-11-05 18:40:11 +02:00
|
|
|
icon: 'thumbtack',
|
2018-11-08 20:44:35 +02:00
|
|
|
text: this.$t('unpin'),
|
2018-09-24 10:26:12 +03:00
|
|
|
action: this.unpin
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
items.push({
|
2018-11-05 18:40:11 +02:00
|
|
|
icon: 'thumbtack',
|
2018-11-08 20:44:35 +02:00
|
|
|
text: this.$t('pin'),
|
2018-09-24 10:26:12 +03:00
|
|
|
action: this.pin
|
|
|
|
});
|
|
|
|
}
|
2018-09-19 11:29:03 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
if (this.note.userId == this.$store.state.i.id || this.$store.state.i.isAdmin) {
|
2018-10-12 18:54:30 +03:00
|
|
|
items.push(null);
|
2018-06-05 23:18:08 +03:00
|
|
|
items.push({
|
2018-11-05 18:40:11 +02:00
|
|
|
icon: ['far', 'trash-alt'],
|
2018-11-08 20:44:35 +02:00
|
|
|
text: this.$t('delete'),
|
2018-06-08 05:46:45 +03:00
|
|
|
action: this.del
|
2018-06-05 23:18:08 +03:00
|
|
|
});
|
|
|
|
}
|
2018-09-19 11:29:03 +03:00
|
|
|
|
2018-06-05 23:18:08 +03:00
|
|
|
return items;
|
|
|
|
}
|
2018-02-13 01:11:10 +02:00
|
|
|
},
|
2018-09-24 10:26:12 +03:00
|
|
|
|
2018-02-13 01:11:10 +02:00
|
|
|
methods: {
|
2018-09-01 03:42:25 +03:00
|
|
|
detail() {
|
|
|
|
this.$router.push(`/notes/${ this.note.id }`);
|
|
|
|
},
|
|
|
|
|
|
|
|
copyLink() {
|
|
|
|
copyToClipboard(`${url}/notes/${ this.note.id }`);
|
|
|
|
},
|
|
|
|
|
2018-02-13 01:11:10 +02:00
|
|
|
pin() {
|
2018-02-18 05:35:18 +02:00
|
|
|
(this as any).api('i/pin', {
|
2018-04-07 20:30:37 +03:00
|
|
|
noteId: this.note.id
|
2018-02-13 01:11:10 +02:00
|
|
|
}).then(() => {
|
2018-10-10 15:04:53 +03:00
|
|
|
(this as any).os.new(Ok);
|
2018-09-15 15:53:04 +03:00
|
|
|
this.destroyDom();
|
2018-02-13 01:11:10 +02:00
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2018-09-24 10:26:12 +03:00
|
|
|
unpin() {
|
|
|
|
(this as any).api('i/unpin', {
|
|
|
|
noteId: this.note.id
|
|
|
|
}).then(() => {
|
|
|
|
this.destroyDom();
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2018-05-28 08:39:46 +03:00
|
|
|
del() {
|
2018-11-08 20:44:35 +02:00
|
|
|
if (!window.confirm(this.$t('delete-confirm'))) return;
|
2018-05-28 08:39:46 +03:00
|
|
|
(this as any).api('notes/delete', {
|
|
|
|
noteId: this.note.id
|
|
|
|
}).then(() => {
|
2018-09-15 15:53:04 +03:00
|
|
|
this.destroyDom();
|
2018-05-28 08:39:46 +03:00
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2018-04-20 07:31:43 +03:00
|
|
|
favorite() {
|
|
|
|
(this as any).api('notes/favorites/create', {
|
|
|
|
noteId: this.note.id
|
|
|
|
}).then(() => {
|
2018-10-10 14:02:56 +03:00
|
|
|
(this as any).os.new(Ok);
|
2018-09-15 15:53:04 +03:00
|
|
|
this.destroyDom();
|
2018-04-20 07:31:43 +03:00
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2018-10-12 18:54:30 +03:00
|
|
|
unfavorite() {
|
|
|
|
(this as any).api('notes/favorites/delete', {
|
|
|
|
noteId: this.note.id
|
|
|
|
}).then(() => {
|
|
|
|
(this as any).os.new(Ok);
|
|
|
|
this.destroyDom();
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2018-06-09 21:27:10 +03:00
|
|
|
closed() {
|
|
|
|
this.$nextTick(() => {
|
2018-09-15 15:53:04 +03:00
|
|
|
this.destroyDom();
|
2018-06-09 21:27:10 +03:00
|
|
|
});
|
2018-02-13 01:11:10 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|