import { useQuery } from '@tanstack/react-query' import { components } from 'api-types' import { lintKeys } from './keys' import { get, handleError } from '@/data/fetchers' import { useSelectedProjectQuery } from '@/hooks/misc/useSelectedProject' import { PROJECT_STATUS } from '@/lib/constants' import type { ResponseError, UseCustomQueryOptions } from '@/types' type ProjectLintsVariables = { projectRef?: string } type ProjectLintResponse = components['schemas']['GetProjectLintsResponse'] export type Lint = ProjectLintResponse[0] export type LINT_TYPES = ProjectLintResponse[0]['name'] export async function getProjectLints({ projectRef }: ProjectLintsVariables, signal?: AbortSignal) { if (!projectRef) throw new Error('Project ref is required') const { data, error } = await get(`/platform/projects/{ref}/run-lints`, { params: { path: { ref: projectRef } }, signal, }) if (error) handleError(error) return data } export type ProjectLintsData = Awaited> export type ProjectLintsError = ResponseError export const useProjectLintsQuery = ( { projectRef }: ProjectLintsVariables, { enabled = true, ...options }: UseCustomQueryOptions = {} ) => { const { data: project } = useSelectedProjectQuery() const isActive = project?.status === PROJECT_STATUS.ACTIVE_HEALTHY return useQuery({ queryKey: lintKeys.lint(projectRef), queryFn: ({ signal }) => getProjectLints({ projectRef }, signal), enabled: enabled && typeof projectRef !== 'undefined' && isActive, ...options, }) }