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 38 39 40 41 | 42x 42x 42x 42x 42x 42x 42x 42x 42x 42x 42x 42x 42x 42x | import { colorMode, defaultColorMode } from "./colorMode/colorMode.reducer" import { defaultSortingOption, sortingOption } from "./sortingOption/sortingOption.reducer" import { defaultEdgeMetric, edgeMetric } from "./edgeMetric/edgeMetric.reducer" import { colorRange, defaultColorRange } from "./colorRange/colorRange.reducer" import { defaultMargin, margin } from "./margin/margin.reducer" import { defaultSearchPattern, searchPattern } from "./searchPattern/searchPattern.reducer" import { defaultFocusedNodePath, focusedNodePath } from "./focusedNodePath/focusedNodePath.reducer" import { defaultHeightMetric, heightMetric } from "./heightMetric/heightMetric.reducer" import { defaultDistributionMetric, distributionMetric } from "./distributionMetric/distributionMetric.reducer" import { colorMetric, defaultColorMetric } from "./colorMetric/colorMetric.reducer" import { areaMetric, defaultAreaMetric } from "./areaMetric/areaMetric.reducer" import { combineReducers } from "@ngrx/store" export const dynamicSettings = combineReducers({ colorMode, sortingOption, edgeMetric, colorRange, margin, searchPattern, focusedNodePath, heightMetric, distributionMetric, colorMetric, areaMetric }) export const defaultDynamicSettings = { colorMode: defaultColorMode, sortingOption: defaultSortingOption, edgeMetric: defaultEdgeMetric, colorRange: defaultColorRange, margin: defaultMargin, searchPattern: defaultSearchPattern, focusedNodePath: defaultFocusedNodePath, heightMetric: defaultHeightMetric, distributionMetric: defaultDistributionMetric, colorMetric: defaultColorMetric, areaMetric: defaultAreaMetric } |