2024-05-13 22:04:00 -07:00
|
|
|
import { type ClassValue, clsx } from "clsx";
|
2024-04-30 01:56:43 -04:00
|
|
|
// import { toast } from "sonner"
|
2024-05-13 22:04:00 -07:00
|
|
|
import { twMerge } from "tailwind-merge";
|
|
|
|
import { Sandbox, TFile, TFolder } from "./types";
|
2024-05-20 09:49:47 -07:00
|
|
|
import ecsClient from "./ecs";
|
|
|
|
import { DescribeServicesCommand } from "@aws-sdk/client-ecs";
|
2024-05-12 22:06:11 -07:00
|
|
|
|
2024-04-06 19:03:04 -04:00
|
|
|
export function cn(...inputs: ClassValue[]) {
|
2024-05-13 22:04:00 -07:00
|
|
|
return twMerge(clsx(inputs));
|
2024-04-06 19:03:04 -04:00
|
|
|
}
|
2024-04-27 00:28:00 -04:00
|
|
|
|
|
|
|
export function processFileType(file: string) {
|
2024-05-13 22:04:00 -07:00
|
|
|
const ending = file.split(".").pop();
|
2024-04-27 00:28:00 -04:00
|
|
|
|
2024-05-13 22:04:00 -07:00
|
|
|
if (ending === "ts" || ending === "tsx") return "typescript";
|
|
|
|
if (ending === "js" || ending === "jsx") return "javascript";
|
2024-04-27 00:28:00 -04:00
|
|
|
|
2024-05-13 22:04:00 -07:00
|
|
|
if (ending) return ending;
|
|
|
|
return "plaintext";
|
2024-04-27 00:28:00 -04:00
|
|
|
}
|
2024-04-28 20:06:47 -04:00
|
|
|
|
2024-04-29 00:50:25 -04:00
|
|
|
export function validateName(
|
|
|
|
newName: string,
|
|
|
|
oldName: string,
|
|
|
|
type: "file" | "folder"
|
|
|
|
) {
|
2024-05-05 12:55:34 -07:00
|
|
|
if (newName === oldName || newName.length === 0) {
|
2024-05-13 22:04:00 -07:00
|
|
|
return { status: false, message: "" };
|
2024-05-05 12:55:34 -07:00
|
|
|
}
|
2024-04-29 00:50:25 -04:00
|
|
|
if (
|
|
|
|
newName.includes("/") ||
|
|
|
|
newName.includes("\\") ||
|
|
|
|
newName.includes(" ") ||
|
|
|
|
(type === "file" && !newName.includes(".")) ||
|
|
|
|
(type === "folder" && newName.includes("."))
|
|
|
|
) {
|
2024-05-13 22:04:00 -07:00
|
|
|
return { status: false, message: "Invalid file name." };
|
2024-04-29 00:50:25 -04:00
|
|
|
}
|
2024-05-13 22:04:00 -07:00
|
|
|
return { status: true, message: "" };
|
2024-04-29 00:50:25 -04:00
|
|
|
}
|
2024-05-11 18:03:42 -07:00
|
|
|
|
2024-05-13 22:04:00 -07:00
|
|
|
export function addNew(
|
|
|
|
name: string,
|
|
|
|
type: "file" | "folder",
|
|
|
|
setFiles: React.Dispatch<React.SetStateAction<(TFolder | TFile)[]>>,
|
|
|
|
sandboxData: Sandbox
|
|
|
|
) {
|
2024-05-11 18:03:42 -07:00
|
|
|
if (type === "file") {
|
|
|
|
setFiles((prev) => [
|
|
|
|
...prev,
|
|
|
|
{ id: `projects/${sandboxData.id}/${name}`, name, type: "file" },
|
|
|
|
]);
|
|
|
|
} else {
|
|
|
|
console.log("adding folder");
|
2024-05-13 22:04:00 -07:00
|
|
|
setFiles((prev) => [
|
|
|
|
...prev,
|
|
|
|
{
|
|
|
|
id: `projects/${sandboxData.id}/${name}`,
|
|
|
|
name,
|
|
|
|
type: "folder",
|
|
|
|
children: [],
|
|
|
|
},
|
|
|
|
]);
|
2024-05-11 18:03:42 -07:00
|
|
|
}
|
2024-05-12 02:10:31 -07:00
|
|
|
}
|
|
|
|
|
2024-05-17 23:54:34 -07:00
|
|
|
// export async function startServer(
|
|
|
|
// sandboxId: string,
|
|
|
|
// userId: string,
|
|
|
|
// callback: (success: boolean) => void
|
|
|
|
// ) {
|
|
|
|
// try {
|
|
|
|
// const res = await fetch("http://localhost:4001/start", {
|
|
|
|
// method: "POST",
|
|
|
|
// headers: {
|
|
|
|
// "Content-Type": "application/json",
|
|
|
|
// },
|
|
|
|
// body: JSON.stringify({
|
|
|
|
// sandboxId,
|
|
|
|
// userId,
|
|
|
|
// }),
|
|
|
|
// });
|
2024-05-12 02:10:31 -07:00
|
|
|
|
2024-05-17 23:54:34 -07:00
|
|
|
// if (res.status !== 200) {
|
|
|
|
// console.error("Failed to start server", res);
|
|
|
|
// callback(false);
|
|
|
|
// }
|
2024-05-12 22:06:11 -07:00
|
|
|
|
2024-05-17 23:54:34 -07:00
|
|
|
// callback(true);
|
|
|
|
// } catch (error) {
|
|
|
|
// console.error("Failed to start server", error);
|
2024-05-12 02:10:31 -07:00
|
|
|
|
2024-05-17 23:54:34 -07:00
|
|
|
// callback(false);
|
|
|
|
// }
|
|
|
|
// }
|
2024-05-20 09:49:47 -07:00
|
|
|
|
|
|
|
// const checkServiceStatus = (serviceName: string) => {
|
|
|
|
// return new Promise((resolve, reject) => {
|
|
|
|
|
|
|
|
// const command = new DescribeServicesCommand({
|
|
|
|
// cluster: "arn:aws:ecs:us-east-1:767398085538:service/Sandbox/Sandbox",
|
|
|
|
// services: [serviceName]
|
|
|
|
// })
|
|
|
|
|
|
|
|
// const interval = setInterval(async () => {
|
|
|
|
// try {
|
|
|
|
|
|
|
|
// const response = await ecsClient.send(command)
|
|
|
|
|
|
|
|
// if (response.services && response.services.length > 0) {
|
|
|
|
// const service = response.services?.[0];
|
|
|
|
// if (service.runningCount === service.desiredCount && service.deployments.length === 1 && service.deployments[0].rolloutState === 'COMPLETED') {
|
|
|
|
// clearInterval(interval);
|
|
|
|
// resolve(service);
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
|
|
|
|
// } catch (error) {
|
|
|
|
// clearInterval(interval);
|
|
|
|
// reject(error);
|
|
|
|
// }
|
|
|
|
// }, 5000); // Check every 5 seconds
|
|
|
|
// });
|
|
|
|
// };
|