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

172 lines
3.5 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">
2018-12-29 18:32:58 +02:00
<mk-menu :source="source" :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';
import { concat, intersperse } from '../../../../../prelude/array';
2018-02-13 01:11:10 +02:00
export default Vue.extend({
i18n: i18n('common/views/components/note-menu.vue'),
2018-12-29 18:32:58 +02:00
props: ['note', 'source'],
2018-06-05 23:18:08 +03:00
computed: {
items(): any[] {
return concat(intersperse([null], [
2018-12-27 16:14:30 +02:00
[
[{
icon: 'at',
text: this.$t('mention'),
action: this.mention
}]
],
[
[{
icon: 'info-circle',
text: this.$t('detail'),
action: this.detail
2019-01-06 10:45:14 +02:00
}], [{
icon: 'align-left',
text: this.$t('copy-content'),
action: this.copyContent
}], [{
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 15:40:17 +02:00
(this.$store.state.i.pinnedNoteIds || []).includes(this.note.id) ? {
icon: 'thumbtack',
text: this.$t('unpin'),
action: this.unpin
2018-11-09 15:40:17 +02:00
} : {
icon: 'thumbtack',
text: this.$t('pin'),
action: this.pin
}
] : []
], [
2018-11-14 21:15:42 +02:00
this.note.userId == this.$store.state.i.id || this.$store.state.i.isAdmin || this.$store.state.i.isModerator ? [{
icon: ['far', 'trash-alt'],
text: this.$t('delete'),
action: this.del
}] : []
]
].map(concat).filter(x => x.length > 0)));
2018-06-05 23:18:08 +03:00
}
2018-02-13 01:11:10 +02:00
},
2018-02-13 01:11:10 +02:00
methods: {
2018-12-27 16:14:30 +02:00
mention() {
this.$post({ mention: this.note.user });
},
2018-09-01 03:42:25 +03:00
detail() {
this.$router.push(`/notes/${this.note.id}`);
2018-09-01 03:42:25 +03:00
},
2019-01-06 10:45:14 +02:00
copyContent() {
copyToClipboard(this.note.text);
2019-01-22 22:20:28 +02:00
this.$root.dialog({
type: 'success',
splash: true
});
2019-01-06 10:45:14 +02:00
},
2018-09-01 03:42:25 +03:00
copyLink() {
copyToClipboard(`${url}/notes/${this.note.id}`);
2019-01-22 22:20:28 +02:00
this.$root.dialog({
type: 'success',
splash: true
});
2018-09-01 03:42:25 +03:00
},
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-12-02 08:28:52 +02:00
this.$root.dialog({
2018-11-14 17:01:49 +02:00
type: 'success',
splash: true
});
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() {
2018-12-02 08:28:52 +02:00
this.$root.dialog({
2018-11-14 13:36:15 +02:00
type: 'warning',
text: this.$t('delete-confirm'),
showCancelButton: true
2018-12-02 13:10:53 +02:00
}).then(({ canceled }) => {
if (canceled) return;
2018-11-14 13:36:15 +02:00
this.$root.api('notes/delete', {
noteId: this.note.id
}).then(() => {
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-12-02 08:28:52 +02:00
this.$root.dialog({
2018-11-14 17:01:49 +02:00
type: 'success',
splash: true
});
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-12-02 08:28:52 +02:00
this.$root.dialog({
2018-11-14 17:01:49 +02:00
type: 'success',
splash: true
});
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>