mirror of
https://github.com/Dokploy/dokploy.git
synced 2026-07-04 05:25:22 +02:00
feat(deployment): add cancellation functionality for deployments
- Introduced a new endpoint for cancelling deployments, allowing users to cancel both application and compose deployments. - Implemented validation schemas for cancellation requests. - Enhanced the deployment dashboard to provide a cancellation option for stuck deployments. - Updated server-side logic to handle cancellation requests and send appropriate events.
This commit is contained in:
@@ -23,3 +23,30 @@ export const deploy = async (jobData: DeploymentJob) => {
|
||||
throw error;
|
||||
}
|
||||
};
|
||||
|
||||
type CancelDeploymentData =
|
||||
| { applicationId: string; applicationType: "application" }
|
||||
| { composeId: string; applicationType: "compose" };
|
||||
|
||||
export const cancelDeployment = async (cancelData: CancelDeploymentData) => {
|
||||
try {
|
||||
const result = await fetch(`${process.env.SERVER_URL}/cancel-deployment`, {
|
||||
method: "POST",
|
||||
headers: {
|
||||
"Content-Type": "application/json",
|
||||
"X-API-Key": process.env.API_KEY || "NO-DEFINED",
|
||||
},
|
||||
body: JSON.stringify(cancelData),
|
||||
});
|
||||
|
||||
if (!result.ok) {
|
||||
const errorData = await result.json().catch(() => ({}));
|
||||
throw new Error(errorData.message || "Failed to cancel deployment");
|
||||
}
|
||||
|
||||
const data = await result.json();
|
||||
return data;
|
||||
} catch (error) {
|
||||
throw error;
|
||||
}
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user