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
a944ed83
Commit
a944ed83
authored
7 years ago
by
Jonathan Eatherly
Browse files
Options
Downloads
Patches
Plain Diff
change CategoryWidget to use multi-select SelectPicker component
parent
bd8e643c
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
frontend/src/metabase/parameters/components/widgets/CategoryWidget.jsx
+40
-38
40 additions, 38 deletions
...metabase/parameters/components/widgets/CategoryWidget.jsx
with
40 additions
and
38 deletions
frontend/src/metabase/parameters/components/widgets/CategoryWidget.jsx
+
40
−
38
View file @
a944ed83
...
...
@@ -3,12 +3,13 @@
import
React
,
{
Component
}
from
"
react
"
;
import
PropTypes
from
"
prop-types
"
;
import
{
t
}
from
'
c-3po
'
;
import
{
createMultiwordSearchRegex
}
from
"
metabase/lib/string
"
;
import
{
t
}
from
'
c-3po
'
;
import
{
getHumanReadableValue
}
from
"
metabase/lib/query/field
"
;
import
ListSearchField
from
"
metabase/components/ListSearchField
.jsx
"
;
import
SelectPicker
from
"
../../../query_builder/components/filters/pickers/SelectPicker
.jsx
"
;
import
cx
from
"
classnames
"
;
...
...
@@ -21,6 +22,7 @@ type Props = {
type
State
=
{
searchText
:
string
,
searchRegex
:
?
RegExp
,
selectedValues
:
Array
<
string
>
}
export
default
class
CategoryWidget
extends
Component
{
...
...
@@ -32,7 +34,8 @@ export default class CategoryWidget extends Component {
this
.
state
=
{
searchText
:
""
,
searchRegex
:
null
searchRegex
:
null
,
selectedValues
:
Array
.
isArray
(
props
.
value
)
?
props
.
value
:
[
props
.
value
]
};
}
...
...
@@ -60,47 +63,46 @@ export default class CategoryWidget extends Component {
return
getHumanReadableValue
(
value
,
fieldValues
);
}
render
()
{
let
{
value
,
values
,
setValue
,
onClose
}
=
this
.
props
;
getOptions
()
{
return
this
.
props
.
values
.
slice
().
map
((
value
)
=>
{
return
{
key
:
value
[
0
],
name
:
value
[
0
]
}
});
}
let
filteredValues
=
[];
let
regex
=
this
.
state
.
searchRegex
;
commitValues
=
(
values
:
Array
<
string
>
)
=>
{
this
.
props
.
setValue
(
values
);
this
.
props
.
onClose
();
}
if
(
regex
)
{
for
(
const
value
of
values
)
{
if
(
regex
.
test
(
value
[
0
])
||
regex
.
test
(
value
[
1
]))
{
filteredValues
.
push
(
value
);
}
}
}
else
{
filteredValues
=
values
.
slice
();
}
onSelectedValuesChange
=
(
values
:
Array
<
string
>
)
=>
{
this
.
setState
({
selectedValues
:
values
});
}
render
()
{
const
options
=
this
.
getOptions
();
const
selectedValues
=
this
.
state
.
selectedValues
;
return
(
<
div
style
=
{
{
maxWidth
:
200
}
}
>
{
values
.
length
>
10
&&
<
div
className
=
"p1"
>
<
ListSearchField
onChange
=
{
this
.
updateSearchText
}
searchText
=
{
this
.
state
.
searchText
}
placeholder
=
{
t
`Find a value`
}
autoFocus
=
{
true
}
/>
</
div
>
}
<
ul
className
=
"scroll-y scroll-show"
style
=
{
{
maxHeight
:
300
}
}
>
{
filteredValues
.
map
(([
rawValue
,
humanReadableValue
])
=>
<
li
key
=
{
rawValue
}
className
=
{
cx
(
"
px2 py1 bg-brand-hover text-white-hover cursor-pointer
"
,
{
"
text-white bg-brand
"
:
rawValue
===
value
})
}
onClick
=
{
()
=>
{
setValue
(
rawValue
);
onClose
();
}
}
>
{
humanReadableValue
||
String
(
rawValue
)
}
</
li
>
)
}
</
ul
>
<
SelectPicker
options
=
{
options
}
values
=
{
(
selectedValues
:
Array
<
string
>
)
}
onValuesChange
=
{
this
.
onSelectedValuesChange
}
placeholder
=
"Find a value"
multi
=
{
true
}
/>
<
div
className
=
"p1"
>
<
button
data-ui-tag
=
"add-category-filter"
className
=
{
cx
(
"
Button Button--purple full
"
,
{
"
disabled
"
:
selectedValues
.
length
===
0
})
}
onClick
=
{
()
=>
this
.
commitValues
(
this
.
state
.
selectedValues
)
}
>
{
t
`Done`
}
</
button
>
</
div
>
</
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