import {Component} from '@angular/core'; import {ActivatedRoute, Router} from '@angular/router'; import {Session} from '../login/utils/helper.class'; import {HelperFunctions} from "../utils/HelperFunctions.class"; @Component({ selector: 'reload', template: `
Go to initial page....
` }) export class ReloadComponent { constructor (private route: ActivatedRoute, private _router: Router) {} public ngOnInit() { HelperFunctions.scroll(); var URL = Session.getReloadUrl(); if(URL && URL["path"] && URL["path"] != null && URL["path"] != ""){ var url = URL["path"]; var host = URL["host"]; var paramsObject = ((URL["params"] && URL["params"] != null)? Session.getParamsObj(URL["params"]):null); if(host == (location.protocol+"//"+location.host)){ if(paramsObject && paramsObject != null){ Session.setReloadUrl("","","") this._router.navigate([url],{ queryParams: paramsObject}); }else{ Session.setReloadUrl("","","") this._router.navigate([url]); } }else{ Session.setReloadUrl("","","") window.location.href = host+url+((URL["params"] && URL["params"] !=null)?((URL["params"].indexOf("?")==-1?"?":"")+URL["params"]):""); } }else{ Session.setReloadUrl("","","") this._router.navigate(['/']); } } }