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

36 lines
860 B
JavaScript
Raw Normal View History

2016-10-30 15:12:35 +00:00
const FavoriteButton = {
props: ['status', 'loggedIn'],
data () {
return {
2018-10-16 13:15:04 +00:00
hidePostStatsLocal: typeof this.$store.state.config.hidePostStats === 'undefined'
? this.$store.state.instance.hidePostStats
: this.$store.state.config.hidePostStats,
animated: false
}
},
2016-10-30 15:12:35 +00:00
methods: {
favorite () {
if (!this.status.favorited) {
2019-04-10 18:48:42 +00:00
this.$store.dispatch('favorite', {id: this.status.id})
2016-10-30 15:12:35 +00:00
} else {
2019-04-10 18:48:42 +00:00
this.$store.dispatch('unfavorite', {id: this.status.id})
2016-10-30 15:12:35 +00:00
}
this.animated = true
setTimeout(() => {
this.animated = false
}, 500)
2016-10-30 15:12:35 +00:00
}
},
computed: {
classes () {
return {
'icon-star-empty': !this.status.favorited,
'icon-star': this.status.favorited,
'animate-spin': this.animated
2016-10-30 15:12:35 +00:00
}
}
}
}
export default FavoriteButton