frontend/app/composables/Account.ts

27 lines
675 B
TypeScript
Raw Normal View History

import type { Client } from "@versia/client";
import type { Account } from "@versia/client/schemas";
import type { z } from "zod";
export const useAccount = (
client: MaybeRef<Client | null>,
accountId: MaybeRef<string | null>,
) => {
if (!client) {
return ref(null as z.infer<typeof Account> | null);
}
const output = ref(null as z.infer<typeof Account> | null);
watchEffect(() => {
2024-06-20 02:07:56 +02:00
if (toValue(accountId)) {
2024-05-12 11:23:38 +02:00
toValue(client)
?.getAccount(toValue(accountId) ?? "")
.then((res) => {
output.value = res.data;
});
2024-06-20 02:07:56 +02:00
}
});
return output;
};