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

145 lines
2.7 KiB
Vue
Raw Normal View History

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';
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({
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 = [{
icon: 'info-circle',
text: this.$t('detail'),
2018-09-01 03:42:25 +03:00
action: this.detail
}, {
icon: 'link',
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({
icon: 'external-link-square-alt',
text: this.$t('remote'),
2018-10-13 06:51:01 +03:00
action: () => {
window.open(this.note.uri, '_blank');
}
});
}
items.push(null);
if (this.note.isFavorited) {
items.push({
icon: 'star',
text: this.$t('unfavorite'),
action: this.unfavorite
});
} else {
items.push({
icon: 'star',
text: this.$t('favorite'),
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)) {
items.push({
icon: 'thumbtack',
text: this.$t('unpin'),
action: this.unpin
});
} else {
items.push({
icon: 'thumbtack',
text: this.$t('pin'),
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) {
items.push(null);
2018-06-05 23:18:08 +03:00
items.push({
icon: ['far', 'trash-alt'],
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-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-11-09 01:13:34 +02:00
this.$root.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-11-09 01:13:34 +02:00
this.$root.new(Ok);
2018-09-15 15:53:04 +03:00
this.destroyDom();
2018-02-13 01:11:10 +02:00
});
},
unpin() {
2018-11-09 01:13:34 +02:00
this.$root.api('i/unpin', {
noteId: this.note.id
}).then(() => {
this.destroyDom();
});
},
2018-05-28 08:39:46 +03:00
del() {
if (!window.confirm(this.$t('delete-confirm'))) return;
2018-11-09 01:13:34 +02:00
this.$root.api('notes/delete', {
2018-05-28 08:39:46 +03:00
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() {
2018-11-09 01:13:34 +02:00
this.$root.api('notes/favorites/create', {
2018-04-20 07:31:43 +03:00
noteId: this.note.id
}).then(() => {
2018-11-09 01:13:34 +02:00
this.$root.new(Ok);
2018-09-15 15:53:04 +03:00
this.destroyDom();
2018-04-20 07:31:43 +03:00
});
},
unfavorite() {
2018-11-09 01:13:34 +02:00
this.$root.api('notes/favorites/delete', {
noteId: this.note.id
}).then(() => {
2018-11-09 01:13:34 +02:00
this.$root.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>