Skip to content
Snippets Groups Projects
Commit 6b4f3a6b authored by Xiao Gui's avatar Xiao Gui
Browse files

bugfix: persist layout changes on change of template

parent 0c96791a
No related branches found
No related tags found
No related merge requests found
......@@ -142,6 +142,7 @@ export class NehubaContainer implements OnInit, OnDestroy{
private viewPanels: [HTMLElement, HTMLElement, HTMLElement, HTMLElement] = [null, null, null, null]
public panelMode$: Observable<string>
private redrawLayout$: Observable<[string, string]>
constructor(
private constantService : AtlasViewerConstantsServices,
......@@ -162,6 +163,25 @@ export class NehubaContainer implements OnInit, OnDestroy{
filter(() => isDefined(this.nehubaViewer) && isDefined(this.nehubaViewer.nehubaViewer))
)
this.redrawLayout$ = this.store.pipe(
select('ngViewerState'),
select('nehubaReady'),
distinctUntilChanged(),
filter(v => !!v),
switchMapTo(combineLatest(
this.store.pipe(
select('ngViewerState'),
select('panelMode'),
distinctUntilChanged()
),
this.store.pipe(
select('ngViewerState'),
select('panelOrder'),
distinctUntilChanged()
)
))
)
this.nehubaViewerFactory = this.csf.resolveComponentFactory(NehubaViewerUnit)
this.newViewer$ = this.store.pipe(
......@@ -431,19 +451,8 @@ export class NehubaContainer implements OnInit, OnDestroy{
)
this.subscriptions.push(
combineLatest(
this.store.pipe(
select('ngViewerState'),
select('panelMode'),
distinctUntilChanged()
),
this.store.pipe(
select('ngViewerState'),
select('panelOrder'),
distinctUntilChanged()
)
).subscribe(([mode, panelOrder]) => {
const viewPanels = panelOrder.split('').map(v => Number(v)).map(idx => this.viewPanels[idx])
this.redrawLayout$.subscribe(([mode, panelOrder]) => {
const viewPanels = panelOrder.split('').map(v => Number(v)).map(idx => this.viewPanels[idx]) as [HTMLElement, HTMLElement, HTMLElement, HTMLElement]
/**
* TODO be smarter with event stream
*/
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment