forked from apache/airflow
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Migration of all DAG details to existing grid view dag details panel (a…
…pache#31690) * dag details added in grid view * dag details data integrated and all links added * deleted old dag_details and all refs * reverted view.py and bug resolution on object parsing * resolved bug while combining dag and dagDetails * failing tests fixed * Update airflow/www/static/js/dag/details/Dag.tsx Co-authored-by: Brent Bovenzi <[email protected]> * Update airflow/www/static/js/components/ViewScheduleInterval.tsx Co-authored-by: Brent Bovenzi <[email protected]> * code clean and static checks fixed --------- Co-authored-by: Brent Bovenzi <[email protected]>
- Loading branch information
Showing
7 changed files
with
267 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
/*! | ||
* 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 axios, { AxiosResponse } from "axios"; | ||
import { useQuery } from "react-query"; | ||
|
||
import { getMetaValue } from "src/utils"; | ||
import type { API } from "src/types"; | ||
import type { DAG, DAGDetail } from "src/types/api-generated"; | ||
import useDag from "./useDag"; | ||
|
||
const dagDetailsApiUrl = getMetaValue("dag_details_api"); | ||
|
||
const combineResults = ( | ||
dagData: DAG, | ||
dagDetailsData: DAGDetail | ||
): Omit<DAGDetail, "defaultView"> => ({ ...dagData, ...dagDetailsData }); | ||
|
||
const useDagDetails = () => { | ||
const { data: dagData } = useDag(); | ||
const dagDetailsResult = useQuery( | ||
["dagDetailsQuery"], | ||
() => axios.get<AxiosResponse, API.DAGDetail>(dagDetailsApiUrl), | ||
{ | ||
enabled: !!dagData, | ||
} | ||
); | ||
return { | ||
...dagDetailsResult, | ||
data: combineResults( | ||
dagData || {}, | ||
dagDetailsResult.data ? dagDetailsResult.data : {} | ||
), | ||
}; | ||
}; | ||
|
||
export default useDagDetails; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
/*! | ||
* 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 React from "react"; | ||
import { Flex, Text } from "@chakra-ui/react"; | ||
|
||
interface Props { | ||
data: Record<string, number | null>; | ||
} | ||
|
||
const ViewScheduleInterval = ({ data }: Props) => { | ||
const genericTimeDeltaUnits = [ | ||
"days", | ||
"day", | ||
"seconds", | ||
"microseconds", | ||
"years", | ||
"year", | ||
"months", | ||
"month", | ||
"leapdays", | ||
"hours", | ||
"hour", | ||
"minutes", | ||
"minute", | ||
"second", | ||
"microsecond", | ||
]; | ||
|
||
return ( | ||
<Flex flexWrap="wrap"> | ||
{!!data && | ||
genericTimeDeltaUnits.map( | ||
(unit) => | ||
!!data[unit] && ( | ||
<Text mr={1} key={unit}> | ||
{data[unit]} {unit} | ||
</Text> | ||
) | ||
)} | ||
</Flex> | ||
); | ||
}; | ||
|
||
export default ViewScheduleInterval; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters