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