2020-07-21 14:41:08 +02:00
|
|
|
import {Component, Input, OnChanges, OnInit, SimpleChanges} from '@angular/core';
|
2020-03-16 14:09:46 +01:00
|
|
|
import {OpenAireJsonldConverterService} from './service/open-aire-jsonld-converter.service';
|
|
|
|
import {JsonldDocumentSerializerService} from './service/jsonld-document-serializer.service';
|
|
|
|
|
2018-11-12 16:36:20 +01:00
|
|
|
@Component({
|
|
|
|
selector: 'schema2jsonld',
|
|
|
|
template: `
|
2020-03-16 14:09:46 +01:00
|
|
|
<ngx-json-ld [json]="json"></ngx-json-ld>
|
2018-11-12 16:36:20 +01:00
|
|
|
`
|
|
|
|
})
|
2020-07-21 14:41:08 +02:00
|
|
|
export class Schema2jsonldComponent implements OnInit, OnChanges {
|
2020-03-16 14:09:46 +01:00
|
|
|
@Input() data; // for project, organization, datasource
|
|
|
|
@Input() URL;
|
|
|
|
@Input() logoURL; // for home, search
|
|
|
|
@Input() otherURL; //for project, datasource
|
|
|
|
@Input() name;
|
2020-08-10 17:14:48 +02:00
|
|
|
@Input() searchAction = false;
|
2020-03-16 14:09:46 +01:00
|
|
|
@Input() type = "result";
|
2020-08-10 17:14:48 +02:00
|
|
|
@Input() description = null;
|
|
|
|
@Input() searchActionRoute = "/search/find/";
|
2020-03-16 14:09:46 +01:00
|
|
|
public json;
|
|
|
|
|
|
|
|
constructor(private documentParser: OpenAireJsonldConverterService,
|
|
|
|
private documentSerializer: JsonldDocumentSerializerService) {
|
|
|
|
|
2018-11-12 16:36:20 +01:00
|
|
|
}
|
2020-07-21 14:41:08 +02:00
|
|
|
ngOnChanges(changes: SimpleChanges): void {
|
|
|
|
if (changes.description) {
|
|
|
|
this.createJson();
|
|
|
|
}
|
|
|
|
}
|
2018-11-12 16:36:20 +01:00
|
|
|
ngOnInit() {
|
2020-07-21 14:41:08 +02:00
|
|
|
this.createJson();
|
|
|
|
}
|
|
|
|
|
|
|
|
createJson(){
|
2020-03-16 14:09:46 +01:00
|
|
|
var docOvject;
|
|
|
|
if (this.type == 'project') {
|
2020-07-21 14:41:08 +02:00
|
|
|
docOvject = this.documentParser.convertProject(this.data, this.URL);
|
2020-03-16 14:09:46 +01:00
|
|
|
this.json = this.documentSerializer.serializeOrganization(docOvject);
|
|
|
|
} else if (this.type == 'organization') {
|
2020-07-21 14:41:08 +02:00
|
|
|
docOvject = this.documentParser.convertOrganization(this.data, this.URL, this.description);
|
2020-03-16 14:09:46 +01:00
|
|
|
this.json = this.documentSerializer.serializeOrganization(docOvject);
|
|
|
|
} else if (this.type == 'datasource') {
|
|
|
|
docOvject = this.documentParser.convertDatasource(this.data, this.URL, this.otherURL);
|
|
|
|
this.json = this.documentSerializer.serializeOrganization(docOvject);
|
|
|
|
} else if (this.type == 'home') {
|
2020-08-10 17:14:48 +02:00
|
|
|
this.json = this.documentParser.createHome(this.name, this.URL, this.logoURL, this.description, this.searchActionRoute);
|
2020-03-16 14:09:46 +01:00
|
|
|
} else if (this.type == 'search') {
|
2020-08-10 17:14:48 +02:00
|
|
|
this.json = this.documentParser.createSearchPage(this.name, this.URL, this.logoURL, this.searchAction, this.description, this.searchActionRoute );
|
2020-03-16 14:09:46 +01:00
|
|
|
} else if (this.type == 'result') {
|
|
|
|
docOvject = this.documentParser.convertResult(this.data, this.URL);
|
|
|
|
this.json = this.documentSerializer.serializeDataset(docOvject);
|
|
|
|
} else {
|
2020-07-15 15:59:09 +02:00
|
|
|
this.json = this.documentParser.createSimplePage(this.name, this.URL, this.description);
|
2020-03-16 14:09:46 +01:00
|
|
|
}
|
2018-11-12 16:36:20 +01:00
|
|
|
}
|
|
|
|
}
|