feat(deployment): add 'cancelled' status to deployment and implement cancellation logic

- Updated the deployment status enum to include 'cancelled'.
- Added a new utility function to handle the cancellation of deployments, setting their status to 'error'.
- Enhanced the status tooltip component to display 'Cancelled' when the status is 'cancelled'.
- Created a new SQL migration to add the 'cancelled' value to the deploymentStatus type.
This commit is contained in:
Mauricio Siu
2025-09-27 02:15:43 -06:00
parent 569d43ae7f
commit ac6bdf60ec
8 changed files with 6608 additions and 1 deletions

View File

@@ -7,7 +7,7 @@ import {
import { cn } from "@/lib/utils";
interface Props {
status: "running" | "error" | "done" | "idle" | undefined | null;
status: "running" | "error" | "done" | "idle" | "cancelled" | undefined | null;
className?: string;
}
@@ -34,6 +34,11 @@ export const StatusTooltip = ({ status, className }: Props) => {
className={cn("size-3.5 rounded-full bg-green-500", className)}
/>
)}
{status === "cancelled" && (
<div
className={cn("size-3.5 rounded-full bg-muted-foreground", className)}
/>
)}
{status === "running" && (
<div
className={cn("size-3.5 rounded-full bg-yellow-500", className)}
@@ -46,6 +51,7 @@ export const StatusTooltip = ({ status, className }: Props) => {
{status === "error" && "Error"}
{status === "done" && "Done"}
{status === "running" && "Running"}
{status === "cancelled" && "Cancelled"}
</span>
</TooltipContent>
</Tooltip>