wip
This commit is contained in:
parent
56fcf15cae
commit
58af12ccc3
|
@ -1,153 +0,0 @@
|
||||||
<mk-big-follow-button>
|
|
||||||
<button :class="{ wait: wait, follow: !user.is_following, unfollow: user.is_following }" v-if="!init" @click="onclick" disabled={ wait } title={ user.is_following ? 'フォロー解除' : 'フォローする' }>
|
|
||||||
<span v-if="!wait && user.is_following">%fa:minus%フォロー解除</span>
|
|
||||||
<span v-if="!wait && !user.is_following">%fa:plus%フォロー</span>
|
|
||||||
<template v-if="wait">%fa:spinner .pulse .fw%</template>
|
|
||||||
</button>
|
|
||||||
<div class="init" v-if="init">%fa:spinner .pulse .fw%</div>
|
|
||||||
<style lang="stylus" scoped>
|
|
||||||
:scope
|
|
||||||
display block
|
|
||||||
|
|
||||||
> button
|
|
||||||
> .init
|
|
||||||
display block
|
|
||||||
cursor pointer
|
|
||||||
padding 0
|
|
||||||
margin 0
|
|
||||||
width 100%
|
|
||||||
line-height 38px
|
|
||||||
font-size 1em
|
|
||||||
outline none
|
|
||||||
border-radius 4px
|
|
||||||
|
|
||||||
*
|
|
||||||
pointer-events none
|
|
||||||
|
|
||||||
i
|
|
||||||
margin-right 8px
|
|
||||||
|
|
||||||
&:focus
|
|
||||||
&:after
|
|
||||||
content ""
|
|
||||||
pointer-events none
|
|
||||||
position absolute
|
|
||||||
top -5px
|
|
||||||
right -5px
|
|
||||||
bottom -5px
|
|
||||||
left -5px
|
|
||||||
border 2px solid rgba($theme-color, 0.3)
|
|
||||||
border-radius 8px
|
|
||||||
|
|
||||||
&.follow
|
|
||||||
color #888
|
|
||||||
background linear-gradient(to bottom, #ffffff 0%, #f5f5f5 100%)
|
|
||||||
border solid 1px #e2e2e2
|
|
||||||
|
|
||||||
&:hover
|
|
||||||
background linear-gradient(to bottom, #f9f9f9 0%, #ececec 100%)
|
|
||||||
border-color #dcdcdc
|
|
||||||
|
|
||||||
&:active
|
|
||||||
background #ececec
|
|
||||||
border-color #dcdcdc
|
|
||||||
|
|
||||||
&.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
|
|
||||||
|
|
||||||
</style>
|
|
||||||
<script lang="typescript">
|
|
||||||
import isPromise from '../../common/scripts/is-promise';
|
|
||||||
|
|
||||||
this.mixin('i');
|
|
||||||
this.mixin('api');
|
|
||||||
|
|
||||||
this.mixin('stream');
|
|
||||||
this.connection = this.stream.getConnection();
|
|
||||||
this.connectionId = this.stream.use();
|
|
||||||
|
|
||||||
this.user = null;
|
|
||||||
this.userPromise = isPromise(this.opts.user)
|
|
||||||
? this.opts.user
|
|
||||||
: Promise.resolve(this.opts.user);
|
|
||||||
this.init = true;
|
|
||||||
this.wait = false;
|
|
||||||
|
|
||||||
this.on('mount', () => {
|
|
||||||
this.userPromise.then(user => {
|
|
||||||
this.update({
|
|
||||||
init: false,
|
|
||||||
user: user
|
|
||||||
});
|
|
||||||
this.connection.on('follow', this.onStreamFollow);
|
|
||||||
this.connection.on('unfollow', this.onStreamUnfollow);
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
this.on('unmount', () => {
|
|
||||||
this.connection.off('follow', this.onStreamFollow);
|
|
||||||
this.connection.off('unfollow', this.onStreamUnfollow);
|
|
||||||
this.stream.dispose(this.connectionId);
|
|
||||||
});
|
|
||||||
|
|
||||||
this.onStreamFollow = user => {
|
|
||||||
if (user.id == this.user.id) {
|
|
||||||
this.update({
|
|
||||||
user: user
|
|
||||||
});
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
this.onStreamUnfollow = user => {
|
|
||||||
if (user.id == this.user.id) {
|
|
||||||
this.update({
|
|
||||||
user: user
|
|
||||||
});
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
this.onclick = () => {
|
|
||||||
this.wait = true;
|
|
||||||
if (this.user.is_following) {
|
|
||||||
this.$root.$data.os.api('following/delete', {
|
|
||||||
user_id: this.user.id
|
|
||||||
}).then(() => {
|
|
||||||
this.user.is_following = false;
|
|
||||||
}).catch(err => {
|
|
||||||
console.error(err);
|
|
||||||
}).then(() => {
|
|
||||||
this.wait = false;
|
|
||||||
this.update();
|
|
||||||
});
|
|
||||||
} else {
|
|
||||||
this.$root.$data.os.api('following/create', {
|
|
||||||
user_id: this.user.id
|
|
||||||
}).then(() => {
|
|
||||||
this.user.is_following = true;
|
|
||||||
}).catch(err => {
|
|
||||||
console.error(err);
|
|
||||||
}).then(() => {
|
|
||||||
this.wait = false;
|
|
||||||
this.update();
|
|
||||||
});
|
|
||||||
}
|
|
||||||
};
|
|
||||||
</script>
|
|
||||||
</mk-big-follow-button>
|
|
|
@ -1,12 +1,18 @@
|
||||||
<template>
|
<template>
|
||||||
<button class="mk-follow-button"
|
<button class="mk-follow-button"
|
||||||
:class="{ wait, follow: !user.is_following, unfollow: user.is_following }"
|
:class="{ wait, follow: !user.is_following, unfollow: user.is_following, big: size == 'big' }"
|
||||||
@click="onClick"
|
@click="onClick"
|
||||||
:disabled="wait"
|
:disabled="wait"
|
||||||
:title="user.is_following ? 'フォロー解除' : 'フォローする'"
|
:title="user.is_following ? 'フォロー解除' : 'フォローする'"
|
||||||
>
|
>
|
||||||
<template v-if="!wait && user.is_following">%fa:minus%</template>
|
<template v-if="!wait && user.is_following">
|
||||||
<template v-if="!wait && !user.is_following">%fa:plus%</template>
|
<template v-if="size == 'compact'">%fa:minus%</template>
|
||||||
|
<template v-if="size == 'big'">%fa:minus%フォロー解除</template>
|
||||||
|
</template>
|
||||||
|
<template v-if="!wait && !user.is_following">
|
||||||
|
<template v-if="size == 'compact'">%fa:plus%</template>
|
||||||
|
<template v-if="size == 'big'">%fa:plus%フォロー</template>
|
||||||
|
</template>
|
||||||
<template v-if="wait">%fa:spinner .pulse .fw%</template>
|
<template v-if="wait">%fa:spinner .pulse .fw%</template>
|
||||||
</button>
|
</button>
|
||||||
</template>
|
</template>
|
||||||
|
@ -18,6 +24,10 @@ export default Vue.extend({
|
||||||
user: {
|
user: {
|
||||||
type: Object,
|
type: Object,
|
||||||
required: true
|
required: true
|
||||||
|
},
|
||||||
|
size: {
|
||||||
|
type: String,
|
||||||
|
default: 'compact'
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
data() {
|
data() {
|
||||||
|
@ -84,65 +94,69 @@ export default Vue.extend({
|
||||||
<style lang="stylus" scoped>
|
<style lang="stylus" scoped>
|
||||||
.mk-follow-button
|
.mk-follow-button
|
||||||
display block
|
display block
|
||||||
|
cursor pointer
|
||||||
|
padding 0
|
||||||
|
margin 0
|
||||||
|
width 32px
|
||||||
|
height 32px
|
||||||
|
font-size 1em
|
||||||
|
outline none
|
||||||
|
border-radius 4px
|
||||||
|
|
||||||
> button
|
*
|
||||||
> .init
|
pointer-events none
|
||||||
display block
|
|
||||||
cursor pointer
|
|
||||||
padding 0
|
|
||||||
margin 0
|
|
||||||
width 32px
|
|
||||||
height 32px
|
|
||||||
font-size 1em
|
|
||||||
outline none
|
|
||||||
border-radius 4px
|
|
||||||
|
|
||||||
*
|
&:focus
|
||||||
|
&:after
|
||||||
|
content ""
|
||||||
pointer-events none
|
pointer-events none
|
||||||
|
position absolute
|
||||||
|
top -5px
|
||||||
|
right -5px
|
||||||
|
bottom -5px
|
||||||
|
left -5px
|
||||||
|
border 2px solid rgba($theme-color, 0.3)
|
||||||
|
border-radius 8px
|
||||||
|
|
||||||
&:focus
|
&.follow
|
||||||
&:after
|
color #888
|
||||||
content ""
|
background linear-gradient(to bottom, #ffffff 0%, #f5f5f5 100%)
|
||||||
pointer-events none
|
border solid 1px #e2e2e2
|
||||||
position absolute
|
|
||||||
top -5px
|
|
||||||
right -5px
|
|
||||||
bottom -5px
|
|
||||||
left -5px
|
|
||||||
border 2px solid rgba($theme-color, 0.3)
|
|
||||||
border-radius 8px
|
|
||||||
|
|
||||||
&.follow
|
&:hover
|
||||||
color #888
|
background linear-gradient(to bottom, #f9f9f9 0%, #ececec 100%)
|
||||||
background linear-gradient(to bottom, #ffffff 0%, #f5f5f5 100%)
|
border-color #dcdcdc
|
||||||
border solid 1px #e2e2e2
|
|
||||||
|
|
||||||
&:hover
|
&:active
|
||||||
background linear-gradient(to bottom, #f9f9f9 0%, #ececec 100%)
|
background #ececec
|
||||||
border-color #dcdcdc
|
border-color #dcdcdc
|
||||||
|
|
||||||
&:active
|
&.unfollow
|
||||||
background #ececec
|
color $theme-color-foreground
|
||||||
border-color #dcdcdc
|
background linear-gradient(to bottom, lighten($theme-color, 25%) 0%, lighten($theme-color, 10%) 100%)
|
||||||
|
border solid 1px lighten($theme-color, 15%)
|
||||||
|
|
||||||
&.unfollow
|
&:not(:disabled)
|
||||||
color $theme-color-foreground
|
font-weight bold
|
||||||
background linear-gradient(to bottom, lighten($theme-color, 25%) 0%, lighten($theme-color, 10%) 100%)
|
|
||||||
border solid 1px lighten($theme-color, 15%)
|
|
||||||
|
|
||||||
&:not(:disabled)
|
&:hover:not(:disabled)
|
||||||
font-weight bold
|
background linear-gradient(to bottom, lighten($theme-color, 8%) 0%, darken($theme-color, 8%) 100%)
|
||||||
|
border-color $theme-color
|
||||||
|
|
||||||
&:hover:not(:disabled)
|
&:active:not(:disabled)
|
||||||
background linear-gradient(to bottom, lighten($theme-color, 8%) 0%, darken($theme-color, 8%) 100%)
|
background $theme-color
|
||||||
border-color $theme-color
|
border-color $theme-color
|
||||||
|
|
||||||
&:active:not(:disabled)
|
&.wait
|
||||||
background $theme-color
|
cursor wait !important
|
||||||
border-color $theme-color
|
opacity 0.7
|
||||||
|
|
||||||
&.wait
|
&.big
|
||||||
cursor wait !important
|
width 100%
|
||||||
opacity 0.7
|
height 38px
|
||||||
|
line-height 38px
|
||||||
|
|
||||||
|
i
|
||||||
|
margin-right 8px
|
||||||
|
|
||||||
</style>
|
</style>
|
||||||
|
|
Loading…
Reference in New Issue