New workflow table (#661)

This commit is contained in:
Kerem Yilmaz
2024-07-30 11:17:29 -07:00
committed by GitHub
parent 3c81e4269a
commit dadb3724b7
7 changed files with 257 additions and 14 deletions

View File

@@ -0,0 +1,27 @@
import { BadgeLoading } from "@/components/BadgeLoading";
import { StatusBadge } from "@/components/StatusBadge";
import { useWorkflowLastRunQuery } from "../hooks/useWorkflowLastRunQuery";
type Props = {
workflowId: string;
};
function LastRunStatus({ workflowId }: Props) {
const { data, isLoading } = useWorkflowLastRunQuery({ workflowId });
if (isLoading) {
return <BadgeLoading />;
}
if (!data) {
return null;
}
if (data.status === "N/A") {
return <span>N/A</span>;
}
return <StatusBadge status={data.status} />;
}
export { LastRunStatus };