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

72 lines
1.3 KiB
Vue
Raw Normal View History

2018-02-13 00:11:10 +01:00
<template>
2018-06-05 22:18:08 +02:00
<div class="mk-note-menu" style="position:initial">
<mk-menu ref="menu" :source="source" :compact="compact" :items="items" @closed="$destroy"/>
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-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-08 04:46:45 +02:00
text: '%i18n:@pin%',
action: this.pin
2018-06-05 22:18:08 +02:00
});
items.push({
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-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-02-13 00:11:10 +01:00
close() {
2018-06-05 22:18:08 +02:00
this.$refs.menu.close();
2018-02-13 00:11:10 +01:00
}
}
});
</script>