Sharkey/src/client/app/common/views/components/note-menu.vue

72 lines
1.3 KiB
Vue
Raw Normal View History

2018-02-13 01:11:10 +02:00
<template>
2018-06-05 23:18:08 +03:00
<div class="mk-note-menu" style="position:initial">
<mk-menu ref="menu" :source="source" :compact="compact" :items="items" @closed="$destroy"/>
2018-02-13 01:11:10 +02:00
</div>
</template>
<script lang="ts">
import Vue from 'vue';
export default Vue.extend({
2018-04-07 20:30:37 +03:00
props: ['note', 'source', 'compact'],
2018-06-05 23:18:08 +03:00
computed: {
items() {
const items = [];
items.push({
content: '%i18n:@favorite%',
onClick: this.favorite
2018-02-22 00:06:47 +02:00
});
2018-06-05 23:18:08 +03:00
if (this.note.userId == this.$store.state.i.id) {
items.push({
content: '%i18n:@pin%',
onClick: this.pin
});
items.push({
content: '%i18n:@delete%',
onClick: this.del
});
}
if (this.note.uri) {
items.push({
content: '%i18n:@remote%',
onClick: () => {
window.open(this.note.uri, '_blank');
}
});
}
return items;
}
2018-02-13 01:11:10 +02:00
},
methods: {
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(() => {
this.$destroy();
});
},
2018-05-28 08:39:46 +03: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 07:31:43 +03:00
favorite() {
(this as any).api('notes/favorites/create', {
noteId: this.note.id
}).then(() => {
this.$destroy();
});
},
2018-02-13 01:11:10 +02:00
close() {
2018-06-05 23:18:08 +03:00
this.$refs.menu.close();
2018-02-13 01:11:10 +02:00
}
}
});
</script>