2018-02-13 08:24:21 +01:00
|
|
|
<template>
|
|
|
|
<button class="mk-follow-button"
|
2018-03-29 07:48:47 +02:00
|
|
|
:class="{ wait, follow: !user.isFollowing, unfollow: user.isFollowing, big: size == 'big' }"
|
2018-02-13 08:24:21 +01:00
|
|
|
@click="onClick"
|
|
|
|
:disabled="wait"
|
2018-03-29 07:48:47 +02:00
|
|
|
:title="user.isFollowing ? 'フォロー解除' : 'フォローする'"
|
2018-02-13 08:24:21 +01:00
|
|
|
>
|
2018-03-29 07:48:47 +02:00
|
|
|
<template v-if="!wait && user.isFollowing">
|
2018-02-20 00:14:44 +01:00
|
|
|
<template v-if="size == 'compact'">%fa:minus%</template>
|
|
|
|
<template v-if="size == 'big'">%fa:minus%フォロー解除</template>
|
|
|
|
</template>
|
2018-03-29 07:48:47 +02:00
|
|
|
<template v-if="!wait && !user.isFollowing">
|
2018-02-20 00:14:44 +01:00
|
|
|
<template v-if="size == 'compact'">%fa:plus%</template>
|
|
|
|
<template v-if="size == 'big'">%fa:plus%フォロー</template>
|
|
|
|
</template>
|
2018-02-13 08:24:21 +01:00
|
|
|
<template v-if="wait">%fa:spinner .pulse .fw%</template>
|
|
|
|
</button>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
|
|
|
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
|
|
|
}
|
|
|
|
},
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
wait: false,
|
|
|
|
connection: null,
|
|
|
|
connectionId: null
|
|
|
|
};
|
|
|
|
},
|
|
|
|
mounted() {
|
2018-02-18 04:35:18 +01:00
|
|
|
this.connection = (this as any).os.stream.getConnection();
|
|
|
|
this.connectionId = (this as any).os.stream.use();
|
2018-02-13 08:24:21 +01:00
|
|
|
|
|
|
|
this.connection.on('follow', this.onFollow);
|
|
|
|
this.connection.on('unfollow', this.onUnfollow);
|
|
|
|
},
|
|
|
|
beforeDestroy() {
|
|
|
|
this.connection.off('follow', this.onFollow);
|
|
|
|
this.connection.off('unfollow', this.onUnfollow);
|
2018-02-18 04:35:18 +01:00
|
|
|
(this as any).os.stream.dispose(this.connectionId);
|
2018-02-13 08:24:21 +01:00
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
|
|
|
|
onFollow(user) {
|
|
|
|
if (user.id == this.user.id) {
|
2018-03-29 07:48:47 +02:00
|
|
|
this.user.isFollowing = user.isFollowing;
|
2018-02-13 08:24:21 +01:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
onUnfollow(user) {
|
|
|
|
if (user.id == this.user.id) {
|
2018-03-29 07:48:47 +02:00
|
|
|
this.user.isFollowing = user.isFollowing;
|
2018-02-13 08:24:21 +01:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
onClick() {
|
|
|
|
this.wait = true;
|
2018-03-29 07:48:47 +02:00
|
|
|
if (this.user.isFollowing) {
|
2018-02-18 04:35:18 +01:00
|
|
|
(this as any).api('following/delete', {
|
2018-03-29 07:48:47 +02:00
|
|
|
userId: this.user.id
|
2018-02-13 08:24:21 +01:00
|
|
|
}).then(() => {
|
2018-03-29 07:48:47 +02:00
|
|
|
this.user.isFollowing = false;
|
2018-02-13 08:24:21 +01:00
|
|
|
}).catch(err => {
|
|
|
|
console.error(err);
|
|
|
|
}).then(() => {
|
|
|
|
this.wait = false;
|
|
|
|
});
|
|
|
|
} else {
|
2018-02-18 04:35:18 +01:00
|
|
|
(this as any).api('following/create', {
|
2018-03-29 07:48:47 +02:00
|
|
|
userId: this.user.id
|
2018-02-13 08:24:21 +01:00
|
|
|
}).then(() => {
|
2018-03-29 07:48:47 +02:00
|
|
|
this.user.isFollowing = true;
|
2018-02-13 08:24:21 +01:00
|
|
|
}).catch(err => {
|
|
|
|
console.error(err);
|
|
|
|
}).then(() => {
|
|
|
|
this.wait = false;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="stylus" scoped>
|
2018-03-03 05:47:55 +01:00
|
|
|
@import '~const.styl'
|
|
|
|
|
2018-04-20 00:45:37 +02:00
|
|
|
root(isDark)
|
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
|
|
|
|
border 2px solid rgba($theme-color, 0.3)
|
|
|
|
border-radius 8px
|
|
|
|
|
|
|
|
&.follow
|
2018-04-20 00:45:37 +02: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 00:14:44 +01:00
|
|
|
|
|
|
|
&:hover
|
2018-04-20 00:45:37 +02: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 00:14:44 +01:00
|
|
|
|
|
|
|
&:active
|
2018-04-20 00:45:37 +02:00
|
|
|
background isDark ? #22262f : #ececec
|
|
|
|
border-color isDark ? #151a1d : #dcdcdc
|
2018-02-20 00:14:44 +01: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 08:24:21 +01:00
|
|
|
|
2018-04-20 00:45:37 +02:00
|
|
|
.mk-follow-button[data-darkmode]
|
|
|
|
root(true)
|
|
|
|
|
|
|
|
.mk-follow-button:not([data-darkmode])
|
|
|
|
root(false)
|
|
|
|
|
2018-02-13 08:24:21 +01:00
|
|
|
</style>
|