Skip to content
Snippets Groups Projects

Copy status link to clipboard

Merged feld requested to merge feature/copy-link into develop
All threads resolved!
Files
4
@@ -3,6 +3,11 @@ import Popover from '../popover/popover.vue'
const ExtraButtons = {
props: [ 'status' ],
components: { Popover },
data: function () {
return {
statusLink: 'https://' + this.$store.state.instance.name + this.$router.resolve({ name: 'conversation', params: { id: this.status.id } })
}
},
methods: {
deleteStatus () {
const confirmed = window.confirm(this.$t('status.delete_confirm'))
@@ -29,6 +34,11 @@ const ExtraButtons = {
this.$store.dispatch('unmuteConversation', this.status.id)
.then(() => this.$emit('onSuccess'))
.catch(err => this.$emit('onError', err.error.error))
},
copyLink () {
this.$copyText(this.statusLink)
.then(() => this.$emit('onSuccess'))
.catch(err => this.$emit('onError', err.error.error))
}
},
computed: {
Loading