Ocelot-Social/components/FollowButton.vue
2019-03-05 11:21:19 +01:00

53 lines
918 B
Vue

<template>
<ds-button
:disabled="disabled || !followId || isFollowed"
:loading="loading"
icon="plus"
primary
fullwidth
@click.prevent="follow"
>
Folgen
</ds-button>
</template>
<script>
import gql from 'graphql-tag'
export default {
name: 'HcFollowButton',
props: {
followId: { type: String, default: null },
isFollowed: { type: Boolean, default: false }
},
data() {
return {
disabled: false,
loading: false
}
},
methods: {
follow() {
this.loading = true
this.$apollo
.mutate({
mutation: gql`
mutation($id: ID!) {
follow(id: $id)
}
`,
variables: {
id: this.followId
}
})
.then(() => {
this.loading = false
this.disabled = true
this.$emit('update')
})
}
}
}
</script>