Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
E
ESAP GUI
Manage
Activity
Members
Labels
Plan
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ASTRON SDC
ESCAPE WP5
ESAP GUI
Commits
4ada8af0
Commit
4ada8af0
authored
3 years ago
by
Nico Vermaas
Browse files
Options
Downloads
Patches
Plain Diff
add results per dataset field
parent
3c4d72ae
No related branches found
Branches containing commit
Tags
LOFAR-Release-3_2_13
Tags containing commit
1 merge request
!79
64 multiple archive query
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/components/query/QueryMultipleArchives.js
+2
-0
2 additions, 0 deletions
src/components/query/QueryMultipleArchives.js
src/components/services/query_results/AvailableDatasets.js
+8
-6
8 additions, 6 deletions
src/components/services/query_results/AvailableDatasets.js
with
10 additions
and
6 deletions
src/components/query/QueryMultipleArchives.js
+
2
−
0
View file @
4ada8af0
...
@@ -194,6 +194,7 @@ export default function QueryMultipleArchives() {
...
@@ -194,6 +194,7 @@ export default function QueryMultipleArchives() {
return
(
return
(
<
Container
fluid
>
<
Container
fluid
>
<
AvailableDatasets
results
=
{
availableDatasets
}
/
>
<
AvailableDatasets
results
=
{
availableDatasets
}
/
>
<
Form
<
Form
schema
=
{
config
.
query_schema
}
schema
=
{
config
.
query_schema
}
...
@@ -207,6 +208,7 @@ export default function QueryMultipleArchives() {
...
@@ -207,6 +208,7 @@ export default function QueryMultipleArchives() {
<
/Form
>
<
/Form
>
{
renderQueryResults
}
{
renderQueryResults
}
<
/Container
>
<
/Container
>
);
);
...
...
This diff is collapsed.
Click to expand it.
src/components/services/query_results/AvailableDatasets.js
+
8
−
6
View file @
4ada8af0
...
@@ -14,18 +14,20 @@ export default function AvailableDatasets(props) {
...
@@ -14,18 +14,20 @@ export default function AvailableDatasets(props) {
<
Container
fluid
>
<
Container
fluid
>
<
Card
>
<
Card
>
<
Table
>
<
Table
>
<
thead
>
<
th
>
Select
Datasets
to
query
<
/th
>
<
/thead
>
<
tbody
>
<
tbody
>
<
tr
>
<
tr
>
{
props
.
results
.
map
((
result
,
index
)
=>
(
{
props
.
results
.
map
((
result
,
index
)
=>
(
<
td
key
=
{
result
.
dataset
}
>
<
td
key
=
{
result
.
dataset
}
>
<
td
>
<
Card
>
<
SelectDatasetCheckBox
id
=
{
result
.
dataset
}
item
=
{
result
}
/
>
<
td
><
SelectDatasetCheckBox
id
=
{
result
.
dataset
}
item
=
{
result
}
/
>
{
result
.
dataset
}
({
result
.
archive
})
<
/td
>
<
/td
>
<
td
>
{
result
.
dataset
}
({
result
.
archive
})
<
/t
d
>
<
/Car
d
>
<
/td
>
<
/td
>
))}
))}
<
/tr
>
<
/tr
>
<
/tbody
>
<
/tbody
>
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment