2017-12-19 13:53:46 +01:00
|
|
|
import {Component, Input, Output, EventEmitter, ViewChild, ElementRef} from '@angular/core';
|
|
|
|
import {Observable} from 'rxjs/Observable';
|
|
|
|
import {ActivatedRoute, Router} from '@angular/router';
|
|
|
|
import {Location} from '@angular/common';
|
|
|
|
|
2018-02-15 11:36:12 +01:00
|
|
|
import {ErrorCodes} from '../utils/properties/errorCodes';
|
2017-12-19 13:53:46 +01:00
|
|
|
import {RouterHelper} from '../utils/routerHelper.class';
|
|
|
|
import {Session} from '../login/utils/helper.class';
|
|
|
|
|
|
|
|
@Component({
|
|
|
|
selector: 'reload',
|
|
|
|
template: `
|
|
|
|
<div id="tm-main" class=" uk-section uk-margin-small-top tm-middle" >
|
|
|
|
<div uk-grid uk-grid>
|
|
|
|
<div class="tm-main uk-width-1-1@s uk-width-1-1@m uk-width-1-1@l uk-row-first ">
|
|
|
|
<div class="uk-container uk-margin-top publication">
|
|
|
|
Go to initial page....
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
`
|
|
|
|
})
|
|
|
|
export class ReloadComponent {
|
|
|
|
|
|
|
|
constructor (private element: ElementRef,
|
|
|
|
private route: ActivatedRoute,
|
|
|
|
private _router: Router,
|
|
|
|
private location: Location
|
|
|
|
) {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
public ngOnInit() {
|
|
|
|
if (typeof document !== 'undefined') {
|
|
|
|
this.element.nativeElement.scrollIntoView();
|
|
|
|
}
|
2018-05-23 16:47:27 +02:00
|
|
|
var URL = Session.getReloadUrl();
|
|
|
|
var url = URL["path"];
|
2017-12-19 13:53:46 +01:00
|
|
|
if(url && url != null && url != ""){
|
2018-05-23 16:47:27 +02:00
|
|
|
var host = URL["host"];
|
|
|
|
var paramsObject = Session.getParamsObj(URL["params"]);
|
2018-06-01 14:28:49 +02:00
|
|
|
if(host == (location.protocol+"//"+location.host)){
|
2018-05-23 16:47:27 +02:00
|
|
|
if(paramsObject && paramsObject != null){
|
|
|
|
Session.setReloadUrl("","","")
|
|
|
|
this._router.navigate([url],{ queryParams: paramsObject});
|
|
|
|
}else{
|
|
|
|
Session.setReloadUrl("","","")
|
|
|
|
this._router.navigate([url]);
|
|
|
|
}
|
2017-12-19 13:53:46 +01:00
|
|
|
}else{
|
2018-05-23 16:47:27 +02:00
|
|
|
Session.setReloadUrl("","","")
|
2018-06-01 14:28:49 +02:00
|
|
|
window.location.href = host+url+URL["params"];
|
2017-12-19 13:53:46 +01:00
|
|
|
}
|
2018-05-23 16:47:27 +02:00
|
|
|
|
2017-12-19 13:53:46 +01:00
|
|
|
}else{
|
2018-05-23 16:47:27 +02:00
|
|
|
Session.setReloadUrl("","","")
|
2017-12-19 13:53:46 +01:00
|
|
|
this._router.navigate(['/']);
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|