aboutsummaryrefslogtreecommitdiff
path: root/src/components/retweet_button/retweet_button.js
diff options
context:
space:
mode:
authorlambadalambda <gitgud@rogerbraun.net>2017-03-09 03:08:59 -0500
committerlambadalambda <gitgud@rogerbraun.net>2017-03-09 03:08:59 -0500
commit7a5bed0684e0acae1ac69920f467ca8fdac7cff4 (patch)
tree206a03a9fb28df507d774bd572dd1c3ab487e492 /src/components/retweet_button/retweet_button.js
parente808df0285c8d8d6184f2933f8f6d07395039c10 (diff)
parentd94cd15467d53b8f5b87381de34fd9e3d3536b45 (diff)
Merge branch 'feature/animated-favorite-and-boost' into 'develop'
add a spin animation to favorite and boost actions See merge request !52
Diffstat (limited to 'src/components/retweet_button/retweet_button.js')
-rw-r--r--src/components/retweet_button/retweet_button.js14
1 files changed, 12 insertions, 2 deletions
diff --git a/src/components/retweet_button/retweet_button.js b/src/components/retweet_button/retweet_button.js
index e7318dc5..2280f315 100644
--- a/src/components/retweet_button/retweet_button.js
+++ b/src/components/retweet_button/retweet_button.js
@@ -1,16 +1,26 @@
const RetweetButton = {
- props: [ 'status' ],
+ props: ['status'],
+ data () {
+ return {
+ animated: false
+ }
+ },
methods: {
retweet () {
if (!this.status.repeated) {
this.$store.dispatch('retweet', {id: this.status.id})
}
+ this.animated = true
+ setTimeout(() => {
+ this.animated = false
+ }, 500)
}
},
computed: {
classes () {
return {
- 'retweeted': this.status.repeated
+ 'retweeted': this.status.repeated,
+ 'animate-spin': this.animated
}
}
}