ngrx/data: best way to have multiple api roots?

492 Views Asked by At

I would need to target different api endpoint roots from different angular modules.

For example

From what I see, the api root called by ngrx/data can be changed but only globally, by means of DefaultDataServiceConfig in app.module

How can I have different api roots in different Angular modules?

At the moment I am using a CustomizeHttpUrlGenerator to change the urls based on a naming convention of mine, but I guess there's a better way.

Thanks

3

There are 3 best solutions below

0
On

create a provider and change it when you want.

const API_ROOT = new InjectionToken<string>('BASE_HREF', {
    factory: () => 'http://server:port/user-api ',
})

then for admin

...
providers: [
  {
    provide: API_ROOT,
    useValue: 'http://server:port/admin-api',
  }
],
...

and somewhere in code

constructor(@Inject(API_ROOT) public readonly apiRoot: string) {}
0
On

Similarly to malc answer, I suggest you override the config of the DataService on a case by case scenario.

export class UserDataService extends DefaultDataService<User> {
    constructor(http: HttpClient, httpUrlGenerator: HttpUrlGenerator, defaultConfig: DefaultDataServiceConfig) {
        super('User', http, httpUrlGenerator, { ...defaultConfig, root: 'http://server:port/user-api' })
    }
}

This is less hacky than preemptively setting the knownHttpUrls of the DefaultDataService.

0
On

You can add an entry per Entity in the entityResource method of the HttpUrlGenerator.

Hence in the User module for the User entity you would have

@Injectable()
export class UserDataService extends DefaultDataService<User> {

constructor(http: HttpClient, httpUrlGenerator: HttpUrlGenerator) {
        httpUrlGenerator.entityResource('User','http://server:port/user-api' );
        super('User', http, httpUrlGenerator);
    }
}