akkoma-fe/src/components/retweet_button/retweet_button.js

59 lines
1.4 KiB
JavaScript
Raw Normal View History

import ConfirmModal from '../confirm_modal/confirm_modal.vue'
import { library } from '@fortawesome/fontawesome-svg-core'
import { faRetweet } from '@fortawesome/free-solid-svg-icons'
library.add(faRetweet)
const RetweetButton = {
2018-08-09 16:46:18 +00:00
props: ['status', 'loggedIn', 'visibility'],
components: {
ConfirmModal
},
data () {
return {
animated: false,
showingConfirmDialog: false
}
},
methods: {
retweet () {
if (!this.status.repeated && this.shouldConfirmRepeat) {
this.showConfirmDialog()
} else {
this.doRetweet()
}
},
doRetweet () {
2016-11-13 16:09:16 +00:00
if (!this.status.repeated) {
2019-07-05 07:02:14 +00:00
this.$store.dispatch('retweet', { id: this.status.id })
2018-06-14 09:00:11 +00:00
} else {
2019-07-05 07:02:14 +00:00
this.$store.dispatch('unretweet', { id: this.status.id })
2016-11-13 16:09:16 +00:00
}
this.animated = true
setTimeout(() => {
this.animated = false
}, 500)
this.hideConfirmDialog()
},
showConfirmDialog () {
this.showingConfirmDialog = true
},
hideConfirmDialog () {
this.showingConfirmDialog = false
}
},
computed: {
2022-04-05 12:34:27 +00:00
isOwn () {
return this.status.user.id === this.$store.state.users.currentUser.id
},
2020-09-29 10:18:37 +00:00
mergedConfig () {
return this.$store.getters.mergedConfig
},
shouldConfirmRepeat () {
return this.mergedConfig.modalOnRepeat
2020-09-29 10:18:37 +00:00
}
}
}
export default RetweetButton