2020-01-29 19:37:25 +00:00
|
|
|
<template>
|
2020-01-31 02:58:59 +00:00
|
|
|
<button class="kpoogebi _button"
|
2020-11-28 15:18:54 +00:00
|
|
|
:class="{ wait, active: isFollowing || hasPendingFollowRequestFromYou, full, large }"
|
2020-01-29 19:37:25 +00:00
|
|
|
:disabled="wait"
|
2021-11-19 10:36:12 +00:00
|
|
|
@click="onClick"
|
2020-01-29 19:37:25 +00:00
|
|
|
>
|
|
|
|
<template v-if="!wait">
|
2020-01-31 02:58:59 +00:00
|
|
|
<template v-if="hasPendingFollowRequestFromYou && user.isLocked">
|
2022-01-18 14:06:16 +00:00
|
|
|
<span v-if="full">{{ i18n.locale.followRequestPending }}</span><i class="fas fa-hourglass-half"></i>
|
2020-01-31 02:58:59 +00:00
|
|
|
</template>
|
|
|
|
<template v-else-if="hasPendingFollowRequestFromYou && !user.isLocked"> <!-- つまりリモートフォローの場合。 -->
|
2022-01-18 14:06:16 +00:00
|
|
|
<span v-if="full">{{ i18n.locale.processing }}</span><i class="fas fa-spinner fa-pulse"></i>
|
2020-01-31 02:58:59 +00:00
|
|
|
</template>
|
|
|
|
<template v-else-if="isFollowing">
|
2022-01-18 14:06:16 +00:00
|
|
|
<span v-if="full">{{ i18n.locale.unfollow }}</span><i class="fas fa-minus"></i>
|
2020-01-31 02:58:59 +00:00
|
|
|
</template>
|
|
|
|
<template v-else-if="!isFollowing && user.isLocked">
|
2022-01-18 14:06:16 +00:00
|
|
|
<span v-if="full">{{ i18n.locale.followRequest }}</span><i class="fas fa-plus"></i>
|
2020-01-31 02:58:59 +00:00
|
|
|
</template>
|
|
|
|
<template v-else-if="!isFollowing && !user.isLocked">
|
2022-01-18 14:06:16 +00:00
|
|
|
<span v-if="full">{{ i18n.locale.follow }}</span><i class="fas fa-plus"></i>
|
2020-01-31 02:58:59 +00:00
|
|
|
</template>
|
|
|
|
</template>
|
|
|
|
<template v-else>
|
2022-01-18 14:06:16 +00:00
|
|
|
<span v-if="full">{{ i18n.locale.processing }}</span><i class="fas fa-spinner fa-pulse fa-fw"></i>
|
2020-01-29 19:37:25 +00:00
|
|
|
</template>
|
|
|
|
</button>
|
|
|
|
</template>
|
|
|
|
|
2022-01-18 14:06:16 +00:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { onBeforeUnmount, onMounted, ref } from 'vue';
|
|
|
|
import * as Misskey from 'misskey-js';
|
2021-11-11 17:02:25 +00:00
|
|
|
import * as os from '@/os';
|
2021-12-29 13:13:09 +00:00
|
|
|
import { stream } from '@/stream';
|
2022-01-18 14:06:16 +00:00
|
|
|
import { i18n } from '@/i18n';
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2022-01-18 14:06:16 +00:00
|
|
|
const props = withDefaults(defineProps<{
|
|
|
|
user: Misskey.entities.UserDetailed,
|
|
|
|
full?: boolean,
|
|
|
|
large?: boolean,
|
|
|
|
}>(), {
|
|
|
|
full: false,
|
|
|
|
large: false,
|
|
|
|
});
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2022-01-18 14:06:16 +00:00
|
|
|
const isFollowing = ref(props.user.isFollowing);
|
|
|
|
const hasPendingFollowRequestFromYou = ref(props.user.hasPendingFollowRequestFromYou);
|
|
|
|
const wait = ref(false);
|
|
|
|
const connection = stream.useChannel('main');
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2022-01-18 14:06:16 +00:00
|
|
|
if (props.user.isFollowing == null) {
|
|
|
|
os.api('users/show', {
|
|
|
|
userId: props.user.id
|
|
|
|
}).then(u => {
|
|
|
|
isFollowing.value = u.isFollowing;
|
|
|
|
hasPendingFollowRequestFromYou.value = u.hasPendingFollowRequestFromYou;
|
|
|
|
});
|
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2022-01-18 14:06:16 +00:00
|
|
|
function onFollowChange(user: Misskey.entities.UserDetailed) {
|
|
|
|
if (user.id == props.user.id) {
|
|
|
|
isFollowing.value = user.isFollowing;
|
|
|
|
hasPendingFollowRequestFromYou.value = user.hasPendingFollowRequestFromYou;
|
|
|
|
}
|
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2022-01-18 14:06:16 +00:00
|
|
|
async function onClick() {
|
|
|
|
wait.value = true;
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2022-01-18 14:06:16 +00:00
|
|
|
try {
|
|
|
|
if (isFollowing.value) {
|
|
|
|
const { canceled } = await os.confirm({
|
|
|
|
type: 'warning',
|
|
|
|
text: i18n.t('unfollowConfirm', { name: props.user.name || props.user.username }),
|
|
|
|
});
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2022-01-18 14:06:16 +00:00
|
|
|
if (canceled) return;
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2022-01-18 14:06:16 +00:00
|
|
|
await os.api('following/delete', {
|
|
|
|
userId: props.user.id
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
if (hasPendingFollowRequestFromYou.value) {
|
|
|
|
await os.api('following/requests/cancel', {
|
|
|
|
userId: props.user.id
|
|
|
|
});
|
|
|
|
} else if (props.user.isLocked) {
|
|
|
|
await os.api('following/create', {
|
|
|
|
userId: props.user.id
|
|
|
|
});
|
|
|
|
hasPendingFollowRequestFromYou.value = true;
|
|
|
|
} else {
|
|
|
|
await os.api('following/create', {
|
|
|
|
userId: props.user.id
|
|
|
|
});
|
|
|
|
hasPendingFollowRequestFromYou.value = true;
|
2020-01-29 19:37:25 +00:00
|
|
|
}
|
|
|
|
}
|
2022-01-18 14:06:16 +00:00
|
|
|
} catch (e) {
|
|
|
|
console.error(e);
|
|
|
|
} finally {
|
|
|
|
wait.value = false;
|
2020-01-29 19:37:25 +00:00
|
|
|
}
|
2022-01-18 14:06:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
onMounted(() => {
|
|
|
|
connection.on('follow', onFollowChange);
|
|
|
|
connection.on('unfollow', onFollowChange);
|
|
|
|
});
|
|
|
|
|
|
|
|
onBeforeUnmount(() => {
|
|
|
|
connection.dispose();
|
2020-01-29 19:37:25 +00:00
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
2020-01-31 02:58:59 +00:00
|
|
|
.kpoogebi {
|
2020-01-29 19:37:25 +00: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-31 02:58:59 +00:00
|
|
|
border-radius: 32px;
|
2020-01-29 19:37:25 +00:00
|
|
|
background: #fff;
|
|
|
|
|
2020-01-31 02:58:59 +00:00
|
|
|
&.full {
|
|
|
|
padding: 0 8px 0 12px;
|
2020-01-31 03:01:13 +00:00
|
|
|
font-size: 14px;
|
2020-01-31 02:58:59 +00:00
|
|
|
}
|
|
|
|
|
2020-11-28 15:18:54 +00:00
|
|
|
&.large {
|
|
|
|
font-size: 16px;
|
|
|
|
height: 38px;
|
|
|
|
padding: 0 12px 0 16px;
|
|
|
|
}
|
|
|
|
|
2020-01-31 02:58:59 +00:00
|
|
|
&:not(.full) {
|
|
|
|
width: 31px;
|
|
|
|
}
|
|
|
|
|
2021-10-02 17:46:58 +00:00
|
|
|
&:focus-visible {
|
2020-01-29 19:37:25 +00:00
|
|
|
&:after {
|
|
|
|
content: "";
|
|
|
|
pointer-events: none;
|
|
|
|
position: absolute;
|
|
|
|
top: -5px;
|
|
|
|
right: -5px;
|
|
|
|
bottom: -5px;
|
|
|
|
left: -5px;
|
|
|
|
border: 2px solid var(--focus);
|
2020-01-31 02:58:59 +00:00
|
|
|
border-radius: 32px;
|
2020-01-29 19:37:25 +00: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-31 02:58:59 +00:00
|
|
|
|
|
|
|
> span {
|
2020-01-31 03:01:13 +00:00
|
|
|
margin-right: 6px;
|
2020-01-31 02:58:59 +00:00
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
}
|
|
|
|
</style>
|