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
50224a15
Commit
50224a15
authored
4 months ago
by
Marcos Pieras
Browse files
Options
Downloads
Patches
Plain Diff
feat: rebased
parent
c4c64166
No related branches found
No related tags found
1 merge request
!332
feat(vis0D): avoid crash with new query
Pipeline
#141731
passed
4 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/vis/visualizations/vis0D/Vis0D.tsx
+13
-8
13 additions, 8 deletions
libs/shared/lib/vis/visualizations/vis0D/Vis0D.tsx
with
13 additions
and
8 deletions
libs/shared/lib/vis/visualizations/vis0D/Vis0D.tsx
+
13
−
8
View file @
50224a15
...
...
@@ -68,15 +68,16 @@ const Vis0D = forwardRef<Vis0DVisHandle, VisualizationPropTypes<Vis0DProps>>(({
useEffect
(()
=>
{
if
(
settings
.
selectedEntity
!=
''
&&
graphMetadata
.
nodes
.
types
&&
settings
.
selectedAttribute
!=
''
&&
settings
.
selectedStat
!=
''
)
{
const
nodesLabels
=
graphMetadata
.
nodes
.
labels
;
const
edgesLabels
=
graphMetadata
.
edges
.
labels
;
let
attributes
=
[];
let
attributes
:
string
[]
=
[];
if
(
nodesLabels
.
includes
(
settings
.
selectedEntity
))
{
attributes
=
Object
.
keys
(
graphMetadata
.
nodes
.
types
[
settings
.
selectedEntity
].
attributes
);
}
else
{
}
else
if
(
edgesLabels
.
includes
(
settings
.
selectedEntity
))
{
attributes
=
Object
.
keys
(
graphMetadata
.
edges
.
types
[
settings
.
selectedEntity
].
attributes
);
}
if
(
attributes
.
includes
(
settings
.
selectedAttribute
))
{
if
(
attributes
.
length
>
0
&&
attributes
.
includes
(
settings
.
selectedAttribute
))
{
let
statsAvailable
=
[];
if
(
nodesLabels
.
includes
(
settings
.
selectedEntity
))
{
...
...
@@ -126,7 +127,6 @@ const Vis0D = forwardRef<Vis0DVisHandle, VisualizationPropTypes<Vis0DProps>>(({
const
Vis0DSettings
=
({
settings
,
graphMetadata
,
updateSettings
}:
VisualizationSettingsPropTypes
<
Vis0DProps
>
)
=>
{
const
[
attributeOptions
,
setAttributeOptions
]
=
useState
<
string
[]
>
([]);
const
[
statsOptions
,
setStatsOptions
]
=
useState
<
string
[]
>
([]);
useEffect
(()
=>
{
if
(
settings
.
selectedEntity
===
''
&&
graphMetadata
&&
graphMetadata
.
nodes
&&
graphMetadata
.
nodes
.
labels
.
length
>
0
)
{
const
firstEntity
=
graphMetadata
.
nodes
.
labels
[
0
];
...
...
@@ -156,18 +156,23 @@ const Vis0DSettings = ({ settings, graphMetadata, updateSettings }: Visualizatio
graphMetadata
.
nodes
.
labels
.
length
>
0
)
{
const
nodesLabels
=
graphMetadata
.
nodes
.
labels
;
const
edgesLabels
=
graphMetadata
.
edges
.
labels
;
// attribute management
let
attributesFirstEntity
=
[];
let
attributesFirstEntity
:
string
[]
=
[];
if
(
nodesLabels
.
includes
(
settings
.
selectedEntity
))
{
attributesFirstEntity
=
Object
.
keys
(
graphMetadata
.
nodes
.
types
[
settings
.
selectedEntity
].
attributes
);
}
else
{
}
else
if
(
edgesLabels
.
includes
(
settings
.
selectedEntity
))
{
attributesFirstEntity
=
Object
.
keys
(
graphMetadata
.
edges
.
types
[
settings
.
selectedEntity
].
attributes
);
}
setAttributeOptions
(
attributesFirstEntity
);
let
selectedAttribute
=
''
;
if
(
settings
.
selectedAttribute
===
''
||
!
attributesFirstEntity
.
includes
(
settings
.
selectedAttribute
))
{
if
(
settings
.
selectedAttribute
===
''
||
!
attributesFirstEntity
.
includes
(
settings
.
selectedAttribute
)
||
attributesFirstEntity
.
length
===
0
)
{
selectedAttribute
=
attributesFirstEntity
[
0
];
updateSettings
({
selectedAttribute
:
selectedAttribute
});
}
else
{
...
...
@@ -182,7 +187,7 @@ const Vis0DSettings = ({ settings, graphMetadata, updateSettings }: Visualizatio
string
,
number
>
;
}
else
{
}
else
if
(
edgesLabels
.
includes
(
settings
.
selectedEntity
))
{
attributeSelectedStatistics
=
graphMetadata
.
edges
.
types
[
settings
.
selectedEntity
].
attributes
[
selectedAttribute
].
statistics
as
Record
<
string
,
number
...
...
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