2019-09-29 12:33:15 -07:00
|
|
|
import { mapGetters } from 'vuex'
|
2020-10-19 09:38:49 -07:00
|
|
|
import { library } from '@fortawesome/fontawesome-svg-core'
|
|
|
|
import { faStar } from '@fortawesome/free-solid-svg-icons'
|
|
|
|
import {
|
|
|
|
faStar as faStarRegular
|
|
|
|
} from '@fortawesome/free-regular-svg-icons'
|
|
|
|
|
|
|
|
library.add(
|
|
|
|
faStar,
|
|
|
|
faStarRegular
|
|
|
|
)
|
2019-09-29 12:33:15 -07:00
|
|
|
|
2016-10-30 08:12:35 -07:00
|
|
|
const FavoriteButton = {
|
2018-02-01 14:45:29 -08:00
|
|
|
props: ['status', 'loggedIn'],
|
2017-03-08 20:45:40 -08:00
|
|
|
data () {
|
|
|
|
return {
|
|
|
|
animated: false
|
|
|
|
}
|
|
|
|
},
|
2016-10-30 08:12:35 -07:00
|
|
|
methods: {
|
|
|
|
favorite () {
|
|
|
|
if (!this.status.favorited) {
|
2019-07-05 00:02:14 -07:00
|
|
|
this.$store.dispatch('favorite', { id: this.status.id })
|
2016-10-30 08:12:35 -07:00
|
|
|
} else {
|
2019-07-05 00:02:14 -07:00
|
|
|
this.$store.dispatch('unfavorite', { id: this.status.id })
|
2016-10-30 08:12:35 -07:00
|
|
|
}
|
2017-03-08 20:45:40 -08:00
|
|
|
this.animated = true
|
|
|
|
setTimeout(() => {
|
|
|
|
this.animated = false
|
|
|
|
}, 500)
|
2016-10-30 08:12:35 -07:00
|
|
|
}
|
|
|
|
},
|
|
|
|
computed: {
|
2019-09-29 12:33:15 -07:00
|
|
|
...mapGetters(['mergedConfig'])
|
2016-10-30 08:12:35 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default FavoriteButton
|