@ngrx/effects#ofType TypeScript Examples
The following examples show how to use
@ngrx/effects#ofType.
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: service.effects.ts From digital-bank-ui with Mozilla Public License 2.0 | 6 votes |
@Effect()
loadAll$: Observable<Action> = this.actions$.pipe(
ofType(identificationCardScans.LOAD_ALL),
debounceTime(300),
map((action: identificationCardScans.LoadAllAction) => action.payload),
switchMap(payload => {
const nextSearch$ = this.actions$.pipe(ofType(identificationCardScans.LOAD_ALL), skip(1));
return this.customerService.fetchIdentificationCardScans(payload.customerIdentifier, payload.identificationCardNumber).pipe(
takeUntil(nextSearch$),
map(scans => new identificationCardScans.LoadAllCompleteAction(scans)),
catchError(() => of(new identificationCardScans.LoadAllCompleteAction([]))),
);
}),
);
Example #2
Source File: customer.effects.ts From spurtcommerce with BSD 3-Clause "New" or "Revised" License | 6 votes |
// Customer list
@Effect()
CustomerGrouplists$: Observable<Action> = this.action$.pipe(
ofType(actions.ActionTypes.DO_Customers_Group_List),
map((action: actions.DoCustomersGroupListAction) => action.payload),
switchMap(state => {
return this.Service.customersGroupList(state).pipe(
switchMap(customers => [
new actions.DoCustomersGroupListSuccessAction(customers)
]),
catchError(error => of(new actions.DoCustomersGroupListFailAction(error)))
);
})
);
Example #3
Source File: trade-logs.effects.ts From zorro-fire-log with MIT License | 6 votes |
onAddTradeLogs$ = createEffect(() =>
this.actions$.pipe(
ofType(addTradeLogs),
withLatestFrom(this.store.select(selectFilter)),
map(([action, filter]) => {
const newFilter = { ...filter };
const reduced = action.tradeLogs.reduce((acc, cur) => {
//check alias
if (!acc.aliases) {
acc.aliases = {};
}
if (!acc.aliases[cur.alias]) {
acc = {
...acc,
aliases: {
...acc.aliases,
[cur.alias]: { enabled: true, expanded: true, algos: {} },
},
};
}
if (!acc.aliases[cur.alias].algos[cur.name]) {
acc.aliases[cur.alias].algos[cur.name] = {
enabled: true,
expanded: false,
symbols: {},
};
}
if (!acc.aliases[cur.alias].algos[cur.name].symbols[cur.asset]) {
acc.aliases[cur.alias].algos[cur.name].symbols[cur.asset] = {
enabled: true,
};
}
return acc;
}, newFilter);
return updateFilter({ filter: reduced });
})
)
);
Example #4
Source File: todos.effects.ts From enterprise-ng-2020-workshop with MIT License | 6 votes |
persistTodos = createEffect(
() =>
this.actions$.pipe(
ofType(
todoAction.actionTodosAdd,
todoAction.actionTodosFilter,
todoAction.actionTodosRemoveDone,
todoAction.actionTodosToggle
),
withLatestFrom(this.store.pipe(select(selectTodosState))),
tap(([action, todos]) =>
this.localStorageService.setItem(TODOS_KEY, todos)
)
),
{ dispatch: false }
);
Example #5
Source File: service.effects.ts From digital-bank-ui with Mozilla Public License 2.0 | 6 votes |
@Effect()
search$: Observable<Action> = this.actions$.pipe(
ofType(userActions.SEARCH),
debounceTime(300),
switchMap(() => {
const nextSearch$ = this.actions$.pipe(ofType(userActions.SEARCH), skip(1));
return this.identityService.listUsers().pipe(
takeUntil(nextSearch$),
map(this.excludeSystemUsers),
map(
users =>
new userActions.SearchCompleteAction({
elements: users,
totalPages: 1,
totalElements: users.length,
}),
),
catchError(() => of(new userActions.SearchCompleteAction(emptySearchResult()))),
);
}),
);
Example #6
Source File: app.effects.ts From nica-os with MIT License | 6 votes |
loadAssets$ = createEffect(() => this.actions$.pipe(
ofType(loadAssets),
withLatestFrom(
this.store$.pipe(select(selectLoadedAssets))
),
switchMap(([action, loadedAssets]) => {
this.store$.dispatch(setLoadingMessage({message: 'Loading website assets.'}));
if ( loadedAssets ) {
this.store$.dispatch(setLoadingMessage({message: '<b>Loading</b> done.'}));
return [loadAssetsSuccess({loadedAssets})];
} else {
return this.assetsService.getAll().pipe(
switchMap(assets => {
this.store$.dispatch(setLoadingMessage({message: '<b>Loading</b> done.'}));
return of(assets);
}),
delay(2000),
switchMap(assets => {
return of(loadAssetsSuccess({loadedAssets: assets}));
})
);
}
}))
);
Example #7
Source File: notification.effects.ts From digital-bank-ui with Mozilla Public License 2.0 | 6 votes |
@Effect({ dispatch: false })
deleteIdentificationCardScanSuccess$: Observable<Action> = this.actions$.pipe(
ofType(identificationCardScanActions.DELETE_SUCCESS),
tap(() =>
this.notificationService.send({
type: NotificationType.MESSAGE,
message: 'Scan is going to be deleted',
}),
),
);
Example #8
Source File: mdview.effects.ts From geonetwork-ui with GNU General Public License v2.0 | 6 votes |
loadFull$ = createEffect(() =>
this.actions$.pipe(
ofType(MdViewActions.loadFullMetadata),
switchMap(({ uuid }) =>
this.searchService.search(
'bucket',
JSON.stringify(this.esService.getMetadataByIdPayload(uuid))
)
),
map((response: EsSearchResponse) => {
const records = this.esMapper.toRecords(response)
const full = records[0]
return MdViewActions.loadFullSuccess({ full })
}),
catchError((error) => of(MdViewActions.loadFullFailure({ error })))
)
)
Example #9
Source File: auth.effects.ts From dating-client with MIT License | 6 votes |
loginSuccess$ = createEffect(() =>
this.actions$.pipe(ofType(loginSuccess),
tap(({ user }) => {
this.local.set('user', JSON.stringify(user));
this.toast.success(`Welcome back ${user.name}!`);
this.router.navigate([ '/' ]);
})
), { dispatch: false }
);