2019-10-22 12:06:44 +02:00
|
|
|
import {Component, Inject, Input, Optional} from '@angular/core';
|
2018-04-11 16:06:36 +02:00
|
|
|
import {Location} from '@angular/common';
|
|
|
|
import {ActivatedRoute} from '@angular/router';
|
|
|
|
import {Title, Meta} from '@angular/platform-browser';
|
2019-10-22 12:06:44 +02:00
|
|
|
import {RESPONSE} from "@nguniversal/express-engine/tokens";
|
2017-12-19 13:53:46 +01:00
|
|
|
|
|
|
|
@Component({
|
|
|
|
selector: 'error',
|
|
|
|
template: `
|
2018-04-11 16:06:36 +02:00
|
|
|
<div id="tm-main" class=" uk-section uk-margin-small-top tm-middle">
|
2017-12-19 13:53:46 +01:00
|
|
|
<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">
|
|
|
|
<h2>
|
|
|
|
Bad karma: we can't find that page!
|
|
|
|
</h2>
|
|
|
|
<br>
|
|
|
|
<p>
|
|
|
|
You asked for {{page}}, but despite our computers looking very hard, we could not find it. What happened ?
|
|
|
|
</p>
|
|
|
|
<ul>
|
|
|
|
<li>the link you clicked to arrive here has a typo in it</li>
|
|
|
|
<li>or somehow we removed that page, or gave it another name</li>
|
|
|
|
<li>or, quite unlikely for sure, maybe you typed it yourself and there was a little mistake ?</li>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
`
|
|
|
|
})
|
|
|
|
|
|
|
|
export class ErrorPageComponent {
|
|
|
|
public page: string;
|
|
|
|
|
2018-04-11 16:06:36 +02:00
|
|
|
constructor (private _location: Location, private _meta: Meta,
|
2019-10-22 12:06:44 +02:00
|
|
|
private _title: Title, private route: ActivatedRoute,
|
|
|
|
@Optional() @Inject(RESPONSE) private response: any) {
|
2018-04-11 16:06:36 +02:00
|
|
|
|
|
|
|
var title = "OpenAIRE | Error page";
|
|
|
|
|
|
|
|
this._meta.updateTag({content:title},"property='og:title'");
|
|
|
|
this._title.setTitle(title);
|
2017-12-19 13:53:46 +01:00
|
|
|
this.page = _location.path(true);
|
|
|
|
//this.page = _router.url;
|
|
|
|
//this.page = location.href;
|
|
|
|
}
|
|
|
|
ngOnInit() {
|
2019-10-22 12:06:44 +02:00
|
|
|
this.response.statusCode = 404;
|
|
|
|
this.response.statusMessage = '404 - Page not found';
|
2017-12-19 13:53:46 +01:00
|
|
|
this.route.queryParams.subscribe(data => {
|
|
|
|
this.page = data['page'];
|
2018-04-11 16:06:36 +02:00
|
|
|
if (!this.page) {
|
2017-12-19 13:53:46 +01:00
|
|
|
this.page = this._location.path(true);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|