📦 NEW: unboost post if it was boosted previously

Signed-off-by: Jonas Sulzer <jonas@violoncello.ch>
pull/462/head
Jonas Sulzer 2019-04-22 19:56:40 +02:00 zatwierdzone przez Maxence Lange
rodzic 055aa5865a
commit 360b69d020
2 zmienionych plików z 16 dodań i 1 usunięć

Wyświetl plik

@ -123,7 +123,12 @@ export default {
this.$root.$emit('composer-reply', this.item)
},
boost() {
this.$store.dispatch('postBoost', this.item)
if (this.item.action.values.boosted) {
this.$store.dispatch('postUnBoost', this.item)
} else {
this.$store.dispatch('postBoost', this.item)
}
}
}
}

Wyświetl plik

@ -109,6 +109,16 @@ const actions = {
})
})
},
postUnBoost(context, post) {
return axios.delete(OC.generateUrl(`apps/social/api/v1/post/boost?postId=${post.id}`)).then((response) => {
context.commit('removeBoost', post)
// eslint-disable-next-line no-console
console.log('Boost deleted with token ' + response.data.result.token)
}).catch((error) => {
OC.Notification.showTemporary('Failed to delete the boost')
console.error('Failed to delete the boost', error)
})
},
refreshTimeline(context) {
return this.dispatch('fetchTimeline', { sinceTimestamp: Math.floor(Date.now() / 1000) + 1 })
},