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
f9bff181
Commit
f9bff181
authored
8 years ago
by
Tom Robinson
Browse files
Options
Downloads
Patches
Plain Diff
Cleanup text parameter input widget
parent
4195788f
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/dashboard/components/parameters/ParameterWidget.jsx
+25
-7
25 additions, 7 deletions
...abase/dashboard/components/parameters/ParameterWidget.jsx
with
25 additions
and
7 deletions
frontend/src/metabase/dashboard/components/parameters/ParameterWidget.jsx
+
25
−
7
View file @
f9bff181
...
...
@@ -28,7 +28,7 @@ export default class ParameterWidget extends Component {
<
PopoverWithTrigger
ref
=
"valuePopover"
triggerElement
=
{
<
div
className
=
{
cx
(
S
.
parameter
,
{
[
S
.
selected
]:
hasValue
})
}
>
<
div
ref
=
"trigger"
className
=
{
cx
(
S
.
parameter
,
{
[
S
.
selected
]:
hasValue
})
}
>
<
div
className
=
"mr1"
>
{
hasValue
?
value
:
placeholder
}
</
div
>
<
Icon
name
=
{
hasValue
?
"
close
"
:
"
chevrondown
"
}
className
=
"flex-align-right"
onClick
=
{
(
e
)
=>
{
e
.
stopPropagation
();
...
...
@@ -36,13 +36,31 @@ export default class ParameterWidget extends Component {
}
}
/>
</
div
>
}
target
=
{
()
=>
this
.
refs
.
trigger
}
// not sure why this is necessary
>
<
div
>
<
div
><
input
className
=
"input m1"
type
=
"text"
value
=
{
this
.
state
.
value
}
onChange
=
{
(
e
)
=>
this
.
setState
({
value
:
e
.
target
.
value
})
}
/></
div
>
<
div
><
button
className
=
"Button mx1 mb1"
onClick
=
{
()
=>
{
setValue
(
this
.
state
.
value
||
null
);
this
.
refs
.
valuePopover
.
close
();
}
}
>
Apply
</
button
></
div
>
<
div
className
=
"flex flex-column"
>
<
input
className
=
"input m1"
type
=
"text"
value
=
{
this
.
state
.
value
}
onChange
=
{
(
e
)
=>
this
.
setState
({
value
:
e
.
target
.
value
})
}
onKeyUp
=
{
(
e
)
=>
{
if
(
e
.
keyCode
===
13
)
{
setValue
(
this
.
state
.
value
||
null
);
this
.
refs
.
valuePopover
.
close
();
}
}
}
autoFocus
/>
<
button
className
=
"Button mx1 mb1 full-width"
onClick
=
{
()
=>
{
setValue
(
this
.
state
.
value
||
null
);
this
.
refs
.
valuePopover
.
close
();
}
}
>
Apply
</
button
>
</
div
>
</
PopoverWithTrigger
>
);
...
...
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