iceshrimp/packages/client/src/components/MkFollowButton.vue

276 lines
5.7 KiB
Vue
Raw Normal View History

<template>
<button
v-if="!hideMenu"
class="menu _button"
@click.stop="menu"
v-tooltip="i18n.ts.menu"
>
2023-06-13 08:56:15 +09:00
<i class="ph-dots-three-outline ph-bold ph-lg"></i>
2023-06-13 06:59:13 +09:00
</button>
2023-04-08 09:01:42 +09:00
<button
2023-05-22 02:10:27 +09:00
v-if="$i != null && $i.id != user.id"
class="kpoogebi _button follow-button"
2023-04-08 09:01:42 +09:00
:class="{
wait,
active: isFollowing || hasPendingFollowRequestFromYou,
full,
large,
blocking: isBlocking,
}"
:disabled="wait"
2023-06-13 08:49:38 +09:00
@click.stop="onClick"
2023-05-22 12:05:52 +09:00
:aria-label="`${state} ${user.name || user.username}`"
v-tooltip="full ? null : `${state} ${user.name || user.username}`"
2023-04-08 09:01:42 +09:00
>
<template v-if="!wait">
<template v-if="isBlocking">
<span>{{ (state = i18n.ts.blocked) }}</span
2023-04-08 09:01:42 +09:00
><i class="ph-prohibit ph-bold ph-lg"></i>
</template>
<template
v-else-if="hasPendingFollowRequestFromYou && user.isLocked"
>
2023-06-19 10:36:34 +09:00
<span>{{ (state = i18n.ts.followRequestPending) }}</span
2023-04-08 09:01:42 +09:00
><i class="ph-hourglass-medium ph-bold ph-lg"></i>
</template>
<template
v-else-if="hasPendingFollowRequestFromYou && !user.isLocked"
>
<!-- つまりリモートフォローの場合 -->
<span>{{ (state = i18n.ts.processing) }}</span
2023-04-08 09:01:42 +09:00
><i class="ph-circle-notch ph-bold ph-lg fa-pulse"></i>
</template>
<template v-else-if="isFollowing">
<span>{{ (state = i18n.ts.unfollow) }}</span
2023-04-08 09:01:42 +09:00
><i class="ph-minus ph-bold ph-lg"></i>
</template>
<template v-else-if="!isFollowing && user.isLocked">
<span>{{ (state = i18n.ts.followRequest) }}</span
2023-04-08 09:01:42 +09:00
><i class="ph-plus ph-bold ph-lg"></i>
</template>
<template v-else-if="!isFollowing && !user.isLocked">
<span>{{ (state = i18n.ts.follow) }}</span
2023-04-08 09:01:42 +09:00
><i class="ph-plus ph-bold ph-lg"></i>
</template>
</template>
2023-04-08 09:01:42 +09:00
<template v-else>
<span>{{ (state = i18n.ts.processing) }}</span
2023-04-08 09:01:42 +09:00
><i class="ph-circle-notch ph-bold ph-lg fa-pulse ph-fw ph-lg"></i>
2020-01-31 11:58:59 +09:00
</template>
2023-04-08 09:01:42 +09:00
</button>
</template>
<script lang="ts" setup>
2023-04-08 09:01:42 +09:00
import { computed, onBeforeUnmount, onMounted } from "vue";
import type * as Misskey from "calckey-js";
import * as os from "@/os";
import { stream } from "@/stream";
import { i18n } from "@/i18n";
2023-05-22 02:10:27 +09:00
import { $i } from "@/account";
2023-06-13 06:59:13 +09:00
import { getUserMenu } from "@/scripts/get-user-menu";
import { useRouter } from "@/router";
const router = useRouter();
2023-04-08 09:01:42 +09:00
const emit = defineEmits(["refresh"]);
const props = withDefaults(
defineProps<{
user: Misskey.entities.UserDetailed;
full?: boolean;
large?: boolean;
2023-06-15 03:57:16 +09:00
hideMenu?: boolean;
2023-04-08 09:01:42 +09:00
}>(),
{
full: false,
large: false,
}
);
const isBlocking = computed(() => props.user.isBlocking);
2023-05-22 02:10:27 +09:00
let state = $ref(i18n.ts.processing);
let isFollowing = $ref(props.user.isFollowing);
2023-04-08 09:01:42 +09:00
let hasPendingFollowRequestFromYou = $ref(
props.user.hasPendingFollowRequestFromYou
);
let wait = $ref(false);
2023-04-08 09:01:42 +09:00
const connection = stream.useChannel("main");
if (props.user.isFollowing == null) {
2023-04-08 09:01:42 +09:00
os.api("users/show", {
2022-11-19 12:30:01 +09:00
userId: props.user.id,
2023-04-08 09:01:42 +09:00
}).then(onFollowChange);
}
function onFollowChange(user: Misskey.entities.UserDetailed) {
if (user.id === props.user.id) {
isFollowing = user.isFollowing;
hasPendingFollowRequestFromYou = user.hasPendingFollowRequestFromYou;
}
}
async function onClick() {
wait = true;
try {
if (isBlocking.value) {
const { canceled } = await os.confirm({
2023-04-08 09:01:42 +09:00
type: "warning",
text: i18n.t("unblockConfirm"),
});
2023-04-08 09:01:42 +09:00
if (canceled) return;
await os.api("blocking/delete", {
userId: props.user.id,
2023-04-08 09:01:42 +09:00
});
if (props.user.isMuted) {
await os.api("mute/delete", {
userId: props.user.id,
2023-04-08 09:01:42 +09:00
});
}
2023-04-08 09:01:42 +09:00
emit("refresh");
} else if (isFollowing) {
const { canceled } = await os.confirm({
2023-04-08 09:01:42 +09:00
type: "warning",
text: i18n.t("unfollowConfirm", {
name: props.user.name || props.user.username,
}),
});
if (canceled) return;
2023-04-08 09:01:42 +09:00
await os.api("following/delete", {
2022-11-19 12:30:01 +09:00
userId: props.user.id,
});
} else {
if (hasPendingFollowRequestFromYou) {
2023-04-08 09:01:42 +09:00
await os.api("following/requests/cancel", {
2022-11-19 12:30:01 +09:00
userId: props.user.id,
});
hasPendingFollowRequestFromYou = false;
} else {
2023-04-08 09:01:42 +09:00
await os.api("following/create", {
2022-11-19 12:30:01 +09:00
userId: props.user.id,
});
hasPendingFollowRequestFromYou = true;
}
}
} catch (err) {
console.error(err);
} finally {
wait = false;
}
}
2023-06-13 06:59:13 +09:00
function menu(ev) {
os.popupMenu(
getUserMenu(props.user, router),
ev.currentTarget ?? ev.target
);
}
onMounted(() => {
2023-04-08 09:01:42 +09:00
connection.on("follow", onFollowChange);
connection.on("unfollow", onFollowChange);
});
onBeforeUnmount(() => {
connection.dispose();
});
</script>
<style lang="scss" scoped>
2023-06-13 07:05:31 +09:00
.menu {
width: 3em;
height: 2em;
vertical-align: middle;
2023-06-13 07:05:31 +09:00
}
2023-05-22 02:10:27 +09:00
.follow-button {
position: relative;
2023-04-04 02:03:35 +09:00
display: inline-flex;
2023-04-02 15:53:31 +09:00
align-items: center;
justify-content: center;
font-weight: bold;
color: var(--accent);
border: solid 1px var(--accent);
padding: 0;
font-size: 16px;
2023-05-22 02:10:27 +09:00
width: 2em;
height: 2em;
border-radius: 100px;
2023-03-23 06:29:07 +09:00
background: var(--bg);
vertical-align: middle;
2020-01-31 11:58:59 +09:00
&.full {
2023-05-22 12:05:52 +09:00
padding: 0.2em 0.7em;
2023-05-22 02:10:27 +09:00
width: auto;
2020-01-31 12:01:13 +09:00
font-size: 14px;
2020-01-31 11:58:59 +09:00
}
2020-11-29 00:18:54 +09:00
&.large {
font-size: 16px;
height: 38px;
padding: 0 12px 0 16px;
}
2020-01-31 11:58:59 +09:00
&:not(.full) {
width: 31px;
span {
display: none;
}
2020-01-31 11:58:59 +09:00
}
2021-10-03 02:46:58 +09:00
&:focus-visible {
&:after {
content: "";
pointer-events: none;
position: absolute;
top: -5px;
right: -5px;
bottom: -5px;
left: -5px;
border: 2px solid var(--focus);
2020-01-31 11:58:59 +09:00
border-radius: 32px;
}
}
&:hover {
//background: mix($primary, #fff, 20);
}
&:active {
//background: mix($primary, #fff, 40);
}
&.active {
2023-05-22 02:10:27 +09:00
color: var(--fgOnAccent);
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 11:58:59 +09:00
> span {
2020-01-31 12:01:13 +09:00
margin-right: 6px;
2020-01-31 11:58:59 +09:00
}
}
.blocking {
background-color: var(--bg) !important;
border: none;
}
</style>