2020-04-06 22:39:49 +02:00
|
|
|
---
|
|
|
|
|
name: Viewer
|
|
|
|
|
menu: Views
|
|
|
|
|
route: views/viewer
|
|
|
|
|
---
|
|
|
|
|
|
|
|
|
|
import { Playground, Props } from 'docz';
|
2020-04-07 21:47:20 +02:00
|
|
|
import { NavBar, SidePanel, Svg } from '@ohif/ui';
|
2020-04-06 22:39:49 +02:00
|
|
|
|
|
|
|
|
# Viewer
|
|
|
|
|
|
|
|
|
|
<Playground>
|
2020-04-07 21:47:20 +02:00
|
|
|
<div>
|
|
|
|
|
<NavBar className="justify-start">
|
|
|
|
|
<div className="m-3">
|
|
|
|
|
<Svg name="logo-ohif" />
|
|
|
|
|
</div>
|
|
|
|
|
</NavBar>
|
|
|
|
|
<div
|
|
|
|
|
className="flex flex-row flex-no-wrap flex-1 items-stretch overflow-hidden w-full"
|
|
|
|
|
style={{ height: 'calc(100vh - 57px' }}
|
|
|
|
|
>
|
|
|
|
|
<SidePanel
|
|
|
|
|
side="left"
|
2020-04-08 18:00:07 +02:00
|
|
|
iconName="group-layers"
|
2020-04-07 21:47:20 +02:00
|
|
|
iconLabel="Studies"
|
|
|
|
|
componentLabel="Studies"
|
|
|
|
|
defaultIsOpen={false}
|
|
|
|
|
>
|
2020-04-07 22:16:11 +02:00
|
|
|
<div className="flex justify-center text-white p-2">
|
|
|
|
|
panel placeholder
|
|
|
|
|
</div>
|
2020-04-07 21:47:20 +02:00
|
|
|
</SidePanel>
|
2020-04-07 22:16:11 +02:00
|
|
|
<div className="flex flex-1 h-100 overflow-hidden w-100 bg-primary-main items-center justify-center text-white">
|
2020-04-07 21:47:20 +02:00
|
|
|
CONTENT
|
|
|
|
|
</div>
|
|
|
|
|
<SidePanel
|
|
|
|
|
side="right"
|
2020-04-07 22:04:46 +02:00
|
|
|
iconName="list-bullets"
|
2020-04-07 21:47:20 +02:00
|
|
|
iconLabel="Measure"
|
|
|
|
|
componentLabel="Measurements"
|
2020-04-07 22:16:11 +02:00
|
|
|
defaultIsOpen={false}
|
2020-04-07 21:47:20 +02:00
|
|
|
>
|
2020-04-07 22:16:11 +02:00
|
|
|
<div className="flex justify-center text-white p-2">
|
|
|
|
|
panel placeholder
|
|
|
|
|
</div>
|
2020-04-07 21:47:20 +02:00
|
|
|
</SidePanel>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2020-04-06 22:39:49 +02:00
|
|
|
</Playground>
|