@ngrx/store#createFeatureSelector TypeScript Examples

The following examples show how to use @ngrx/store#createFeatureSelector. 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: core.state.ts    From enterprise-ng-2020-workshop with MIT License 5 votes vote down vote up
selectSettingsState = createFeatureSelector<
  AppState,
  SettingsState
>('settings')
Example #2
Source File: index.ts    From ngrx-issue-tracker with MIT License 5 votes vote down vote up
selectFeature = createFeatureSelector<
  SettingsRootState,
  SettingsState
>(settingsFeatureKey)
Example #3
Source File: index.ts    From digital-bank-ui with Mozilla Public License 2.0 5 votes vote down vote up
getCustomerDepositState = createFeatureSelector<State, CustomerDepositState>(customerDepositFeatureKey)
Example #4
Source File: index.ts    From digital-bank-ui with Mozilla Public License 2.0 5 votes vote down vote up
selectCustomerState = createFeatureSelector<State, CustomerState>(customerFeatureKey)
Example #5
Source File: index.ts    From digital-bank-ui with Mozilla Public License 2.0 5 votes vote down vote up
selectDepositProductsState = createFeatureSelector<State, DepositProductsState>(depositProductsFeatureKey)
Example #6
Source File: index.ts    From digital-bank-ui with Mozilla Public License 2.0 5 votes vote down vote up
selectOfficeState = createFeatureSelector<State, OfficeState>(officeFeatureKey)
Example #7
Source File: index.ts    From digital-bank-ui with Mozilla Public License 2.0 5 votes vote down vote up
selectRoleState = createFeatureSelector<State, RoleState>(roleFeatureKey)
Example #8
Source File: index.ts    From digital-bank-ui with Mozilla Public License 2.0 5 votes vote down vote up
selectUserState = createFeatureSelector<State, UserState>(userFeatureKey)
Example #9
Source File: core.state.ts    From enterprise-ng-2020-workshop with MIT License 5 votes vote down vote up
selectAuthState = createFeatureSelector<AppState, AuthState>(
  'auth'
)
Example #10
Source File: router.ts    From wingsearch with GNU General Public License v3.0 5 votes vote down vote up
selectRouter = createFeatureSelector<
    State,
    fromRouter.RouterReducerState<any>
>('router')
Example #11
Source File: core.state.ts    From enterprise-ng-2020-workshop with MIT License 5 votes vote down vote up
selectRouterState = createFeatureSelector<
  AppState,
  RouterReducerState<RouterStateUrl>
>('router')
Example #12
Source File: examples.state.ts    From enterprise-ng-2020-workshop with MIT License 5 votes vote down vote up
selectExamples = createFeatureSelector<State, ExamplesState>(
  FEATURE_NAME
)
Example #13
Source File: trade-logs.reducer.ts    From zorro-fire-log with MIT License 5 votes vote down vote up
selectTradeLogState = createFeatureSelector<TradeLogState>(
  featureSelectorKey
)
Example #14
Source File: current-user.selectors.ts    From taiga-front-next with GNU Affero General Public License v3.0 5 votes vote down vote up
selectCurrentUserState = createFeatureSelector<fromCurrentUser.CurrentUserState>(
  fromCurrentUser.currentUserFeatureKey
)
Example #15
Source File: login.selectors.ts    From taiga-front-next with GNU Affero General Public License v3.0 5 votes vote down vote up
selectLoginState = createFeatureSelector<fromLogin.LoginState>(
  fromLogin.loginFeatureKey
)
Example #16
Source File: selectors.ts    From profiler with Apache License 2.0 5 votes vote down vote up
commonDataStoreState =
    createFeatureSelector<CommonDataStoreState>(COMMON_DATA_STORE_KEY)
Example #17
Source File: selectors.ts    From profiler with Apache License 2.0 5 votes vote down vote up
appState = createFeatureSelector<AppState>(STORE_KEY)
Example #18
Source File: selectors.ts    From profiler with Apache License 2.0 5 votes vote down vote up
tensorFlowStatsState =
    createFeatureSelector<TensorflowStatsState>(TENSORFLOW_STATS_STORE_KEY)
Example #19
Source File: index.ts    From dating-client with MIT License 5 votes vote down vote up
selectMembersState = createFeatureSelector<MembersState, MembersFeatureState>(
  membersFeatureKey
)
Example #20
Source File: app.selectors.ts    From Angular-Cookbook with MIT License 5 votes vote down vote up
selectRouter =
  createFeatureSelector<AppState, RouterReducerState<any>>('router')
Example #21
Source File: app.selectors.ts    From Angular-Cookbook with MIT License 5 votes vote down vote up
selectApp = createFeatureSelector<AppState>('app')
Example #22
Source File: app.selectors.ts    From Angular-Cookbook with MIT License 5 votes vote down vote up
selectApp = createFeatureSelector<AppState>('app')
Example #23
Source File: auth.selectors.ts    From svvs with MIT License 5 votes vote down vote up
getAuthState = createFeatureSelector<IAuthState>(AUTH_FEATURE_KEY)
Example #24
Source File: users.selectors.ts    From svvs with MIT License 5 votes vote down vote up
getUserState = createFeatureSelector<IUsersState>(USERS_FEATURE_KEY)
Example #25
Source File: index.ts    From router with MIT License 5 votes vote down vote up
selectAuthState = createFeatureSelector<AuthState>(authFeatureKey)
Example #26
Source File: index.ts    From router with MIT License 5 votes vote down vote up
selectBooksState =
  createFeatureSelector<BooksState>(booksFeatureKey)
Example #27
Source File: index.ts    From router with MIT License 5 votes vote down vote up
selectLayoutState = createFeatureSelector<fromLayout.State>(
  fromLayout.layoutFeatureKey
)
Example #28
Source File: app.selectors.ts    From Angular-Cookbook with MIT License 5 votes vote down vote up
selectApp = createFeatureSelector<AppState>('app')
Example #29
Source File: index.ts    From dating-client with MIT License 5 votes vote down vote up
selectSettingsState = createFeatureSelector<SettingsState, SettingsFeatureState>(
  settingsFeatureKey
)