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