bbovenzi commented on code in PR #43367: URL: https://github.com/apache/airflow/pull/43367#discussion_r1840680438
########## airflow/ui/src/components/TriggerDag/TriggerDAGForm.tsx: ########## @@ -0,0 +1,205 @@ +/*! + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { + Input, + VStack, + Dialog, + Button, + Box, + Text, + Spacer, + HStack, +} from "@chakra-ui/react"; +import { autocompletion } from "@codemirror/autocomplete"; +import { json } from "@codemirror/lang-json"; +import { githubLight, githubDark } from "@uiw/codemirror-themes-all"; +import CodeMirror, { type Extension, lineNumbers } from "@uiw/react-codemirror"; +import { useEffect, useState } from "react"; +import { useForm, Controller } from "react-hook-form"; + +import { useColorMode } from "src/context/colorMode"; + +import type { DagParams } from "./TriggerDag"; + +type TriggerDAGFormProps = { + dagParams: DagParams; + onClose: () => void; + onTrigger: () => void; + setDagParams: React.Dispatch<React.SetStateAction<DagParams>>; +}; + +const TriggerDAGForm: React.FC<TriggerDAGFormProps> = ({ + dagParams, + onTrigger, +}) => { + const [showDetails, setShowDetails] = useState(false); + const [jsonError, setJsonError] = useState<string | undefined>(undefined); // Track JSON error + const { control, handleSubmit, reset, watch } = useForm({ + defaultValues: { + configJson: JSON.stringify(dagParams.configJson), // Ensure it's a string in the form control + logicalDate: dagParams.logicalDate, + runId: dagParams.runId, + }, + }); + + useEffect(() => { + reset({ + configJson: JSON.stringify(dagParams.configJson), + logicalDate: dagParams.logicalDate, + runId: dagParams.runId, + }); + }, [dagParams, reset]); + + const onSubmit = () => { + onTrigger(); + }; + + const hasFormChanged = () => { + const currentValues = { + configJson: watch("configJson"), + logicalDate: watch("logicalDate"), + runId: watch("runId"), + }; + + return ( + currentValues.configJson !== JSON.stringify(dagParams.configJson) || + currentValues.logicalDate !== dagParams.logicalDate || + currentValues.runId !== dagParams.runId + ); + }; + + const { colorMode } = useColorMode(); + + return ( + <> + <Dialog.CloseTrigger /> + + <VStack align="stretch" gap={2}> + <Button + mb={9} + onClick={() => setShowDetails(!showDetails)} + variant="outline" + width="full" + > + {showDetails ? "Hide Advanced Options" : "Show Advanced Options"} + </Button> + + {showDetails ? ( + <VStack align="stretch" gap={3}> + <Box> + <Text fontSize="md" mb={2}> + Logical date + </Text> + <Controller + control={control} + name="logicalDate" + render={({ field }) => ( + <Input + {...field} + placeholder="yyyy-mm-ddThh:mm" + size="sm" + type="datetime-local" + /> + )} + /> + </Box> + + <Box> + <Text fontSize="md" mb={2}> + Run ID + </Text> + <Controller + control={control} + name="runId" + render={({ field }) => ( + <Input + {...field} + placeholder="Run id, optional - will be generated if not provided" + size="sm" + /> + )} + /> + </Box> + + <Box mb={9}> + <Text fontSize="md" mb={2}> + Configuration JSON + </Text> + <Controller + control={control} + name="configJson" + render={({ field }) => ( + <Box> + <CodeMirror + {...field} + basicSetup + extensions={[json(), autocompletion(), lineNumbers()]} + height="200px" + onChange={(value) => { Review Comment: We can leave it for now and add later. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
