frontend/composables/NoteContext.ts
2024-06-19 14:07:56 -10:00

26 lines
645 B
TypeScript

import type { LysandClient } from "@lysand-org/client";
import type { Context } from "@lysand-org/client/types";
export const useNoteContext = (
client: MaybeRef<LysandClient | null>,
noteId: MaybeRef<string | null>,
) => {
if (!ref(client).value) {
return ref(null as Context | null);
}
const output = ref(null as Context | null);
watchEffect(() => {
if (toValue(noteId)) {
ref(client)
.value?.getStatusContext(toValue(noteId) ?? "")
.then((res) => {
output.value = res.data;
});
}
});
return output;
};