mirror of
https://akkoma.dev/AkkomaGang/akkoma-fe.git
synced 2025-02-13 16:13:22 +01:00
22 lines
468 B
JavaScript
22 lines
468 B
JavaScript
const FavoriteButton = {
|
|
props: [ 'status' ],
|
|
methods: {
|
|
favorite () {
|
|
if (!this.status.favorited) {
|
|
this.$store.dispatch('favorite', {id: this.status.id})
|
|
} else {
|
|
this.$store.dispatch('unfavorite', {id: this.status.id})
|
|
}
|
|
}
|
|
},
|
|
computed: {
|
|
classes () {
|
|
return {
|
|
'icon-star-empty': !this.status.favorited,
|
|
'icon-star': this.status.favorited
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
export default FavoriteButton
|