2020-01-29 13:37:25 -06:00
|
|
|
<template>
|
2020-01-30 20:58:59 -06:00
|
|
|
<button class="kpoogebi _button"
|
2020-11-28 09:18:54 -06:00
|
|
|
:class="{ wait, active: isFollowing || hasPendingFollowRequestFromYou, full, large }"
|
2020-01-29 13:37:25 -06:00
|
|
|
:disabled="wait"
|
2021-11-19 04:36:12 -06:00
|
|
|
@click="onClick"
|
2020-01-29 13:37:25 -06:00
|
|
|
>
|
|
|
|
<template v-if="!wait">
|
2020-01-30 20:58:59 -06:00
|
|
|
<template v-if="hasPendingFollowRequestFromYou && user.isLocked">
|
2021-04-20 09:22:59 -05:00
|
|
|
<span v-if="full">{{ $ts.followRequestPending }}</span><i class="fas fa-hourglass-half"></i>
|
2020-01-30 20:58:59 -06:00
|
|
|
</template>
|
|
|
|
<template v-else-if="hasPendingFollowRequestFromYou && !user.isLocked"> <!-- つまりリモートフォローの場合。 -->
|
2021-04-20 09:22:59 -05:00
|
|
|
<span v-if="full">{{ $ts.processing }}</span><i class="fas fa-spinner fa-pulse"></i>
|
2020-01-30 20:58:59 -06:00
|
|
|
</template>
|
|
|
|
<template v-else-if="isFollowing">
|
2021-04-20 09:22:59 -05:00
|
|
|
<span v-if="full">{{ $ts.unfollow }}</span><i class="fas fa-minus"></i>
|
2020-01-30 20:58:59 -06:00
|
|
|
</template>
|
|
|
|
<template v-else-if="!isFollowing && user.isLocked">
|
2021-04-20 09:22:59 -05:00
|
|
|
<span v-if="full">{{ $ts.followRequest }}</span><i class="fas fa-plus"></i>
|
2020-01-30 20:58:59 -06:00
|
|
|
</template>
|
|
|
|
<template v-else-if="!isFollowing && !user.isLocked">
|
2021-04-20 09:22:59 -05:00
|
|
|
<span v-if="full">{{ $ts.follow }}</span><i class="fas fa-plus"></i>
|
2020-01-30 20:58:59 -06:00
|
|
|
</template>
|
|
|
|
</template>
|
|
|
|
<template v-else>
|
2021-04-20 09:22:59 -05:00
|
|
|
<span v-if="full">{{ $ts.processing }}</span><i class="fas fa-spinner fa-pulse fa-fw"></i>
|
2020-01-29 13:37:25 -06:00
|
|
|
</template>
|
|
|
|
</button>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
2021-07-25 21:12:06 -05:00
|
|
|
import { defineComponent, markRaw } from 'vue';
|
2021-11-11 11:02:25 -06:00
|
|
|
import * as os from '@/os';
|
2020-01-29 13:37:25 -06:00
|
|
|
|
2020-10-17 06:12:00 -05:00
|
|
|
export default defineComponent({
|
2020-01-29 13:37:25 -06:00
|
|
|
props: {
|
|
|
|
user: {
|
|
|
|
type: Object,
|
|
|
|
required: true
|
|
|
|
},
|
2020-01-30 20:58:59 -06:00
|
|
|
full: {
|
|
|
|
type: Boolean,
|
|
|
|
required: false,
|
|
|
|
default: false,
|
|
|
|
},
|
2020-11-28 09:18:54 -06:00
|
|
|
large: {
|
|
|
|
type: Boolean,
|
|
|
|
required: false,
|
|
|
|
default: false,
|
|
|
|
},
|
2020-01-29 13:37:25 -06:00
|
|
|
},
|
|
|
|
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
isFollowing: this.user.isFollowing,
|
|
|
|
hasPendingFollowRequestFromYou: this.user.hasPendingFollowRequestFromYou,
|
|
|
|
wait: false,
|
|
|
|
connection: null,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
|
2020-01-31 00:45:19 -06:00
|
|
|
created() {
|
|
|
|
// 渡されたユーザー情報が不完全な場合
|
|
|
|
if (this.user.isFollowing == null) {
|
2020-10-17 06:12:00 -05:00
|
|
|
os.api('users/show', {
|
2020-01-31 00:45:19 -06:00
|
|
|
userId: this.user.id
|
|
|
|
}).then(u => {
|
|
|
|
this.isFollowing = u.isFollowing;
|
|
|
|
this.hasPendingFollowRequestFromYou = u.hasPendingFollowRequestFromYou;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2020-01-29 13:37:25 -06:00
|
|
|
mounted() {
|
2021-07-25 21:12:06 -05:00
|
|
|
this.connection = markRaw(os.stream.useChannel('main'));
|
2020-01-29 13:37:25 -06:00
|
|
|
|
|
|
|
this.connection.on('follow', this.onFollowChange);
|
|
|
|
this.connection.on('unfollow', this.onFollowChange);
|
|
|
|
},
|
|
|
|
|
2020-10-17 06:12:00 -05:00
|
|
|
beforeUnmount() {
|
2020-01-29 13:37:25 -06:00
|
|
|
this.connection.dispose();
|
|
|
|
},
|
|
|
|
|
|
|
|
methods: {
|
|
|
|
onFollowChange(user) {
|
|
|
|
if (user.id == this.user.id) {
|
|
|
|
this.isFollowing = user.isFollowing;
|
|
|
|
this.hasPendingFollowRequestFromYou = user.hasPendingFollowRequestFromYou;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
async onClick() {
|
|
|
|
this.wait = true;
|
|
|
|
|
|
|
|
try {
|
|
|
|
if (this.isFollowing) {
|
2021-11-18 03:45:58 -06:00
|
|
|
const { canceled } = await os.confirm({
|
2020-01-29 13:37:25 -06:00
|
|
|
type: 'warning',
|
|
|
|
text: this.$t('unfollowConfirm', { name: this.user.name || this.user.username }),
|
|
|
|
});
|
|
|
|
|
|
|
|
if (canceled) return;
|
|
|
|
|
2020-10-17 06:12:00 -05:00
|
|
|
await os.api('following/delete', {
|
2020-01-29 13:37:25 -06:00
|
|
|
userId: this.user.id
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
if (this.hasPendingFollowRequestFromYou) {
|
2020-10-17 06:12:00 -05:00
|
|
|
await os.api('following/requests/cancel', {
|
2020-01-29 13:37:25 -06:00
|
|
|
userId: this.user.id
|
|
|
|
});
|
|
|
|
} else if (this.user.isLocked) {
|
2020-10-17 06:12:00 -05:00
|
|
|
await os.api('following/create', {
|
2020-01-29 13:37:25 -06:00
|
|
|
userId: this.user.id
|
|
|
|
});
|
|
|
|
this.hasPendingFollowRequestFromYou = true;
|
|
|
|
} else {
|
2020-10-17 06:12:00 -05:00
|
|
|
await os.api('following/create', {
|
2020-01-29 13:37:25 -06:00
|
|
|
userId: this.user.id
|
|
|
|
});
|
|
|
|
this.hasPendingFollowRequestFromYou = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} catch (e) {
|
|
|
|
console.error(e);
|
|
|
|
} finally {
|
|
|
|
this.wait = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
2020-01-30 20:58:59 -06:00
|
|
|
.kpoogebi {
|
2020-01-29 13:37:25 -06:00
|
|
|
position: relative;
|
|
|
|
display: inline-block;
|
|
|
|
font-weight: bold;
|
|
|
|
color: var(--accent);
|
|
|
|
background: transparent;
|
|
|
|
border: solid 1px var(--accent);
|
|
|
|
padding: 0;
|
|
|
|
height: 31px;
|
|
|
|
font-size: 16px;
|
2020-01-30 20:58:59 -06:00
|
|
|
border-radius: 32px;
|
2020-01-29 13:37:25 -06:00
|
|
|
background: #fff;
|
|
|
|
|
2020-01-30 20:58:59 -06:00
|
|
|
&.full {
|
|
|
|
padding: 0 8px 0 12px;
|
2020-01-30 21:01:13 -06:00
|
|
|
font-size: 14px;
|
2020-01-30 20:58:59 -06:00
|
|
|
}
|
|
|
|
|
2020-11-28 09:18:54 -06:00
|
|
|
&.large {
|
|
|
|
font-size: 16px;
|
|
|
|
height: 38px;
|
|
|
|
padding: 0 12px 0 16px;
|
|
|
|
}
|
|
|
|
|
2020-01-30 20:58:59 -06:00
|
|
|
&:not(.full) {
|
|
|
|
width: 31px;
|
|
|
|
}
|
|
|
|
|
2021-10-02 12:46:58 -05:00
|
|
|
&:focus-visible {
|
2020-01-29 13:37:25 -06:00
|
|
|
&:after {
|
|
|
|
content: "";
|
|
|
|
pointer-events: none;
|
|
|
|
position: absolute;
|
|
|
|
top: -5px;
|
|
|
|
right: -5px;
|
|
|
|
bottom: -5px;
|
|
|
|
left: -5px;
|
|
|
|
border: 2px solid var(--focus);
|
2020-01-30 20:58:59 -06:00
|
|
|
border-radius: 32px;
|
2020-01-29 13:37:25 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
//background: mix($primary, #fff, 20);
|
|
|
|
}
|
|
|
|
|
|
|
|
&:active {
|
|
|
|
//background: mix($primary, #fff, 40);
|
|
|
|
}
|
|
|
|
|
|
|
|
&.active {
|
|
|
|
color: #fff;
|
|
|
|
background: var(--accent);
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background: var(--accentLighten);
|
|
|
|
border-color: var(--accentLighten);
|
|
|
|
}
|
|
|
|
|
|
|
|
&:active {
|
|
|
|
background: var(--accentDarken);
|
|
|
|
border-color: var(--accentDarken);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.wait {
|
|
|
|
cursor: wait !important;
|
|
|
|
opacity: 0.7;
|
|
|
|
}
|
2020-01-30 20:58:59 -06:00
|
|
|
|
|
|
|
> span {
|
2020-01-30 21:01:13 -06:00
|
|
|
margin-right: 6px;
|
2020-01-30 20:58:59 -06:00
|
|
|
}
|
2020-01-29 13:37:25 -06:00
|
|
|
}
|
|
|
|
</style>
|