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

175 lines
3.7 KiB
Vue
Raw Normal View History

2018-02-13 09:24:21 +02:00
<template>
<button class="mk-follow-button"
2018-03-29 08:48:47 +03:00
:class="{ wait, follow: !user.isFollowing, unfollow: user.isFollowing, big: size == 'big' }"
2018-02-13 09:24:21 +02:00
@click="onClick"
:disabled="wait"
:title="user.isFollowing ? '%i18n:@unfollow%' : '%i18n:@follow%'"
2018-02-13 09:24:21 +02:00
>
2018-03-29 08:48:47 +03:00
<template v-if="!wait && user.isFollowing">
2018-02-20 01:14:44 +02:00
<template v-if="size == 'compact'">%fa:minus%</template>
<template v-if="size == 'big'">%fa:minus%%i18n:@unfollow%</template>
2018-02-20 01:14:44 +02:00
</template>
2018-03-29 08:48:47 +03:00
<template v-if="!wait && !user.isFollowing">
2018-02-20 01:14:44 +02:00
<template v-if="size == 'compact'">%fa:plus%</template>
<template v-if="size == 'big'">%fa:plus%%i18n:@follow%</template>
2018-02-20 01:14:44 +02:00
</template>
2018-02-13 09:24:21 +02:00
<template v-if="wait">%fa:spinner .pulse .fw%</template>
</button>
</template>
<script lang="ts">
import Vue from 'vue';
2018-04-26 10:10:01 +03:00
2018-02-13 09:24:21 +02:00
export default Vue.extend({
props: {
user: {
type: Object,
required: true
2018-02-20 01:14:44 +02:00
},
size: {
type: String,
default: 'compact'
2018-02-13 09:24:21 +02:00
}
},
2018-04-26 10:10:01 +03:00
2018-02-13 09:24:21 +02:00
data() {
return {
wait: false,
connection: null,
connectionId: null
};
},
2018-04-26 10:10:01 +03:00
2018-02-13 09:24:21 +02:00
mounted() {
2018-02-18 05:35:18 +02:00
this.connection = (this as any).os.stream.getConnection();
this.connectionId = (this as any).os.stream.use();
2018-02-13 09:24:21 +02:00
this.connection.on('follow', this.onFollow);
this.connection.on('unfollow', this.onUnfollow);
},
2018-04-26 10:10:01 +03:00
2018-02-13 09:24:21 +02:00
beforeDestroy() {
this.connection.off('follow', this.onFollow);
this.connection.off('unfollow', this.onUnfollow);
2018-02-18 05:35:18 +02:00
(this as any).os.stream.dispose(this.connectionId);
2018-02-13 09:24:21 +02:00
},
2018-04-26 10:10:01 +03:00
methods: {
2018-02-13 09:24:21 +02:00
onFollow(user) {
if (user.id == this.user.id) {
2018-03-29 08:48:47 +03:00
this.user.isFollowing = user.isFollowing;
2018-02-13 09:24:21 +02:00
}
},
onUnfollow(user) {
if (user.id == this.user.id) {
2018-03-29 08:48:47 +03:00
this.user.isFollowing = user.isFollowing;
2018-02-13 09:24:21 +02:00
}
},
onClick() {
this.wait = true;
2018-03-29 08:48:47 +03:00
if (this.user.isFollowing) {
2018-02-18 05:35:18 +02:00
(this as any).api('following/delete', {
2018-03-29 08:48:47 +03:00
userId: this.user.id
2018-02-13 09:24:21 +02:00
}).then(() => {
2018-03-29 08:48:47 +03:00
this.user.isFollowing = false;
2018-02-13 09:24:21 +02:00
}).catch(err => {
console.error(err);
}).then(() => {
this.wait = false;
});
} else {
2018-02-18 05:35:18 +02:00
(this as any).api('following/create', {
2018-03-29 08:48:47 +03:00
userId: this.user.id
2018-02-13 09:24:21 +02:00
}).then(() => {
2018-03-29 08:48:47 +03:00
this.user.isFollowing = true;
2018-02-13 09:24:21 +02:00
}).catch(err => {
console.error(err);
}).then(() => {
this.wait = false;
});
}
}
}
});
</script>
<style lang="stylus" scoped>
2018-03-03 06:47:55 +02:00
@import '~const.styl'
2018-04-20 01:45:37 +03:00
root(isDark)
2018-02-13 09:24:21 +02:00
display block
2018-02-20 01:14:44 +02: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 09:24:21 +02:00
pointer-events none
2018-02-20 01:14:44 +02:00
position absolute
top -5px
right -5px
bottom -5px
left -5px
border 2px solid rgba($theme-color, 0.3)
border-radius 8px
&.follow
2018-04-20 01:45:37 +03: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-20 01:14:44 +02:00
&:hover
2018-04-20 01:45:37 +03: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-20 01:14:44 +02:00
&:active
2018-04-20 01:45:37 +03:00
background isDark ? #22262f : #ececec
border-color isDark ? #151a1d : #dcdcdc
2018-02-20 01:14:44 +02:00
&.unfollow
color $theme-color-foreground
background linear-gradient(to bottom, lighten($theme-color, 25%) 0%, lighten($theme-color, 10%) 100%)
border solid 1px lighten($theme-color, 15%)
&:not(:disabled)
font-weight bold
&:hover:not(:disabled)
background linear-gradient(to bottom, lighten($theme-color, 8%) 0%, darken($theme-color, 8%) 100%)
border-color $theme-color
&:active:not(:disabled)
background $theme-color
border-color $theme-color
&.wait
cursor wait !important
opacity 0.7
&.big
width 100%
height 38px
line-height 38px
i
margin-right 8px
2018-02-13 09:24:21 +02:00
2018-04-20 01:45:37 +03:00
.mk-follow-button[data-darkmode]
root(true)
.mk-follow-button:not([data-darkmode])
root(false)
2018-02-13 09:24:21 +02:00
</style>