AW-5467 - Refresh geeft leeg scherm
FarmMaps/FarmMapsLib/pipeline/head This commit looks good Details

master
Wilco Krikke 2023-10-05 11:23:18 +02:00
parent 914e272fc2
commit e6a637b866
4 changed files with 5 additions and 11 deletions

4
package-lock.json generated
View File

@ -1,12 +1,12 @@
{
"name": "farmmaps-lib-app",
"version": "3.0.1",
"version": "3.4.1",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "farmmaps-lib-app",
"version": "3.0.1",
"version": "3.4.1",
"dependencies": {
"@angular-eslint/eslint-plugin": "^15.2.1",
"@angular/animations": "^14.1.3",

View File

@ -1,6 +1,6 @@
{
"name": "farmmaps-lib-app",
"version": "3.4.0",
"version": "3.4.1",
"scripts": {
"ng": "ng",
"start": "ng serve",

View File

@ -115,18 +115,11 @@ export class AppComponent implements OnInit, OnDestroy {
return action;
}
async loadItemTypes() {
await this.itemTypeService$.load(this.appConfig$)
}
ngOnInit() {
this.InstallRouteEventHandler();
this.InstallEventServiceEventHandler();
this.InstallAuthenticationEventHandler();
this.InstallHealthCheck();
//load item types
this.loadItemTypes();
}
@HostListener('document:keyup', ['$event'])

View File

@ -11,7 +11,8 @@ import { IAuthconfigFactory } from './authconfigFactory';
export function appConfigFactory(injector:Injector, appConfig: AppConfig, oauthService: OAuthService, authconfigFactory:IAuthconfigFactory,authStorage:OAuthStorage,itemtypeService:ItemTypeService): () => Promise<any> {
return (): Promise<any> => {
return new Promise<void>((resolve,reject) => {
appConfig.load().then(() => {
appConfig.load().then(() => {
itemtypeService.load(appConfig);
oauthService.configure(authconfigFactory.getAuthConfig(appConfig));
oauthService.setStorage(authStorage);
oauthService.setupAutomaticSilentRefresh();