-
Notifications
You must be signed in to change notification settings - Fork 14.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add dataset nodes to dag graph * Clean up dataset nodes
- Loading branch information
Showing
14 changed files
with
490 additions
and
251 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
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,85 @@ | ||
/*! | ||
* 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 { DatasetListItem } from "src/types"; | ||
import type { unitOfTime } from "moment"; | ||
|
||
export interface DatasetsData { | ||
datasets: DatasetListItem[]; | ||
totalEntries: number; | ||
} | ||
|
||
export interface DateOption { | ||
count: number; | ||
unit: unitOfTime.DurationConstructor; | ||
} | ||
|
||
interface Props { | ||
limit?: number; | ||
offset?: number; | ||
order?: string; | ||
uri?: string; | ||
updatedAfter?: DateOption; | ||
} | ||
|
||
export default function useDatasetsSummary({ | ||
limit, | ||
offset, | ||
order, | ||
uri, | ||
updatedAfter, | ||
}: Props) { | ||
const query = useQuery( | ||
["datasets_summary", limit, offset, order, uri, updatedAfter], | ||
() => { | ||
const datasetsUrl = getMetaValue("datasets_summary"); | ||
const orderParam = order ? { order_by: order } : {}; | ||
const uriParam = uri ? { uri_pattern: uri } : {}; | ||
const updatedAfterParam = | ||
updatedAfter && updatedAfter.count && updatedAfter.unit | ||
? { | ||
// @ts-ignore | ||
updated_after: moment() | ||
.subtract(updatedAfter.count, updatedAfter.unit) | ||
.toISOString(), | ||
} | ||
: {}; | ||
return axios.get<AxiosResponse, DatasetsData>(datasetsUrl, { | ||
params: { | ||
offset, | ||
limit, | ||
...orderParam, | ||
...uriParam, | ||
...updatedAfterParam, | ||
}, | ||
}); | ||
}, | ||
{ | ||
keepPreviousData: true, | ||
} | ||
); | ||
return { | ||
...query, | ||
data: query.data ?? { datasets: [], totalEntries: 0 }, | ||
}; | ||
} |
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
Oops, something went wrong.