diff --git a/src/atlasComponents/sapiViews/core/parcellation/module.ts b/src/atlasComponents/sapiViews/core/parcellation/module.ts index 1dba15a672f32048508569aa03b9a63f9e96fed0..9fb7e0066b8d71826f96e61a38e88ad5e3157a6c 100644 --- a/src/atlasComponents/sapiViews/core/parcellation/module.ts +++ b/src/atlasComponents/sapiViews/core/parcellation/module.ts @@ -1,9 +1,7 @@ import { CommonModule } from "@angular/common"; -import { APP_INITIALIZER, NgModule } from "@angular/core"; -import { Store } from "@ngrx/store"; +import { NgModule } from "@angular/core"; import { ComponentsModule } from "src/components"; import { AngularMaterialModule } from "src/sharedModules"; -import { atlasAppearance } from "src/state"; import { StrictLocalModule } from "src/strictLocal"; import { DialogModule } from "src/ui/dialogInfo/module"; import { UtilModule } from "src/util"; @@ -14,6 +12,8 @@ import { ParcellationDoiPipe } from "./parcellationDoi.pipe"; import { ParcellationVisibilityService } from "./parcellationVis.service"; import { ParcellationGroupSelectedPipe } from "./parcellationGroupSelected.pipe"; import { IsGroupedParcellation } from "./isGroupedParcellation.pipe"; +import { EffectsModule } from "@ngrx/effects"; +import { ParcellationVisEffect } from "./parcellationVis.effect"; @NgModule({ imports: [ @@ -23,7 +23,10 @@ import { IsGroupedParcellation } from "./isGroupedParcellation.pipe"; UtilModule, SapiViewsUtilModule, DialogModule, - StrictLocalModule + StrictLocalModule, + EffectsModule.forFeature([ + ParcellationVisEffect + ]) ], declarations: [ FilterGroupedParcellationPipe, @@ -41,21 +44,6 @@ import { IsGroupedParcellation } from "./isGroupedParcellation.pipe"; ], providers: [ ParcellationVisibilityService, - { - provide: APP_INITIALIZER, - useFactory: (store: Store, svc: ParcellationVisibilityService) => { - svc.visibility$.subscribe(val => { - store.dispatch( - atlasAppearance.actions.setShowDelineation({ - flag: val - }) - ) - }) - return () => Promise.resolve() - }, - multi: true, - deps: [ Store, ParcellationVisibilityService ] - } ] }) diff --git a/src/atlasComponents/sapiViews/core/parcellation/parcellationVis.effect.ts b/src/atlasComponents/sapiViews/core/parcellation/parcellationVis.effect.ts new file mode 100644 index 0000000000000000000000000000000000000000..bc8d7765ba35cf9ed4fda375bc50bfaf36284ffa --- /dev/null +++ b/src/atlasComponents/sapiViews/core/parcellation/parcellationVis.effect.ts @@ -0,0 +1,14 @@ +import { Injectable } from "@angular/core"; +import { ParcellationVisibilityService } from "./parcellationVis.service"; +import { createEffect } from "@ngrx/effects"; +import { map } from "rxjs/operators"; +import { atlasAppearance } from "src/state"; + +@Injectable() +export class ParcellationVisEffect { + onEmitToggleDelineation = createEffect(() => this.svc.visibility$.pipe( + map(flag => atlasAppearance.actions.setShowDelineation({ flag })) + )) + + constructor(private svc: ParcellationVisibilityService){} +} diff --git a/src/atlasComponents/sapiViews/core/rich/ATPSelector/wrapper/wrapper.component.ts b/src/atlasComponents/sapiViews/core/rich/ATPSelector/wrapper/wrapper.component.ts index 160902ec19a877eb868a8dab7e636f854b84cb2b..9f60eadca5c1111ad2ace1a72818e2ac8520feec 100644 --- a/src/atlasComponents/sapiViews/core/rich/ATPSelector/wrapper/wrapper.component.ts +++ b/src/atlasComponents/sapiViews/core/rich/ATPSelector/wrapper/wrapper.component.ts @@ -4,7 +4,7 @@ import { select, Store } from "@ngrx/store"; import { Observable, of, Subject, Subscription } from "rxjs"; import { filter, map, switchMap, tap, withLatestFrom } from "rxjs/operators"; import { SAPI } from "src/atlasComponents/sapi/sapi.service"; -import { atlasSelection } from "src/state"; +import { atlasAppearance, atlasSelection } from "src/state"; import { fromRootStore } from "src/state/atlasSelection"; import { DialogFallbackCmp } from "src/ui/dialogInfo"; import { DARKTHEME } from "src/util/injectionTokens"; @@ -55,7 +55,9 @@ export class WrapperATPSelector implements OnDestroy{ ) isBusy$ = new Subject<boolean>() - parcellationVisibility$ = this.svc.visibility$ + parcellationVisibility$ = this.store$.pipe( + select(atlasAppearance.selectors.showDelineation) + ) constructor( private dialog: MatDialog, diff --git a/src/viewerModule/threeSurfer/threeSurferGlue/threeSurfer.component.ts b/src/viewerModule/threeSurfer/threeSurferGlue/threeSurfer.component.ts index e4e729b1cfcf6817d00afd57681e2bbc9c817e9c..60ba8899d52403374120fdcd20c5460a3afd1734 100644 --- a/src/viewerModule/threeSurfer/threeSurferGlue/threeSurfer.component.ts +++ b/src/viewerModule/threeSurfer/threeSurferGlue/threeSurfer.component.ts @@ -613,7 +613,7 @@ export class ThreeSurferGlueCmp implements IViewer<'threeSurfer'>, AfterViewInit this.tsRef.applyColorMap(mesh, vertexIndices, { custom: actualApplyMap }) - return + continue } const highlightIdx = new Set<number>()