-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
NickAkhmetov/CAT-777 Processed Data section (#3495)
- Loading branch information
1 parent
4e4f286
commit dda7257
Showing
164 changed files
with
3,236 additions
and
1,535 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
- Extend provenance table logic to handle missing entities. | ||
- Fix handling of large search requests. | ||
- Request less data for provenance table tiles. |
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 @@ | ||
- Added processed datasets section to display all visualizations for a given raw dataset. |
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
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
34 changes: 34 additions & 0 deletions
34
context/app/static/js/components/detailPage/AnalysisDetails/AnalysisDetails.tsx
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,34 @@ | ||
import React from 'react'; | ||
|
||
import { DagProvenanceType } from 'js/components/types'; | ||
import AnalysisDetailsList from './AnalysisDetailsList'; | ||
|
||
interface AnalysisDetails { | ||
dagListData: DagProvenanceType[]; | ||
} | ||
|
||
function AnalysisDetails({ dagListData }: AnalysisDetails) { | ||
const ingestPipelines = dagListData.filter((pipeline) => !('name' in pipeline)); | ||
const cwlPipelines = dagListData.filter((pipeline) => 'name' in pipeline); | ||
|
||
return ( | ||
<div> | ||
{ingestPipelines.length > 0 && ( | ||
<AnalysisDetailsList | ||
pipelines={ingestPipelines} | ||
pipelineType="Ingest" | ||
tooltip="Supplementary links for the data ingestion pipelines for this dataset" | ||
/> | ||
)} | ||
{cwlPipelines.length > 0 && ( | ||
<AnalysisDetailsList | ||
pipelines={cwlPipelines} | ||
pipelineType="CWL" | ||
tooltip="Supplementary links for the CWL (Common Workflow Language) pipelines for this dataset" | ||
/> | ||
)} | ||
</div> | ||
); | ||
} | ||
|
||
export default AnalysisDetails; |
2 changes: 1 addition & 1 deletion
2
...tailsLink/ProvAnalysisDetailsLink.spec.js → ...lysisDetails/AnalysisDetailsLink.spec.tsx
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
Oops, something went wrong.