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
Merge requests
!37
build(css): new design with tailwind and daisyui
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
build(css): new design with tailwind and daisyui
feat/new_design
into
main
Overview
6
Commits
16
Pipelines
2
Changes
201
Merged
Leonardo Christino
requested to merge
feat/new_design
into
main
1 year ago
Overview
6
Commits
16
Pipelines
2
Changes
201
Expand
0
0
Merge request reports
Compare
main
version 2
11488229
1 year ago
version 1
7a6007d3
1 year ago
main (base)
and
latest version
latest version
12647d53
16 commits,
1 year ago
version 2
11488229
15 commits,
1 year ago
version 1
7a6007d3
15 commits,
1 year ago
201 files
+
7455
−
8426
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
201
Search (e.g. *.vue) (Ctrl+P)
apps/web/src/app/panels/Visualization.tsx
+
5
−
14
Options
import
React
from
'
react
'
;
import
{
RawJSONVis
,
NodeLinkVis
,
PaohVis
,
SemanticSubstrates
}
from
'
@graphpolaris/shared/lib/vis
'
;
import
Panel
from
'
../../components/panels/panel
'
;
import
{
assignNewGraphQueryResult
,
useAppDispatch
}
from
'
@graphpolaris/shared/lib/data-access
'
;
export
const
VisualizationPanel
=
()
=>
{
const
dispatch
=
useAppDispatch
();
return
(
<
div
>
<
div
className
=
"h-full w-full overflow-y-auto"
>
<
h1
>
Visualization Panel
</
h1
>
{
/* <div>
<button
onClick={() =>
@@ -36,17 +35,9 @@ export const VisualizationPanel = () => {
{
/* width: '83%',
height: '95vh', */
}
<
div
className
=
"h-[60vh] overflow-y-auto"
>
{
/* <div className="h-full overflow-y-auto"> */
}
{
/* <RawJSONVis /> */
}
{
/* <PaohVis
rowHeight={30}
hyperedgeColumnWidth={30}
gapBetweenRanges={3}
/> */
}
{
/* <RawJSONVis /> */
}
<
div
className
=
"w-full h-[calc(100%-2rem)]"
>
{
/* <RawJSONVis /> */
}
{
/* <PaohVis rowHeight={30} hyperedgeColumnWidth={30} gapBetweenRanges={3} /> */
}
<
NodeLinkVis
/>
{
/* <SemanticSubstrates /> */
}
</
div
>
Loading