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

283 lines
6 KiB
Vue
Raw Normal View History

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