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

177 lines
4.1 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">%fa:hourglass-half%<template v-if="size == 'big'"> %i18n:@request-pending%</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,
connectionId: null
};
},
2018-04-26 07:10:01 +00:00
2018-02-13 07:24:21 +00:00
mounted() {
2018-02-18 03:35:18 +00:00
this.connection = (this as any).os.stream.getConnection();
this.connectionId = (this as any).os.stream.use();
2018-02-13 07:24:21 +00:00
this.connection.on('follow', this.onFollow);
this.connection.on('unfollow', this.onUnfollow);
},
2018-04-26 07:10:01 +00:00
2018-02-13 07:24:21 +00:00
beforeDestroy() {
this.connection.off('follow', this.onFollow);
this.connection.off('unfollow', this.onUnfollow);
2018-02-18 03:35:18 +00:00
(this as any).os.stream.dispose(this.connectionId);
2018-02-13 07:24:21 +00:00
},
2018-04-26 07:10:01 +00:00
methods: {
2018-02-13 07:24:21 +00:00
onFollow(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-02-13 07:24:21 +00:00
}
},
onUnfollow(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-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-26 11:19:35 +00:00
2018-03-03 04:47:55 +00:00
2018-04-19 22:45:37 +00:00
root(isDark)
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-04-19 22:45:37 +00:00
color isDark ? #fff : #888
background isDark ? linear-gradient(to bottom, #313543 0%, #282c37 100%) : linear-gradient(to bottom, #ffffff 0%, #f5f5f5 100%)
border solid 1px isDark ? #1c2023 : #e2e2e2
2018-02-19 23:14:44 +00:00
&:hover
2018-04-19 22:45:37 +00:00
background isDark ? linear-gradient(to bottom, #2c2f3c 0%, #22262f 100%) : linear-gradient(to bottom, #f9f9f9 0%, #ececec 100%)
border-color isDark ? #151a1d : #dcdcdc
2018-02-19 23:14:44 +00:00
&:active
2018-04-19 22:45:37 +00:00
background isDark ? #22262f : #ececec
border-color isDark ? #151a1d : #dcdcdc
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)
background linear-gradient(to bottom, var(--primaryLighten25) 0%, var(--primaryLighten10) 100%)
border solid 1px var(--primaryLighten15)
2018-02-19 23:14:44 +00:00
&:not(:disabled)
font-weight bold
&:hover:not(:disabled)
2018-09-26 11:19:35 +00:00
background linear-gradient(to bottom, var(--primaryLighten8) 0%, var(--primaryDarken8) 100%)
border-color var(--primary)
2018-02-19 23:14:44 +00:00
&:active:not(:disabled)
2018-09-26 11:19:35 +00:00
background var(--primary)
border-color var(--primary)
2018-02-19 23:14:44 +00:00
&.wait
cursor wait !important
opacity 0.7
&.big
width 100%
height 38px
line-height 38px
2018-04-19 22:45:37 +00:00
.mk-follow-button[data-darkmode]
root(true)
.mk-follow-button:not([data-darkmode])
root(false)
2018-02-13 07:24:21 +00:00
</style>