@ngrx/store#ActionReducerMap TypeScript Examples
The following examples show how to use
@ngrx/store#ActionReducerMap.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: app.reducers.ts From spurtcommerce with BSD 3-Clause "New" or "Revised" License | 6 votes |
reducers: ActionReducerMap<State> = { auth: fromAuth.reducer, common: fromCommon.reducer, media: fromMedia.reducer, categories: fromCategories.reducer, product: fromProduct.reducer, changepassword: fromChangepassword.reducer, customer: fromCustomers.reducer, orderStatus: fromorder.reducer, country: fromCountry.reducer, zone: fromZone.reducer, role: fromRole.reducer, pages: fromPages.reducer, user: fromUser.reducer, banner: fromBanner.reducer, brand: fromBrand.reducer, emailtemp: fromEmailtemp.reducer, stockstatus: fromStockstatus.reducer, salesorder: fromSalesorder.reducer, editprofile: fromEditprofile.reducer, dashboard: fromDashboard.reducer, generalsetting: fromGeneralSetting.reducer, social: fromSocial.reducer, seosetting: fromseoSetting.reducer, catalogLayout: fromLayoutCatalog.reducer, customerLayout: fromLayoutCustomer.reducer, salesLayout: fromLayoutSales.reducer, personalizeProduct: fromPersonalizeProduct.reducer, personalizeOrder: fromPersonalizeOrder.reducer, layout: fromLayout.reducer, customersGroup: fromCustomersGroup.reducer, }
Example #2
Source File: reducer.interface.ts From spurtcommerce with BSD 3-Clause "New" or "Revised" License | 6 votes |
reducers: ActionReducerMap<State> = { auth: fromAuth.reducer, account: fromAccount.reducer, productControl: fromProductControl.reducer, common: fromCommon.reducer, list: fromList.reducer, wishlist: fromWishlist.reducer, }
Example #3
Source File: root-reducer.ts From svvs with MIT License | 5 votes |
reducers: ActionReducerMap<IRootState> = {
/**
* Router reducer
*/
router: routerReducer,
}
Example #4
Source File: index.ts From router with MIT License | 5 votes |
ROOT_REDUCERS = new InjectionToken<
ActionReducerMap<State, Action>
>('Root reducers token', {
factory: () => ({
[fromLayout.layoutFeatureKey]: fromLayout.reducer,
router: fromRouter.routerReducer,
}),
})
Example #5
Source File: index.ts From dating-client with MIT License | 5 votes |
ROOT_REDUCERS: ActionReducerMap<RootState> = { router: routerReducer, [ fromAuth.authStateKey ]: fromAuth.reducer }
Example #6
Source File: index.ts From angular-dream-stack with MIT License | 5 votes |
reducers: ActionReducerMap<State> = { counter: counterReducer, router: routerReducer, }
Example #7
Source File: index.ts From angular-dream-stack with MIT License | 5 votes |
reducers: ActionReducerMap<State> = { router: routerReducer, }
Example #8
Source File: index.ts From angular-dream-stack with MIT License | 5 votes |
reducers: ActionReducerMap<State> = { scoreboard: scoreboardReducer, router: routerReducer, }
Example #9
Source File: index.ts From ngrx-issue-tracker with MIT License | 5 votes |
settingsReducers: ActionReducerMap<SettingsState> = { notification: notificationReducer, profile: profileReducer, }
Example #10
Source File: index.ts From ngrx-issue-tracker with MIT License | 5 votes |
reducers: ActionReducerMap<RootState> = { router: routerReducer, navigation: navigationReducer, }
Example #11
Source File: core.state.ts From enterprise-ng-2020-workshop with MIT License | 5 votes |
reducers: ActionReducerMap<AppState> = { auth: authReducer, settings: settingsReducer, router: routerReducer }
Example #12
Source File: examples.state.ts From enterprise-ng-2020-workshop with MIT License | 5 votes |
reducers: ActionReducerMap<ExamplesState> = { todos: todosReducer, stocks: stockMarketReducer, books: bookReducer, form: formReducer }
Example #13
Source File: app.reducers.ts From youpez-admin with MIT License | 5 votes |
reducers: ActionReducerMap<State> = { }
Example #14
Source File: index.ts From tzcolors with MIT License | 5 votes |
reducers: ActionReducerMap<State> = { [fromApp.appFeatureKey]: fromApp.reducer, }