Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
F
Frontend V2
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Contributor analytics
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
GraphPolaris
Frontend V2
Commits
049f040c
Commit
049f040c
authored
9 months ago
by
Marcos Pieras
Browse files
Options
Downloads
Patches
Plain Diff
feat: add tooltip on text
parent
3c8513dc
No related branches found
No related tags found
1 merge request
!163
feat: redesign tooltips for schema and nodelink
Pipeline
#137445
passed
9 months ago
Stage: tag-release
Stage: get-release-tag
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
libs/shared/lib/components/CardToolTipVis/index.tsx
+31
-19
31 additions, 19 deletions
libs/shared/lib/components/CardToolTipVis/index.tsx
with
31 additions
and
19 deletions
libs/shared/lib/components/CardToolTipVis/index.tsx
+
31
−
19
View file @
049f040c
...
...
@@ -2,6 +2,7 @@ import React from 'react';
import
{
Icon
}
from
'
@graphpolaris/shared/lib/components/icon
'
;
import
{
AbcOutlined
,
Settings
}
from
'
@mui/icons-material
'
;
import
styles
from
'
./cardtooltipvis.module.scss
'
;
import
{
Tooltip
,
TooltipTrigger
,
TooltipContent
,
TooltipProvider
}
from
'
@graphpolaris/shared/lib/components/tooltip
'
;
export
type
CardToolTipVisProps
=
{
type
:
string
;
...
...
@@ -14,28 +15,39 @@ export type CardToolTipVisProps = {
export
const
CardToolTipVis
:
React
.
FC
<
CardToolTipVisProps
>
=
({
type
,
name
,
data
,
colorHeader
})
=>
{
return
(
<
div
className
=
"border-2 border-sec-200 bg-white"
>
<
div
className
=
"border-2 border-sec-200 bg-white
"
>
<
div
className
=
"flex m-0 items-center border-b-2 border-sec-200"
>
<
div
className
=
"h-9 w-4"
style
=
{
{
backgroundColor
:
'
hsl(29 96 60)
'
}
}
></
div
>
<
div
className
=
"h-9 w-4"
style
=
{
{
backgroundColor
:
'
hsl(29 96
%
60
%
)
'
}
}
></
div
>
<
span
className
=
"text-xl ml-2"
>
{
name
}
</
span
>
</
div
>
<
div
className
=
"px-4 py-2"
>
{
data
&&
Object
.
entries
(
data
).
map
(([
k
,
v
])
=>
(
<
div
key
=
{
k
}
className
=
"flex flex-row gap-3 items-center"
>
<
span
className
=
"font-semibold"
>
{
k
}
</
span
>
<
span
className
=
"ml-auto max-w-[10rem] text-right truncate w-[60%]"
>
{
type
===
'
schema
'
?
(
<
Icon
component
=
{
v
===
'
int
'
?
<
Settings
/>
:
<
AbcOutlined
/>
}
/>
)
:
v
!==
undefined
&&
(
typeof
v
!==
'
object
'
||
Array
.
isArray
(
v
))
?
(
<
span
>
{
v
.
toString
()
}
</
span
>
)
:
(
<
div
className
=
{
`ml-auto h-4 w-12
${
styles
[
'
diagonal-lines
'
]}
`
}
></
div
>
)
}
</
span
>
</
div
>
))
}
</
div
>
<
TooltipProvider
delayDuration
=
{
300
}
>
<
div
className
=
"px-4 py-2 "
>
{
data
&&
Object
.
entries
(
data
).
map
(([
k
,
v
])
=>
(
<
Tooltip
key
=
{
k
}
>
<
TooltipTrigger
asChild
>
<
div
className
=
"flex flex-row gap-3 items-center"
>
<
span
className
=
"font-semibold"
>
{
k
}
</
span
>
<
span
className
=
"ml-auto max-w-[10rem] text-right truncate w-[60%]"
>
{
type
===
'
schema
'
?
(
<
Icon
component
=
{
v
===
'
int
'
?
<
Settings
/>
:
<
AbcOutlined
/>
}
/>
)
:
v
!==
undefined
&&
(
typeof
v
!==
'
object
'
||
Array
.
isArray
(
v
))
?
(
<
span
>
{
v
.
toString
()
}
</
span
>
)
:
(
<
div
className
=
{
`ml-auto h-4 w-12
${
styles
[
'
diagonal-lines
'
]}
`
}
></
div
>
)
}
</
span
>
</
div
>
</
TooltipTrigger
>
<
TooltipContent
>
<
div
>
<
span
>
{
v
!==
undefined
&&
(
typeof
v
!==
'
object
'
||
Array
.
isArray
(
v
))
?
v
:
'
noData
'
}
</
span
>
</
div
>
</
TooltipContent
>
</
Tooltip
>
))
}
</
div
>
</
TooltipProvider
>
</
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