2018-02-13 01:11:10 +02:00
|
|
|
<template>
|
2020-01-29 21:37:25 +02:00
|
|
|
<x-menu :source="source" :items="items" @closed="closed"/>
|
2018-02-13 01:11:10 +02:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
2020-01-29 21:37:25 +02:00
|
|
|
import { faStar, faLink, faThumbtack, faExternalLinkSquareAlt } from '@fortawesome/free-solid-svg-icons';
|
|
|
|
import { faCopy, faTrashAlt, faEye, faEyeSlash } from '@fortawesome/free-regular-svg-icons';
|
|
|
|
import i18n from '../i18n';
|
|
|
|
import { url } from '../config';
|
|
|
|
import copyToClipboard from '../scripts/copy-to-clipboard';
|
|
|
|
import XMenu from './menu.vue';
|
2018-02-13 01:11:10 +02:00
|
|
|
|
|
|
|
export default Vue.extend({
|
2020-01-29 21:37:25 +02:00
|
|
|
i18n,
|
|
|
|
components: {
|
|
|
|
XMenu
|
|
|
|
},
|
2018-12-29 18:32:58 +02:00
|
|
|
props: ['note', 'source'],
|
2019-02-04 18:11:06 +02:00
|
|
|
data() {
|
|
|
|
return {
|
2019-02-04 18:24:44 +02:00
|
|
|
isFavorited: false,
|
|
|
|
isWatching: false
|
2019-02-04 18:11:06 +02:00
|
|
|
};
|
|
|
|
},
|
2018-06-05 23:18:08 +03:00
|
|
|
computed: {
|
2018-11-09 15:35:33 +02:00
|
|
|
items(): any[] {
|
2019-07-28 04:35:53 +03:00
|
|
|
if (this.$store.getters.isSignedIn) {
|
|
|
|
return [{
|
|
|
|
icon: faCopy,
|
2020-01-29 21:37:25 +02:00
|
|
|
text: this.$t('copyContent'),
|
2019-07-28 04:35:53 +03:00
|
|
|
action: this.copyContent
|
|
|
|
}, {
|
2020-01-29 21:37:25 +02:00
|
|
|
icon: faLink,
|
|
|
|
text: this.$t('copyLink'),
|
2019-07-28 04:35:53 +03:00
|
|
|
action: this.copyLink
|
|
|
|
}, this.note.uri ? {
|
2020-01-29 21:37:25 +02:00
|
|
|
icon: faExternalLinkSquareAlt,
|
|
|
|
text: this.$t('showOnRemote'),
|
2019-07-28 04:35:53 +03:00
|
|
|
action: () => {
|
|
|
|
window.open(this.note.uri, '_blank');
|
|
|
|
}
|
|
|
|
} : undefined,
|
2019-07-27 23:33:12 +03:00
|
|
|
null,
|
2019-07-28 04:35:53 +03:00
|
|
|
this.isFavorited ? {
|
2020-01-29 21:37:25 +02:00
|
|
|
icon: faStar,
|
2019-07-28 04:35:53 +03:00
|
|
|
text: this.$t('unfavorite'),
|
|
|
|
action: () => this.toggleFavorite(false)
|
|
|
|
} : {
|
2020-01-29 21:37:25 +02:00
|
|
|
icon: faStar,
|
2019-07-28 04:35:53 +03:00
|
|
|
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) ? {
|
2020-01-29 21:37:25 +02:00
|
|
|
icon: faThumbtack,
|
2019-07-28 04:35:53 +03:00
|
|
|
text: this.$t('unpin'),
|
|
|
|
action: () => this.togglePin(false)
|
|
|
|
} : {
|
2020-01-29 21:37:25 +02:00
|
|
|
icon: faThumbtack,
|
2019-07-28 04:35:53 +03:00
|
|
|
text: this.$t('pin'),
|
|
|
|
action: () => this.togglePin(true)
|
2019-07-27 23:33:12 +03:00
|
|
|
} : undefined,
|
2020-01-29 21:37:25 +02:00
|
|
|
...(this.note.userId == this.$store.state.i.id ? [
|
2019-07-28 04:35:53 +03:00
|
|
|
null,
|
|
|
|
{
|
2020-01-29 21:37:25 +02:00
|
|
|
icon: faTrashAlt,
|
2019-07-28 04:35:53 +03:00
|
|
|
text: this.$t('delete'),
|
|
|
|
action: this.del
|
|
|
|
}]
|
|
|
|
: []
|
|
|
|
)]
|
|
|
|
.filter(x => x !== undefined);
|
|
|
|
} else {
|
|
|
|
return [{
|
|
|
|
icon: faCopy,
|
2020-01-29 21:37:25 +02:00
|
|
|
text: this.$t('copyContent'),
|
2019-07-28 04:35:53 +03:00
|
|
|
action: this.copyContent
|
|
|
|
}, {
|
2020-01-29 21:37:25 +02:00
|
|
|
icon: faLink,
|
|
|
|
text: this.$t('copyLink'),
|
2019-07-28 04:35:53 +03:00
|
|
|
action: this.copyLink
|
|
|
|
}, this.note.uri ? {
|
2020-01-29 21:37:25 +02:00
|
|
|
icon: faExternalLinkSquareAlt,
|
|
|
|
text: this.$t('showOnRemote'),
|
2019-07-28 04:35:53 +03:00
|
|
|
action: () => {
|
|
|
|
window.open(this.note.uri, '_blank');
|
|
|
|
}
|
|
|
|
} : undefined]
|
|
|
|
.filter(x => x !== undefined);
|
|
|
|
}
|
2018-06-05 23:18:08 +03:00
|
|
|
}
|
2018-02-13 01:11:10 +02:00
|
|
|
},
|
2018-09-24 10:26:12 +03:00
|
|
|
|
2019-02-04 18:11:06 +02:00
|
|
|
created() {
|
|
|
|
this.$root.api('notes/state', {
|
|
|
|
noteId: this.note.id
|
|
|
|
}).then(state => {
|
|
|
|
this.isFavorited = state.isFavorited;
|
2019-02-04 18:24:44 +02:00
|
|
|
this.isWatching = state.isWatching;
|
2019-02-04 18:11:06 +02:00
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2018-02-13 01:11:10 +02:00
|
|
|
methods: {
|
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',
|
2020-01-29 21:37:25 +02:00
|
|
|
iconOnly: true, autoClose: true
|
2019-01-22 22:20:28 +02:00
|
|
|
});
|
2019-01-06 10:45:14 +02:00
|
|
|
},
|
|
|
|
|
2018-09-01 03:42:25 +03:00
|
|
|
copyLink() {
|
2018-11-09 15:35:33 +02:00
|
|
|
copyToClipboard(`${url}/notes/${this.note.id}`);
|
2019-01-22 22:20:28 +02:00
|
|
|
this.$root.dialog({
|
|
|
|
type: 'success',
|
2020-01-29 21:37:25 +02:00
|
|
|
iconOnly: true, autoClose: true
|
2019-01-22 22:20:28 +02:00
|
|
|
});
|
2018-09-01 03:42:25 +03:00
|
|
|
},
|
|
|
|
|
2019-02-04 18:31:02 +02:00
|
|
|
togglePin(pin: boolean) {
|
|
|
|
this.$root.api(pin ? 'i/pin' : 'i/unpin', {
|
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',
|
2020-01-29 21:37:25 +02:00
|
|
|
iconOnly: true, autoClose: true
|
2018-11-14 17:01:49 +02:00
|
|
|
});
|
2020-01-29 21:37:25 +02:00
|
|
|
this.$emit('closed');
|
2018-09-15 15:53:04 +03:00
|
|
|
this.destroyDom();
|
2019-07-02 12:32:24 +03:00
|
|
|
}).catch(e => {
|
|
|
|
if (e.id === '72dab508-c64d-498f-8740-a8eec1ba385a') {
|
|
|
|
this.$root.dialog({
|
|
|
|
type: 'error',
|
2020-01-29 21:37:25 +02:00
|
|
|
text: this.$t('pinLimitExceeded')
|
2019-07-02 12:32:24 +03:00
|
|
|
});
|
|
|
|
}
|
2018-02-13 01:11:10 +02:00
|
|
|
});
|
|
|
|
},
|
|
|
|
|
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',
|
2020-01-29 21:37:25 +02:00
|
|
|
text: this.$t('noteDeleteConfirm'),
|
2018-11-14 13:36:15 +02:00
|
|
|
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(() => {
|
2020-01-29 21:37:25 +02:00
|
|
|
this.$emit('closed');
|
2018-11-14 13:36:15 +02:00
|
|
|
this.destroyDom();
|
|
|
|
});
|
2018-05-28 08:39:46 +03:00
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2019-02-04 18:31:02 +02:00
|
|
|
toggleFavorite(favorite: boolean) {
|
|
|
|
this.$root.api(favorite ? 'notes/favorites/create' : 'notes/favorites/delete', {
|
2019-02-04 18:24:44 +02:00
|
|
|
noteId: this.note.id
|
|
|
|
}).then(() => {
|
|
|
|
this.$root.dialog({
|
|
|
|
type: 'success',
|
2020-01-29 21:37:25 +02:00
|
|
|
iconOnly: true, autoClose: true
|
2019-02-04 18:24:44 +02:00
|
|
|
});
|
2020-01-29 21:37:25 +02:00
|
|
|
this.$emit('closed');
|
2019-02-04 18:24:44 +02:00
|
|
|
this.destroyDom();
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2019-02-04 18:31:02 +02:00
|
|
|
toggleWatch(watch: boolean) {
|
|
|
|
this.$root.api(watch ? 'notes/watching/create' : 'notes/watching/delete', {
|
2019-02-04 18:24:44 +02:00
|
|
|
noteId: this.note.id
|
|
|
|
}).then(() => {
|
|
|
|
this.$root.dialog({
|
|
|
|
type: 'success',
|
2020-01-29 21:37:25 +02:00
|
|
|
iconOnly: true, autoClose: true
|
2019-02-04 18:24:44 +02:00
|
|
|
});
|
|
|
|
this.destroyDom();
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2018-06-09 21:27:10 +03:00
|
|
|
closed() {
|
2019-09-01 22:45:01 +03:00
|
|
|
this.$emit('closed');
|
2018-06-09 21:27:10 +03:00
|
|
|
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>
|