New workflow table (#661)
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
import { Skeleton } from "@/components/ui/skeleton";
|
||||
import { useWorkflowLastRunQuery } from "../hooks/useWorkflowLastRunQuery";
|
||||
import { basicTimeFormat } from "@/util/timeFormat";
|
||||
|
||||
type Props = {
|
||||
workflowId: string;
|
||||
};
|
||||
|
||||
function LastRunAtTime({ workflowId }: Props) {
|
||||
const { data, isLoading } = useWorkflowLastRunQuery({ workflowId });
|
||||
|
||||
if (isLoading) {
|
||||
return <Skeleton className="h-full w-full" />;
|
||||
}
|
||||
|
||||
if (!data) {
|
||||
return null;
|
||||
}
|
||||
|
||||
if (data.status === "N/A") {
|
||||
return <span>N/A</span>;
|
||||
}
|
||||
|
||||
return <span>{basicTimeFormat(data.time)}</span>;
|
||||
}
|
||||
|
||||
export { LastRunAtTime };
|
||||
Reference in New Issue
Block a user