frontend/composables/Account.ts

26 lines
631 B
TypeScript
Raw Normal View History

import type { LysandClient } from "@lysand-org/client";
import type { Account } from "@lysand-org/client/types";
export const useAccount = (
client: MaybeRef<LysandClient | null>,
accountId: MaybeRef<string | null>,
) => {
if (!client) {
return ref(null as Account | null);
}
const output = ref(null as 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;
};