[Admin|Trunk]: Fix menu issus like connect.
git-svn-id: https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/uoa-admin-portal/trunk@56550 d315682c-612b-4755-9ff5-7f18f6832af3
This commit is contained in:
parent
391bdf290b
commit
e7e539183a
|
@ -39,6 +39,16 @@ export class AppComponent implements OnInit{
|
||||||
private propertiesService: EnvironmentSpecificService,
|
private propertiesService: EnvironmentSpecificService,
|
||||||
private _communitiesService: CommunitiesService,
|
private _communitiesService: CommunitiesService,
|
||||||
private router: Router) {
|
private router: Router) {
|
||||||
|
this.router.events.forEach((event) => {
|
||||||
|
if (event instanceof NavigationStart) {
|
||||||
|
HelperFunctions.scroll();
|
||||||
|
if(event.url === '/') {
|
||||||
|
this.wellcome = true;
|
||||||
|
} else {
|
||||||
|
this.wellcome = false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
ngOnInit() {
|
ngOnInit() {
|
||||||
|
@ -58,15 +68,8 @@ export class AppComponent implements OnInit{
|
||||||
this.isPortalAdministrator = Session.isPortalAdministrator();
|
this.isPortalAdministrator = Session.isPortalAdministrator();
|
||||||
}
|
}
|
||||||
this._communitiesService.updateCommunities(this.properties, this.properties.communityAPI + 'communities');
|
this._communitiesService.updateCommunities(this.properties, this.properties.communityAPI + 'communities');
|
||||||
this.router.events.forEach((event) => {
|
this.route.queryParams.subscribe(params => {
|
||||||
if(event instanceof RoutesRecognized) {
|
this.communityId = (params['communityId']) ? params['communityId'] : '';
|
||||||
HelperFunctions.scroll();
|
|
||||||
if(event.url === '/') {
|
|
||||||
this.wellcome = true;
|
|
||||||
} else {
|
|
||||||
this.wellcome = false;
|
|
||||||
}
|
|
||||||
this.communityId = (event.state.root.firstChild.queryParams['communityId']) ? event.state.root.firstChild.queryParams['communityId'] : '';
|
|
||||||
|
|
||||||
this.communityType = null;
|
this.communityType = null;
|
||||||
this.menuItems = [];
|
this.menuItems = [];
|
||||||
|
@ -143,7 +146,6 @@ export class AppComponent implements OnInit{
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
}
|
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue