aboutsummaryrefslogtreecommitdiff
path: root/src/components/extra_buttons/extra_buttons.js
diff options
context:
space:
mode:
authorEugenij <eugenijm@protonmail.com>2020-07-03 19:45:49 +0000
committerShpuld Shpludson <shp@cock.li>2020-07-03 19:45:49 +0000
commitde291e2e33f1d9e04b27ed30ba3b012d73178e63 (patch)
treec289fdff07b399d9dbd19e024dde2b6322ead655 /src/components/extra_buttons/extra_buttons.js
parent7bd89b579f9fa20a046b67dbf5cd14967b07981c (diff)
Add bookmarks
Co-authored-by: jared <jaredrmain@gmail.com>
Diffstat (limited to 'src/components/extra_buttons/extra_buttons.js')
-rw-r--r--src/components/extra_buttons/extra_buttons.js10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/components/extra_buttons/extra_buttons.js b/src/components/extra_buttons/extra_buttons.js
index e4b19d01..5e0c36bb 100644
--- a/src/components/extra_buttons/extra_buttons.js
+++ b/src/components/extra_buttons/extra_buttons.js
@@ -34,6 +34,16 @@ const ExtraButtons = {
navigator.clipboard.writeText(this.statusLink)
.then(() => this.$emit('onSuccess'))
.catch(err => this.$emit('onError', err.error.error))
+ },
+ bookmarkStatus () {
+ this.$store.dispatch('bookmark', { id: this.status.id })
+ .then(() => this.$emit('onSuccess'))
+ .catch(err => this.$emit('onError', err.error.error))
+ },
+ unbookmarkStatus () {
+ this.$store.dispatch('unbookmark', { id: this.status.id })
+ .then(() => this.$emit('onSuccess'))
+ .catch(err => this.$emit('onError', err.error.error))
}
},
computed: {