frontend/app/composables/AccountAcct.ts
2025-08-28 07:41:51 +02:00

21 lines
545 B
TypeScript

import type { Account } from "@versia/client/schemas";
import type { z } from "zod";
export const useAccountFromAcct = (
acct: string,
): {
account: Ref<z.infer<typeof Account> | null>;
isLoading: Ref<boolean>;
} => {
const output = ref(null as z.infer<typeof Account> | null);
const isLoading = ref(true);
const authStore = useAuthStore();
authStore.client.lookupAccount(acct).then((res) => {
isLoading.value = false;
output.value = res.data;
});
return { account: output, isLoading };
};