From ce1d19136de322637695891b11117946664eacd6 Mon Sep 17 00:00:00 2001 From: taehoon Date: Wed, 24 Apr 2019 15:34:30 -0400 Subject: refactor pin/unpin status logic --- src/components/extra_buttons/extra_buttons.js | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'src/components/extra_buttons/extra_buttons.js') diff --git a/src/components/extra_buttons/extra_buttons.js b/src/components/extra_buttons/extra_buttons.js index 71f5946d..55a4caad 100644 --- a/src/components/extra_buttons/extra_buttons.js +++ b/src/components/extra_buttons/extra_buttons.js @@ -24,19 +24,15 @@ const ExtraButtons = { }, pinStatus () { this.refreshPopper() - this.$store.state.api.backendInteractor.pinOwnStatus(this.status.id).then((status) => { + this.$store.dispatch('pinStatus', this.status.id).then((status) => { if (status.error) { this.$emit('onError', status.error) - } else { - this.$store.dispatch('updatePinned', status) } }) }, unpinStatus () { this.refreshPopper() - this.$store.state.api.backendInteractor.unpinOwnStatus(this.status.id).then((status) => { - this.$store.dispatch('updatePinned', status) - }) + this.$store.dispatch('unpinStatus', this.status.id) }, refreshPopper () { this.showPopper = false -- cgit v1.2.3-70-g09d2