Sharkey/src/client/app/desktop/views/components/follow-button.vue

156 lines
3.4 KiB
Vue
Raw Normal View History

2018-02-13 07:24:21 +00:00
<template>
<button class="mk-follow-button"
2018-06-02 04:11:28 +00:00
:class="{ wait, active: u.isFollowing || u.hasPendingFollowRequestFromYou, big: size == 'big' }"
2018-02-13 07:24:21 +00:00
@click="onClick"
:disabled="wait"
>
2018-06-02 04:11:28 +00:00
<template v-if="!wait">
<template v-if="u.hasPendingFollowRequestFromYou && u.isLocked">%fa:hourglass-half%<template v-if="size == 'big'"> %i18n:@request-pending%</template></template>
<template v-else-if="u.hasPendingFollowRequestFromYou && !u.isLocked">%fa:hourglass-start%<template v-if="size == 'big'"> %i18n:@follow-processing%</template></template>
2018-06-03 10:39:02 +00:00
<template v-else-if="u.isFollowing">%fa:minus%<template v-if="size == 'big'"> %i18n:@following%</template></template>
2018-06-02 04:11:28 +00:00
<template v-else-if="!u.isFollowing && u.isLocked">%fa:plus%<template v-if="size == 'big'"> %i18n:@follow-request%</template></template>
<template v-else-if="!u.isFollowing && !u.isLocked">%fa:plus%<template v-if="size == 'big'"> %i18n:@follow%</template></template>
2018-02-19 23:14:44 +00:00
</template>
2018-06-02 04:11:28 +00:00
<template v-else>%fa:spinner .pulse .fw%</template>
2018-02-13 07:24:21 +00:00
</button>
</template>
<script lang="ts">
import Vue from 'vue';
2018-04-26 07:10:01 +00:00
2018-02-13 07:24:21 +00:00
export default Vue.extend({
props: {
user: {
type: Object,
required: true
2018-02-19 23:14:44 +00:00
},
size: {
type: String,
default: 'compact'
2018-02-13 07:24:21 +00:00
}
},
2018-04-26 07:10:01 +00:00
2018-02-13 07:24:21 +00:00
data() {
return {
2018-06-02 04:11:28 +00:00
u: this.user,
2018-02-13 07:24:21 +00:00
wait: false,
connection: null
2018-02-13 07:24:21 +00:00
};
},
2018-04-26 07:10:01 +00:00
2018-02-13 07:24:21 +00:00
mounted() {
this.connection = (this as any).os.stream.useSharedConnection('main');
2018-10-30 05:34:32 +00:00
this.connection.on('follow', this.onFollowChange);
this.connection.on('unfollow', this.onFollowChange);
2018-02-13 07:24:21 +00:00
},
2018-04-26 07:10:01 +00:00
2018-02-13 07:24:21 +00:00
beforeDestroy() {
this.connection.dispose();
2018-02-13 07:24:21 +00:00
},
2018-04-26 07:10:01 +00:00
methods: {
2018-10-30 05:34:32 +00:00
onFollowChange(user) {
2018-06-02 04:11:28 +00:00
if (user.id == this.u.id) {
2018-09-04 09:33:16 +00:00
this.u.isFollowing = user.isFollowing;
this.u.hasPendingFollowRequestFromYou = user.hasPendingFollowRequestFromYou;
2018-10-30 05:34:32 +00:00
this.$forceUpdate();
2018-02-13 07:24:21 +00:00
}
},
2018-06-02 04:11:28 +00:00
async onClick() {
2018-02-13 07:24:21 +00:00
this.wait = true;
2018-06-02 04:11:28 +00:00
try {
if (this.u.isFollowing) {
this.u = await (this as any).api('following/delete', {
userId: this.u.id
});
} else {
2018-09-04 09:33:16 +00:00
if (this.u.hasPendingFollowRequestFromYou) {
2018-06-02 04:11:28 +00:00
this.u = await (this as any).api('following/requests/cancel', {
userId: this.u.id
});
} else if (this.u.isLocked) {
this.u = await (this as any).api('following/create', {
userId: this.u.id
});
} else {
this.u = await (this as any).api('following/create', {
userId: this.user.id
});
}
}
} catch (e) {
console.error(e);
} finally {
this.wait = false;
2018-02-13 07:24:21 +00:00
}
}
}
});
</script>
<style lang="stylus" scoped>
2018-09-28 07:08:09 +00:00
.mk-follow-button
2018-02-13 07:24:21 +00:00
display block
2018-02-19 23:14:44 +00:00
cursor pointer
padding 0
margin 0
width 32px
height 32px
font-size 1em
outline none
border-radius 4px
*
pointer-events none
&:focus
&:after
content ""
2018-02-13 07:24:21 +00:00
pointer-events none
2018-02-19 23:14:44 +00:00
position absolute
top -5px
right -5px
bottom -5px
left -5px
2018-09-26 11:19:35 +00:00
border 2px solid var(--primaryAlpha03)
2018-02-19 23:14:44 +00:00
border-radius 8px
2018-06-02 04:11:28 +00:00
&:not(.active)
2018-09-28 07:08:09 +00:00
color var(--primary)
border solid 1px var(--primary)
2018-02-19 23:14:44 +00:00
&:hover
2018-09-28 07:08:09 +00:00
background var(--primaryAlpha03)
2018-02-19 23:14:44 +00:00
&:active
2018-09-28 07:08:09 +00:00
background var(--primaryAlpha05)
2018-02-19 23:14:44 +00:00
2018-06-02 04:11:28 +00:00
&.active
2018-09-26 11:19:35 +00:00
color var(--primaryForeground)
2018-09-28 07:08:09 +00:00
background var(--primary)
border solid 1px var(--primary)
2018-02-19 23:14:44 +00:00
&:not(:disabled)
font-weight bold
&:hover:not(:disabled)
2018-09-28 07:08:09 +00:00
background var(--primaryLighten5)
border-color var(--primaryLighten5)
2018-02-19 23:14:44 +00:00
&:active:not(:disabled)
2018-09-28 07:08:09 +00:00
background var(--primaryDarken5)
border-color var(--primaryDarken5)
2018-02-19 23:14:44 +00:00
&.wait
cursor wait !important
opacity 0.7
&.big
width 100%
height 38px
line-height 38px
2018-02-13 07:24:21 +00:00
</style>