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
c2fe4851
Commit
c2fe4851
authored
8 years ago
by
Allen Gilliland
Browse files
Options
Downloads
Plain Diff
Merge pull request #2512 from metabase/labels-tooltip
Labels tooltip
parents
440ce0ac
26055e93
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
frontend/src/components/Triggerable.jsx
+8
-1
8 additions, 1 deletion
frontend/src/components/Triggerable.jsx
frontend/src/questions/components/Item.jsx
+5
-1
5 additions, 1 deletion
frontend/src/questions/components/Item.jsx
with
13 additions
and
2 deletions
frontend/src/components/Triggerable.jsx
+
8
−
1
View file @
c2fe4851
...
...
@@ -3,6 +3,8 @@ import ReactDOM from "react-dom";
import
{
isObscured
}
from
"
metabase/lib/dom
"
;
import
Tooltip
from
"
./Tooltip.jsx
"
;
import
cx
from
"
classnames
"
;
// higher order component that takes a component which takes props "isOpen" and optionally "onClose"
...
...
@@ -87,8 +89,13 @@ export default ComposedComponent => class extends Component {
}
render
()
{
const
{
triggerElement
,
triggerClasses
,
triggerClassesOpen
}
=
this
.
props
;
const
{
triggerClasses
,
triggerClassesOpen
}
=
this
.
props
;
const
{
isOpen
}
=
this
.
state
;
let
{
triggerElement
}
=
this
.
props
;
if
(
triggerElement
&&
triggerElement
.
type
===
Tooltip
)
{
// Disables tooltip when open:
triggerElement
=
React
.
cloneElement
(
triggerElement
,
{
isEnabled
:
triggerElement
.
props
.
isEnabled
&&
!
isOpen
});
}
return
(
<
a
ref
=
"trigger"
onClick
=
{
()
=>
this
.
toggle
()
}
className
=
{
cx
(
"
no-decoration
"
,
triggerClasses
,
isOpen
?
triggerClassesOpen
:
null
)
}
>
{
triggerElement
}
...
...
This diff is collapsed.
Click to expand it.
frontend/src/questions/components/Item.jsx
+
5
−
1
View file @
c2fe4851
...
...
@@ -33,7 +33,11 @@ const Item = ({ id, name, created, by, selected, favorite, archived, icon, label
{
!
archived
?
<
div
className
=
{
S
.
rightIcons
}
>
<
LabelPopover
triggerElement
=
{
<
Icon
className
=
{
S
.
tagIcon
}
name
=
"label"
width
=
{
20
}
height
=
{
20
}
/>
}
triggerElement
=
{
<
Tooltip
tooltip
=
{
"
Labels
"
}
>
<
Icon
className
=
{
S
.
tagIcon
}
name
=
"label"
width
=
{
20
}
height
=
{
20
}
/>
</
Tooltip
>
}
triggerClasses
=
{
S
.
trigger
}
triggerClassesOpen
=
{
S
.
open
}
item
=
{
{
id
,
labels
}
}
...
...
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