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';
|
|
|
|
|
|
|
|
export default Vue.extend({
|
2018-04-07 19:30:37 +02:00
|
|
|
props: ['note', 'source', 'compact'],
|
2018-06-05 22:18:08 +02:00
|
|
|
computed: {
|
|
|
|
items() {
|
|
|
|
const items = [];
|
|
|
|
items.push({
|
2018-06-09 20:31:13 +02:00
|
|
|
icon: '%fa:star%',
|
2018-06-08 04:46:45 +02:00
|
|
|
text: '%i18n:@favorite%',
|
|
|
|
action: this.favorite
|
2018-02-21 23:06:47 +01:00
|
|
|
});
|
2018-06-05 22:18:08 +02:00
|
|
|
if (this.note.userId == this.$store.state.i.id) {
|
|
|
|
items.push({
|
2018-06-09 20:31:13 +02:00
|
|
|
icon: '%fa:thumbtack%',
|
2018-06-08 04:46:45 +02:00
|
|
|
text: '%i18n:@pin%',
|
|
|
|
action: this.pin
|
2018-06-05 22:18:08 +02:00
|
|
|
});
|
|
|
|
items.push({
|
2018-06-09 20:31:13 +02:00
|
|
|
icon: '%fa:trash-alt R%',
|
2018-06-08 04:46:45 +02:00
|
|
|
text: '%i18n:@delete%',
|
|
|
|
action: this.del
|
2018-06-05 22:18:08 +02:00
|
|
|
});
|
|
|
|
}
|
|
|
|
if (this.note.uri) {
|
|
|
|
items.push({
|
2018-06-09 20:31:13 +02:00
|
|
|
icon: '%fa:external-link-square-alt%',
|
2018-06-08 04:46:45 +02:00
|
|
|
text: '%i18n:@remote%',
|
|
|
|
action: () => {
|
2018-06-05 22:18:08 +02:00
|
|
|
window.open(this.note.uri, '_blank');
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
return items;
|
|
|
|
}
|
2018-02-13 00:11:10 +01:00
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
pin() {
|
2018-02-18 04:35:18 +01:00
|
|
|
(this as any).api('i/pin', {
|
2018-04-07 19:30:37 +02:00
|
|
|
noteId: this.note.id
|
2018-02-13 00:11:10 +01:00
|
|
|
}).then(() => {
|
|
|
|
this.$destroy();
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2018-05-28 07:39:46 +02:00
|
|
|
del() {
|
|
|
|
if (!window.confirm('%i18n:@delete-confirm%')) return;
|
|
|
|
(this as any).api('notes/delete', {
|
|
|
|
noteId: this.note.id
|
|
|
|
}).then(() => {
|
|
|
|
this.$destroy();
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2018-04-20 06:31:43 +02:00
|
|
|
favorite() {
|
|
|
|
(this as any).api('notes/favorites/create', {
|
|
|
|
noteId: this.note.id
|
|
|
|
}).then(() => {
|
|
|
|
this.$destroy();
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2018-06-09 20:27:10 +02:00
|
|
|
closed() {
|
|
|
|
this.$nextTick(() => {
|
|
|
|
this.$destroy();
|
|
|
|
});
|
2018-02-13 00:11:10 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|