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';
|
2018-11-08 12:44:35 -06:00
|
|
|
import i18n from '../../../i18n';
|
2018-08-31 19:42:25 -05:00
|
|
|
import { url } from '../../../config';
|
|
|
|
import copyToClipboard from '../../../common/scripts/copy-to-clipboard';
|
2018-11-09 07:35:33 -06:00
|
|
|
import { concat, intersperse } from '../../../../../prelude/array';
|
2018-02-12 17:11:10 -06:00
|
|
|
|
|
|
|
export default Vue.extend({
|
2018-11-08 12:44:35 -06:00
|
|
|
i18n: i18n('common/views/components/note-menu.vue'),
|
2018-04-07 12:30:37 -05:00
|
|
|
props: ['note', 'source', 'compact'],
|
2018-06-05 15:18:08 -05:00
|
|
|
computed: {
|
2018-11-09 07:35:33 -06:00
|
|
|
items(): any[] {
|
|
|
|
return concat(intersperse([null], [
|
|
|
|
[
|
|
|
|
[{
|
|
|
|
icon: 'info-circle',
|
|
|
|
text: this.$t('detail'),
|
|
|
|
action: this.detail
|
|
|
|
}], [{
|
|
|
|
icon: 'link',
|
|
|
|
text: this.$t('copy-link'),
|
|
|
|
action: this.copyLink
|
|
|
|
}], this.note.uri ? [{
|
|
|
|
icon: 'external-link-square-alt',
|
|
|
|
text: this.$t('remote'),
|
|
|
|
action: () => {
|
|
|
|
window.open(this.note.uri, '_blank');
|
|
|
|
}
|
|
|
|
}] : []
|
|
|
|
],
|
|
|
|
[
|
|
|
|
this.note.isFavorited ? [{
|
|
|
|
icon: 'star',
|
|
|
|
text: this.$t('unfavorite'),
|
|
|
|
action: this.unfavorite
|
|
|
|
}] : [{
|
|
|
|
icon: 'star',
|
|
|
|
text: this.$t('favorite'),
|
|
|
|
action: this.favorite
|
|
|
|
}], this.note.userId == this.$store.state.i.id ? [
|
2018-11-09 07:40:17 -06:00
|
|
|
(this.$store.state.i.pinnedNoteIds || []).includes(this.note.id) ? {
|
2018-11-09 07:35:33 -06:00
|
|
|
icon: 'thumbtack',
|
|
|
|
text: this.$t('unpin'),
|
|
|
|
action: this.unpin
|
2018-11-09 07:40:17 -06:00
|
|
|
} : {
|
|
|
|
icon: 'thumbtack',
|
|
|
|
text: this.$t('pin'),
|
|
|
|
action: this.pin
|
|
|
|
}
|
2018-11-09 07:35:33 -06:00
|
|
|
] : []
|
|
|
|
], [
|
|
|
|
this.note.userId == this.$store.state.i.id || this.$store.state.i.isAdmin ? [{
|
|
|
|
icon: ['far', 'trash-alt'],
|
|
|
|
text: this.$t('delete'),
|
|
|
|
action: this.del
|
|
|
|
}] : []
|
|
|
|
]
|
|
|
|
].map(concat).filter(x => x.length > 0)));
|
2018-06-05 15:18:08 -05:00
|
|
|
}
|
2018-02-12 17:11:10 -06:00
|
|
|
},
|
2018-09-24 02:26:12 -05:00
|
|
|
|
2018-02-12 17:11:10 -06:00
|
|
|
methods: {
|
2018-08-31 19:42:25 -05:00
|
|
|
detail() {
|
2018-11-09 07:35:33 -06:00
|
|
|
this.$router.push(`/notes/${this.note.id}`);
|
2018-08-31 19:42:25 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
copyLink() {
|
2018-11-09 07:35:33 -06:00
|
|
|
copyToClipboard(`${url}/notes/${this.note.id}`);
|
2018-08-31 19:42:25 -05:00
|
|
|
},
|
|
|
|
|
2018-02-12 17:11:10 -06:00
|
|
|
pin() {
|
2018-11-08 17:13:34 -06:00
|
|
|
this.$root.api('i/pin', {
|
2018-04-07 12:30:37 -05:00
|
|
|
noteId: this.note.id
|
2018-02-12 17:11:10 -06:00
|
|
|
}).then(() => {
|
2018-11-14 01:30:58 -06:00
|
|
|
// TODO
|
|
|
|
//this.$root.new(Ok);
|
2018-09-15 07:53:04 -05:00
|
|
|
this.destroyDom();
|
2018-02-12 17:11:10 -06:00
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2018-09-24 02:26:12 -05:00
|
|
|
unpin() {
|
2018-11-08 17:13:34 -06:00
|
|
|
this.$root.api('i/unpin', {
|
2018-09-24 02:26:12 -05:00
|
|
|
noteId: this.note.id
|
|
|
|
}).then(() => {
|
|
|
|
this.destroyDom();
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2018-05-28 00:39:46 -05:00
|
|
|
del() {
|
2018-11-14 05:36:15 -06:00
|
|
|
this.$root.alert({
|
|
|
|
type: 'warning',
|
|
|
|
text: this.$t('delete-confirm'),
|
|
|
|
showCancelButton: true
|
|
|
|
}).then(res => {
|
|
|
|
if (!res) return;
|
|
|
|
|
|
|
|
this.$root.api('notes/delete', {
|
|
|
|
noteId: this.note.id
|
|
|
|
}).then(() => {
|
|
|
|
this.destroyDom();
|
|
|
|
});
|
2018-05-28 00:39:46 -05:00
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2018-04-19 23:31:43 -05:00
|
|
|
favorite() {
|
2018-11-08 17:13:34 -06:00
|
|
|
this.$root.api('notes/favorites/create', {
|
2018-04-19 23:31:43 -05:00
|
|
|
noteId: this.note.id
|
|
|
|
}).then(() => {
|
2018-11-14 01:30:58 -06:00
|
|
|
// TODO
|
|
|
|
//this.$root.new(Ok);
|
2018-09-15 07:53:04 -05:00
|
|
|
this.destroyDom();
|
2018-04-19 23:31:43 -05:00
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2018-10-12 10:54:30 -05:00
|
|
|
unfavorite() {
|
2018-11-08 17:13:34 -06:00
|
|
|
this.$root.api('notes/favorites/delete', {
|
2018-10-12 10:54:30 -05:00
|
|
|
noteId: this.note.id
|
|
|
|
}).then(() => {
|
2018-11-14 01:30:58 -06:00
|
|
|
// TODO
|
|
|
|
//this.$root.new(Ok);
|
2018-10-12 10:54:30 -05:00
|
|
|
this.destroyDom();
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2018-06-09 13:27:10 -05:00
|
|
|
closed() {
|
|
|
|
this.$nextTick(() => {
|
2018-09-15 07:53:04 -05:00
|
|
|
this.destroyDom();
|
2018-06-09 13:27:10 -05:00
|
|
|
});
|
2018-02-12 17:11:10 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|