File

src/modules/progress-indicator/reducers/index.ts

Description

Defines the part of the state assigned to the StarkProgressIndicatorModule

Index

Properties

Properties

progressIndicator
progressIndicator: Map<string | StarkProgressIndicatorFullConfig>
Type : Map<string | StarkProgressIndicatorFullConfig>

State corresponding to the StarkProgressIndicatorModule

import { ActionReducerMap, createFeatureSelector, createSelector } from "@ngrx/store";
import { StarkProgressIndicatorFullConfig } from "../entities";
import { StarkProgressIndicatorActions } from "../actions";
import { progressIndicatorReducer } from "./progress-indicator.reducer";
import { starkProgressIndicatorStoreKey } from "../constants";

/**
 * Defines the part of the state assigned to the {@link StarkProgressIndicatorModule}
 */
export interface StarkProgressIndicatorState {
	/**
	 * State corresponding to the {@link StarkProgressIndicatorModule}
	 */
	progressIndicator: Map<string, StarkProgressIndicatorFullConfig>;
}

/**
 * Reducers assigned to the each property of the {@link StarkProgressIndicatorModule}'s state
 */
export const starkProgressIndicatorReducers: ActionReducerMap<StarkProgressIndicatorState, StarkProgressIndicatorActions.Types> = {
	/**
	 * Reducer assigned to the state's `progressIndicator` property
	 */
	progressIndicator: progressIndicatorReducer
};

/**
 * NGRX Selector for the {@link StarkProgressIndicatorModule}'s state
 */
export const selectStarkProgressIndicator = createSelector(
	createFeatureSelector<StarkProgressIndicatorState>(starkProgressIndicatorStoreKey),
	(state: StarkProgressIndicatorState) => state.progressIndicator
);

results matching ""

    No results matching ""