mirror of
https://github.com/versia-pub/frontend.git
synced 2025-12-06 16:38:20 +01:00
50 lines
1.6 KiB
TypeScript
50 lines
1.6 KiB
TypeScript
import type { LysandClient } from "@lysand-org/client";
|
|
import type { Relationship } from "@lysand-org/client/types";
|
|
import { useCurrentIdentity } from "./Identities";
|
|
|
|
export const useRelationship = (
|
|
client: MaybeRef<LysandClient | null>,
|
|
accountId: MaybeRef<string | null>,
|
|
) => {
|
|
const relationship = ref(null as Relationship | null);
|
|
const isLoading = ref(false);
|
|
|
|
if (!useCurrentIdentity().value) {
|
|
return { relationship, isLoading };
|
|
}
|
|
|
|
watchEffect(() => {
|
|
if (toValue(accountId)) {
|
|
toValue(client)
|
|
?.getRelationship(toValue(accountId) ?? "")
|
|
.then((res) => {
|
|
relationship.value = res.data;
|
|
});
|
|
}
|
|
});
|
|
|
|
watch(relationship, (newOutput, oldOutput) => {
|
|
if (newOutput !== oldOutput && newOutput && oldOutput) {
|
|
if (newOutput?.following !== oldOutput?.following) {
|
|
isLoading.value = true;
|
|
if (newOutput?.following) {
|
|
toValue(client)
|
|
?.followAccount(toValue(accountId) ?? "")
|
|
.finally(() => {
|
|
isLoading.value = false;
|
|
});
|
|
} else {
|
|
toValue(client)
|
|
?.unfollowAccount(toValue(accountId) ?? "")
|
|
.finally(() => {
|
|
isLoading.value = false;
|
|
});
|
|
}
|
|
}
|
|
// FIXME: Add more relationship changes
|
|
}
|
|
});
|
|
|
|
return { relationship, isLoading };
|
|
};
|