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
033f283a
Commit
033f283a
authored
1 year ago
by
Vink, S.A. (Sjoerd)
Browse files
Options
Downloads
Patches
Plain Diff
feat(visManager): table settings
parent
8c5478f8
No related branches found
No related tags found
2 merge requests
!135
geo intergation
,
!129
Feat/visManager
Pipeline
#131557
passed
1 year 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/tablevis/tablevis.tsx
+25
-0
25 additions, 0 deletions
libs/shared/lib/vis/visualizations/tablevis/tablevis.tsx
with
25 additions
and
0 deletions
libs/shared/lib/vis/visualizations/tablevis/tablevis.tsx
+
25
−
0
View file @
033f283a
...
...
@@ -9,11 +9,13 @@ import { SettingsContainer, SettingsHeader } from '@graphpolaris/shared/lib/vis/
export
type
TableProps
=
{
showBarplot
:
boolean
;
itemsPerPage
:
number
;
displayAttributes
:
string
[];
};
const
configuration
:
TableProps
=
{
itemsPerPage
:
10
,
showBarplot
:
false
,
displayAttributes
:
[],
};
export
const
TableVis
=
({
data
,
schema
,
configuration
}:
VisualizationPropTypes
)
=>
{
...
...
@@ -53,6 +55,14 @@ const TableSettings = ({
graph
:
GraphMetaData
;
updateSettings
:
(
val
:
any
)
=>
void
;
})
=>
{
const
uniqueAttributes
=
new
Set
();
Object
.
keys
(
graph
.
nodes
.
types
).
forEach
((
label
)
=>
{
Object
.
keys
(
graph
.
nodes
.
types
[
label
].
attributes
).
forEach
((
attr
:
string
)
=>
{
uniqueAttributes
.
add
(
attr
);
});
});
const
attributes
:
string
[]
=
Array
.
from
(
uniqueAttributes
)
as
string
[];
return
(
<
SettingsContainer
>
<
Input
...
...
@@ -68,6 +78,21 @@ const TableSettings = ({
value
=
{
configuration
.
showBarplot
}
onChange
=
{
(
val
)
=>
updateSettings
({
showBarplot
:
val
})
}
/>
<
div
>
<
span
className
=
"text-sm"
>
Attributes to display
</
span
>
<
div
className
=
"h-44 overflow-y-auto"
>
<
Input
type
=
"checkbox"
value
=
{
configuration
.
displayAttributes
}
options
=
{
attributes
}
onChange
=
{
(
val
:
string
[]
|
string
)
=>
{
const
updatedVal
=
Array
.
isArray
(
val
)
?
val
:
[
val
];
updateSettings
({
displayAttributes
:
updatedVal
});
}
}
/>
</
div
>
</
div
>
</
SettingsContainer
>
);
};
...
...
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