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';
|
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({
|
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: '%fa:info-circle%',
|
|
|
|
text: '%i18n:@detail%',
|
|
|
|
action: this.detail
|
|
|
|
}, {
|
|
|
|
icon: '%fa:link%',
|
|
|
|
text: '%i18n:@copy-link%',
|
|
|
|
action: this.copyLink
|
|
|
|
}, null, {
|
2018-06-09 21:31:13 +03:00
|
|
|
icon: '%fa:star%',
|
2018-06-08 05:46:45 +03:00
|
|
|
text: '%i18n:@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)) {
|
2018-09-24 10:26:12 +03:00
|
|
|
items.push({
|
|
|
|
icon: '%fa:thumbtack%',
|
|
|
|
text: '%i18n:@unpin%',
|
|
|
|
action: this.unpin
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
items.push({
|
|
|
|
icon: '%fa:thumbtack%',
|
|
|
|
text: '%i18n:@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) {
|
2018-06-05 23:18:08 +03:00
|
|
|
items.push({
|
2018-06-09 21:31:13 +03:00
|
|
|
icon: '%fa:trash-alt R%',
|
2018-06-08 05:46:45 +03:00
|
|
|
text: '%i18n:@delete%',
|
|
|
|
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
|
|
|
if (this.note.uri) {
|
|
|
|
items.push({
|
2018-06-09 21:31:13 +03:00
|
|
|
icon: '%fa:external-link-square-alt%',
|
2018-06-08 05:46:45 +03:00
|
|
|
text: '%i18n:@remote%',
|
|
|
|
action: () => {
|
2018-06-05 23:18:08 +03:00
|
|
|
window.open(this.note.uri, '_blank');
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
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-09-24 10:26:12 +03: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-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(() => {
|
2018-09-15 15:53:04 +03:00
|
|
|
this.destroyDom();
|
2018-02-13 01:11:10 +02:00
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2018-09-24 10:26:12 +03:00
|
|
|
unpin() {
|
|
|
|
(this as any).api('i/unpin', {
|
|
|
|
noteId: this.note.id
|
|
|
|
}).then(() => {
|
|
|
|
this.destroyDom();
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
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(() => {
|
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() {
|
|
|
|
(this as any).api('notes/favorites/create', {
|
|
|
|
noteId: this.note.id
|
|
|
|
}).then(() => {
|
2018-10-10 14:02:56 +03:00
|
|
|
(this as any).os.new(Ok);
|
2018-09-15 15:53:04 +03:00
|
|
|
this.destroyDom();
|
2018-04-20 07:31:43 +03:00
|
|
|
});
|
|
|
|
},
|
|
|
|
|
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>
|