Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
Metabase
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Engineering Digital Service
Metabase
Commits
9883e9c7
Commit
9883e9c7
authored
9 years ago
by
Tom Robinson
Browse files
Options
Downloads
Patches
Plain Diff
Add sections to columnar selector (to support join fields)
parent
c16ef278
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
resources/frontend_client/app/query_builder/columnar_selector.react.js
+26
-10
26 additions, 10 deletions
...ntend_client/app/query_builder/columnar_selector.react.js
with
26 additions
and
10 deletions
resources/frontend_client/app/query_builder/columnar_selector.react.js
+
26
−
10
View file @
9883e9c7
...
...
@@ -9,25 +9,41 @@ export default React.createClass({
render
:
function
()
{
var
columns
=
this
.
props
.
columns
.
map
((
column
,
columnIndex
)
=>
{
var
title
,
item
s
;
var
sectionElement
s
;
if
(
column
)
{
var
lastColumn
=
columnIndex
===
this
.
props
.
columns
.
length
-
1
;
title
=
column
.
title
;
items
=
column
.
items
.
map
((
item
,
rowIndex
)
=>
{
var
itemClasses
=
cx
({
'
ColumnarSelector-row
'
:
true
,
'
ColumnarSelector-row--selected
'
:
item
===
column
.
selectedItem
var
sections
=
column
.
sections
||
[
column
];
sectionElements
=
sections
.
map
((
section
,
sectionIndex
)
=>
{
var
title
=
section
.
title
;
var
items
=
section
.
items
.
map
((
item
,
rowIndex
)
=>
{
var
itemClasses
=
cx
({
'
ColumnarSelector-row
'
:
true
,
'
ColumnarSelector-row--selected
'
:
item
===
column
.
selectedItem
});
var
checkIcon
=
lastColumn
?
<
Icon
name
=
"
check
"
width
=
"
14
"
height
=
"
14
"
/>
:
null
;
return
(
<
li
key
=
{
rowIndex
}
className
=
{
itemClasses
}
onClick
=
{
column
.
itemSelectFn
.
bind
(
null
,
item
)}
>
{
checkIcon
}
{
column
.
itemTitleFn
(
item
)}
<
/li
>
);
});
var
checkIcon
=
lastColumn
?
<
Icon
name
=
"
check
"
width
=
"
14
"
height
=
"
14
"
/>
:
null
;
var
titleElement
;
if
(
title
)
{
titleElement
=
<
div
className
=
"
ColumnarSelector-title
"
>
{
title
}
<
/div
>
}
return
(
<
li
key
=
{
rowIndex
}
className
=
{
itemClasses
}
onClick
=
{
column
.
itemSelectFn
.
bind
(
null
,
item
)}
>
{
checkIcon
}{
column
.
itemTitleFn
(
item
)}
<
/li
>
<
section
key
=
{
sectionIndex
}
>
{
titleElement
}
<
ul
className
=
"
ColumnarSelector-rows
"
>
{
items
}
<
/ul
>
<
/section
>
);
});
}
return
(
<
div
key
=
{
columnIndex
}
className
=
"
ColumnarSelector-column
"
>
<
div
className
=
"
ColumnarSelector-title
"
>
{
title
}
<
/div
>
<
ul
className
=
"
ColumnarSelector-rows
"
>
{
items
}
<
/ul
>
{
sectionElements
}
<
/div
>
);
});
...
...
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