Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 3x 3x 3x 3x 1x 1x 3x 3x 1x 1x | import { Injectable } from "@angular/core" import { Store } from "@ngrx/store" import { Actions, createEffect, ofType } from "@ngrx/effects" import { map, skip, switchMap, take, withLatestFrom } from "rxjs" import { selectedColorMetricDataSelector } from "../../../selectors/accumulatedData/metricData/selectedColorMetricData.selector" import { calculateInitialColorRange } from "./calculateInitialColorRange" import { setColorRange } from "./colorRange.actions" import { fileActions } from "../../files/files.actions" import { CcState } from "../../../../codeCharta.model" import { setColorMetric } from "../colorMetric/colorMetric.actions" import { visibleFileStatesSelector } from "../../../selectors/visibleFileStates/visibleFileStates.selector" @Injectable() export class ResetColorRangeEffect { constructor( private actions$: Actions, private store: Store<CcState> ) {} resetColorRange$ = createEffect(() => this.actions$.pipe( ofType(...fileActions), withLatestFrom(this.store.select(visibleFileStatesSelector)), switchMap(() => this.store.select(selectedColorMetricDataSelector).pipe(skip(1), take(1))), map(selectedColorMetricData => setColorRange({ value: calculateInitialColorRange(selectedColorMetricData) })) ) ) resetColorRangeOnColorMetricChange$ = createEffect(() => this.actions$.pipe( ofType(setColorMetric), switchMap(() => this.store.select(selectedColorMetricDataSelector).pipe(take(1))), map(selectedColorMetricData => setColorRange({ value: calculateInitialColorRange(selectedColorMetricData) })) ) ) } |