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
79059a9b
Commit
79059a9b
authored
9 months ago
by
Marcos Pieras
Browse files
Options
Downloads
Patches
Plain Diff
feat: style update
parent
285c73d5
No related branches found
No related tags found
1 merge request
!163
feat: redesign tooltips for schema and nodelink
Pipeline
#137467
passed
9 months ago
Stage: tag-release
Stage: get-release-tag
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
libs/shared/lib/components/CardToolTipVis/cardtooltipvis.stories.tsx
+1
-1
1 addition, 1 deletion
.../lib/components/CardToolTipVis/cardtooltipvis.stories.tsx
libs/shared/lib/components/CardToolTipVis/index.tsx
+8
-8
8 additions, 8 deletions
libs/shared/lib/components/CardToolTipVis/index.tsx
with
9 additions
and
9 deletions
libs/shared/lib/components/CardToolTipVis/cardtooltipvis.stories.tsx
+
1
−
1
View file @
79059a9b
...
...
@@ -72,7 +72,7 @@ export const PopUpVis: Story = {
name
:
'
Charlotte Henry
'
,
born
:
{},
imdbRank
:
21213
,
imdbVotes
:
1213
,
imdbVotes
ddddddddddddddddddddd
:
1213
,
poster
:
'
https://image.tmdb.org/t/p/w440_and_h660_face/kTKiREs37qd8GUlNI4Koiupwy6W.jpg
'
,
tmdbId
:
'
94105
'
,
country
:
undefined
,
...
...
This diff is collapsed.
Click to expand it.
libs/shared/lib/components/CardToolTipVis/index.tsx
+
8
−
8
View file @
79059a9b
...
...
@@ -27,13 +27,13 @@ export const CardToolTipVis: React.FC<CardToolTipVisProps> = ({
})
=>
{
const
itemsToShow
=
Object
.
entries
(
data
).
slice
(
0
,
maxVisibleItems
);
return
(
<
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
:
colorHeader
}
}
></
div
>
<
span
className
=
"text-xl ml-2"
>
{
name
}
</
span
>
<
div
className
=
"border-
1
border-sec-200 bg-white
w-[17rem] shadow-md
"
>
<
div
className
=
"flex m-0 items-center border-b border-sec-200"
>
<
div
className
=
"h-9 w-
2
"
style
=
{
{
backgroundColor
:
colorHeader
}
}
></
div
>
<
span
className
=
"text-xl ml-2
font-semibold
"
>
{
name
}
</
span
>
</
div
>
{
type
===
'
schema
'
&&
typeOfSchema
===
'
relationship
'
&&
(
<
div
className
=
"px-4 py-1 border-b
-2
border-sec-200"
>
<
div
className
=
"px-4 py-1 border-b border-sec-200"
>
<
div
className
=
"flex flex-row gap-3 items-center justify-between"
>
<
span
className
=
"font-semibold"
>
From
</
span
>
<
span
className
=
"ml-auto text-right"
>
{
connectedFrom
}
</
span
>
...
...
@@ -52,11 +52,11 @@ export const CardToolTipVis: React.FC<CardToolTipVisProps> = ({
Object
.
entries
(
data
).
map
(([
k
,
v
])
=>
(
<
Tooltip
key
=
{
k
}
>
<
div
className
=
"flex flex-row gap-3 items-center"
>
<
span
className
=
"font-semibold"
>
{
k
}
</
span
>
<
span
className
=
"font-semibold
truncate w-[40%]
"
>
{
k
}
</
span
>
<
TooltipTrigger
asChild
>
<
span
className
=
"ml-auto
max-w-[10rem]
text-right truncate w-[60%]"
>
<
span
className
=
"ml-auto text-right truncate w-[60%]
min-h-[24px]
"
>
{
type
===
'
schema
'
?
(
<
Icon
component
=
{
v
===
'
int
'
?
<
Settings
/>
:
<
AbcOutlined
/>
}
color
=
"hsl(var(--clr-sec--400))"
/>
<
Icon
component
=
{
v
===
'
int
'
?
<
Settings
/>
:
<
AbcOutlined
/>
}
color
=
"hsl(var(--clr-sec--400))"
size
=
{
24
}
/>
)
:
v
!==
undefined
&&
(
typeof
v
!==
'
object
'
||
Array
.
isArray
(
v
))
?
(
<
span
>
{
v
.
toString
()
}
</
span
>
)
:
(
...
...
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