ruins
Version:
> [!IMPORTANT] > This is in beta. Not everything is ironed out and some modules might misbehave
26 lines (21 loc) • 726 B
text/typescript
import { ref, onMounted } from "vue";
import { fetchy } from "../fetchy";
import type { FilesRes } from "../../../api/server/api/files";
export function useLintIssues(grouped = false) {
const data = ref<FilesRes["data"]>();
const totals = ref();
const hasData = ref(true);
onMounted(async () => {
const getErrors = () => fetchy<FilesRes>("/files?sortBy=error");
const getGroupedErrors = () => fetchy<FilesRes>("/files?grouped=1");
const fetchIssues = grouped ? getGroupedErrors : getErrors;
const res = await fetchIssues();
if (!res.data) {
hasData.value = false;
return;
}
data.value = res?.data;
totals.value = res?.totals;
});
return { data, hasData, totals };
}