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

237 lines
5.3 KiB
Vue
Raw Normal View History

2018-02-13 00:11:10 +01:00
<template>
2018-06-09 20:27:10 +02:00
<div style="position:initial">
2018-12-29 17:32:58 +01:00
<mk-menu :source="source" :items="items" @closed="closed"/>
2018-02-13 00:11:10 +01:00
</div>
</template>
<script lang="ts">
import Vue from 'vue';
import i18n from '../../../i18n';
2018-09-01 02:42:25 +02:00
import { url } from '../../../config';
import copyToClipboard from '../../../common/scripts/copy-to-clipboard';
import { faCopy, faEye, faEyeSlash } from '@fortawesome/free-regular-svg-icons';
2018-02-13 00:11:10 +01:00
export default Vue.extend({
i18n: i18n('common/views/components/note-menu.vue'),
2018-12-29 17:32:58 +01:00
props: ['note', 'source'],
data() {
return {
isFavorited: false,
isWatching: false
};
},
2018-06-05 22:18:08 +02:00
computed: {
items(): any[] {
if (this.$store.getters.isSignedIn) {
return [{
icon: 'at',
text: this.$t('mention'),
action: this.mention
}, null, {
icon: 'info-circle',
text: this.$t('detail'),
action: this.detail
}, {
icon: faCopy,
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');
}
} : undefined,
null,
this.isFavorited ? {
icon: 'star',
text: this.$t('unfavorite'),
action: () => this.toggleFavorite(false)
} : {
icon: 'star',
text: this.$t('favorite'),
action: () => this.toggleFavorite(true)
},
this.note.userId != this.$store.state.i.id ? this.isWatching ? {
icon: faEyeSlash,
text: this.$t('unwatch'),
action: () => this.toggleWatch(false)
} : {
icon: faEye,
text: this.$t('watch'),
action: () => this.toggleWatch(true)
} : undefined,
this.note.userId == this.$store.state.i.id ? (this.$store.state.i.pinnedNoteIds || []).includes(this.note.id) ? {
icon: 'thumbtack',
text: this.$t('unpin'),
action: () => this.togglePin(false)
} : {
icon: 'thumbtack',
text: this.$t('pin'),
action: () => this.togglePin(true)
} : undefined,
...(this.note.userId == this.$store.state.i.id || this.$store.state.i.isAdmin || this.$store.state.i.isModerator ? [
null,
this.note.userId == this.$store.state.i.id ? {
icon: 'undo-alt',
text: this.$t('delete-and-edit'),
action: this.deleteAndEdit
} : undefined,
{
icon: ['far', 'trash-alt'],
text: this.$t('delete'),
action: this.del
}]
: []
)]
.filter(x => x !== undefined);
} else {
return [{
icon: 'info-circle',
text: this.$t('detail'),
action: this.detail
}, {
icon: faCopy,
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');
}
} : undefined]
.filter(x => x !== undefined);
}
2018-06-05 22:18:08 +02:00
}
2018-02-13 00:11:10 +01:00
},
created() {
this.$root.api('notes/state', {
noteId: this.note.id
}).then(state => {
this.isFavorited = state.isFavorited;
this.isWatching = state.isWatching;
});
},
2018-02-13 00:11:10 +01:00
methods: {
2018-12-27 15:14:30 +01:00
mention() {
this.$post({ mention: this.note.user });
},
2018-09-01 02:42:25 +02:00
detail() {
this.$router.push(`/notes/${this.note.id}`);
2018-09-01 02:42:25 +02:00
},
2019-01-06 09:45:14 +01:00
copyContent() {
copyToClipboard(this.note.text);
2019-01-22 21:20:28 +01:00
this.$root.dialog({
type: 'success',
splash: true
});
2019-01-06 09:45:14 +01:00
},
2018-09-01 02:42:25 +02:00
copyLink() {
copyToClipboard(`${url}/notes/${this.note.id}`);
2019-01-22 21:20:28 +01:00
this.$root.dialog({
type: 'success',
splash: true
});
2018-09-01 02:42:25 +02:00
},
2019-02-04 17:31:02 +01:00
togglePin(pin: boolean) {
this.$root.api(pin ? 'i/pin' : 'i/unpin', {
2018-04-07 19:30:37 +02:00
noteId: this.note.id
2018-02-13 00:11:10 +01:00
}).then(() => {
2018-12-02 07:28:52 +01:00
this.$root.dialog({
2018-11-14 16:01:49 +01:00
type: 'success',
splash: true
});
2018-09-15 14:53:04 +02:00
this.destroyDom();
2019-07-02 11:32:24 +02:00
}).catch(e => {
if (e.id === '72dab508-c64d-498f-8740-a8eec1ba385a') {
this.$root.dialog({
type: 'error',
text: this.$t('pin-limit-exceeded')
});
}
2018-02-13 00:11:10 +01:00
});
},
2018-05-28 07:39:46 +02:00
del() {
2018-12-02 07:28:52 +01:00
this.$root.dialog({
2018-11-14 12:36:15 +01:00
type: 'warning',
text: this.$t('delete-confirm'),
showCancelButton: true
2018-12-02 12:10:53 +01:00
}).then(({ canceled }) => {
if (canceled) return;
2018-11-14 12:36:15 +01:00
this.$root.api('notes/delete', {
noteId: this.note.id
}).then(() => {
this.destroyDom();
});
2018-05-28 07:39:46 +02:00
});
},
deleteAndEdit() {
this.$root.dialog({
type: 'warning',
text: this.$t('delete-and-edit-confirm'),
showCancelButton: true
}).then(({ canceled }) => {
if (canceled) return;
this.$root.api('notes/delete', {
noteId: this.note.id
}).then(() => {
this.destroyDom();
});
this.$post({
initialNote: this.note,
reply: this.note.reply,
});
});
},
2019-02-04 17:31:02 +01:00
toggleFavorite(favorite: boolean) {
this.$root.api(favorite ? 'notes/favorites/create' : 'notes/favorites/delete', {
noteId: this.note.id
}).then(() => {
this.$root.dialog({
type: 'success',
splash: true
});
this.destroyDom();
});
},
2019-02-04 17:31:02 +01:00
toggleWatch(watch: boolean) {
this.$root.api(watch ? 'notes/watching/create' : 'notes/watching/delete', {
noteId: this.note.id
}).then(() => {
this.$root.dialog({
type: 'success',
splash: true
});
this.destroyDom();
});
},
2018-06-09 20:27:10 +02:00
closed() {
this.$nextTick(() => {
2018-09-15 14:53:04 +02:00
this.destroyDom();
2018-06-09 20:27:10 +02:00
});
2018-02-13 00:11:10 +01:00
}
}
});
</script>