53 lines
1.7 KiB
TypeScript
53 lines
1.7 KiB
TypeScript
import { useParams } from "react-router-dom";
|
|
import { useTaskQuery } from "../../detail/hooks/useTaskQuery";
|
|
import { CreateNewTaskForm } from "../CreateNewTaskForm";
|
|
|
|
function RetryTask() {
|
|
const { taskId } = useParams();
|
|
const { data: task, isLoading } = useTaskQuery({ id: taskId });
|
|
|
|
if (isLoading) {
|
|
return <div>Fetching task details...</div>;
|
|
}
|
|
|
|
if (!task) {
|
|
return null;
|
|
}
|
|
|
|
return (
|
|
<div className="space-y-4">
|
|
<header>
|
|
<h1 className="text-3xl">Rerun Task</h1>
|
|
</header>
|
|
<CreateNewTaskForm
|
|
initialValues={{
|
|
url: task.request.url,
|
|
navigationGoal: task.request.navigation_goal ?? null,
|
|
navigationPayload:
|
|
typeof task.request.navigation_payload === "string"
|
|
? task.request.navigation_payload
|
|
: JSON.stringify(task.request.navigation_payload, null, 2),
|
|
dataExtractionGoal: task.request.data_extraction_goal ?? null,
|
|
extractedInformationSchema:
|
|
typeof task.request.extracted_information_schema === "string"
|
|
? task.request.extracted_information_schema
|
|
: JSON.stringify(
|
|
task.request.extracted_information_schema,
|
|
null,
|
|
2,
|
|
),
|
|
webhookCallbackUrl: task.request.webhook_callback_url ?? null,
|
|
totpIdentifier: task.request.totp_identifier ?? null,
|
|
totpVerificationUrl: task.request.totp_verification_url ?? null,
|
|
errorCodeMapping: task.request.error_code_mapping
|
|
? JSON.stringify(task.request.error_code_mapping, null, 2)
|
|
: "",
|
|
proxyLocation: task.request.proxy_location ?? null,
|
|
}}
|
|
/>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export { RetryTask };
|