У меня есть модуль конфигурации с фабрикой, которая выполняется при инициализации приложения (APP_INITIALIZER)
export function ConfigFactory(config: ConfigService) {
const res = () => config.load();
return res;
}
...
{
provide: APP_INITIALIZER,
useFactory: ConfigFactory,
deps: [ConfigService],
multi: true
}
Все работает нормально, если я печатаю данные на странице / компоненте.
Проблема в том, когда я пытаюсь использовать конфигурацию в Сервисе, который вызывается из HttpInterceptor:
{
provide: HTTP_INTERCEPTORS,
useClass: TokenInterceptor,
multi: true
},
Перехватчик:
constructor(private authenticationService: AuthenticationService) {}
intercept(request: HttpRequest<any> , next: HttpHandler): Observable<HttpEvent<any>> {
this.authenticationService.getAccessToken().subscribe((token: string) => { this.accessToken = token.toString(); });
this.authenticationService.getCurrentUser().subscribe((currentU: string) => { this.currentUser = currentU.toString(); });
if (this.accessToken) {
request = request.clone({
setHeaders: {
Authorization: `Bearer ${this.accessToken}`,
actor: this.currentUser,
// modulo: 'AltaActivoFijo'
}
});
}
return next.handle(request);
}
AuthenticationService:
export class AuthenticationService implements AuthService {
API_URL = this.configService.tokenServer;
....
Проблема в том, что configService не определен.
Есть ли способ отложить инициализацию перехватчиков до завершения APP_INITIALIZER?
Моя цель - создать уникальную сборку для всех сред.