frontend/composables/Note.ts

22 lines
482 B
TypeScript
Raw Normal View History

import type { LysandClient } from "@lysand-org/client";
import type { Status } from "~/types/mastodon/status";
export const useNote = (
client: MaybeRef<LysandClient | null>,
noteId: string,
) => {
if (!ref(client).value) {
return ref(null as Status | null);
}
const output = ref(null as Status | null);
ref(client)
.value?.getStatus(noteId)
.then((res) => {
output.value = res.data;
});
return output;
};