Skip to content
Advertisement

Return forkJoin selectively

I have a case where an application should return menu based on given context.

Below are the sources of menuA and menuB.

JavaScript

Given my limited knowledge and experience on rxjs, I was hoping something like the snippet below can accept a string of menuA or menuB to return an observable of the required menu:

JavaScript

The above invokes warning as below:

JavaScript

Based on a comment below, I have also added the warning message when map is used to replace the mergeMap:

JavaScript

Warning message:

JavaScript

I am using angular 12 and rxjs "~6.6.0".

Advertisement

Answer

DEMO: https://stackblitz.com/edit/typescript-ktm2hz?file=index.ts

JavaScript

UPDATE:

you need to declare your menus. I have created Enum for it

DEMO with Angular 12: https://stackblitz.com/edit/angular-12-template-wcgohi?file=src/app/app.component.ts

JavaScript
User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement