84 lines
3.1 KiB
TypeScript
84 lines
3.1 KiB
TypeScript
import {Component, Input} from '@angular/core';
|
|
import {SearchResult} from '../utils/entities/searchResult';
|
|
import {ErrorCodes} from '../utils/properties/errorCodes';
|
|
import {RouterHelper} from '../utils/routerHelper.class';
|
|
import {EnvProperties} from '../utils/properties/env-properties';
|
|
import {ZenodoInformationClass} from "./utils/zenodoInformation.class";
|
|
import {ActivatedRoute} from "@angular/router";
|
|
import {ResultPreview} from "../utils/result-preview/result-preview";
|
|
import {Subscriber} from "rxjs";
|
|
import {properties} from "../../../environments/environment";
|
|
|
|
@Component({
|
|
selector: 'deposit-result',
|
|
templateUrl:'searchResultsInDeposit.component.html'
|
|
})
|
|
|
|
export class SearchResultsInDepositComponent {
|
|
@Input() results: SearchResult[];
|
|
@Input() status: number;
|
|
@Input() type: string;
|
|
@Input() properties:EnvProperties;
|
|
|
|
|
|
public urlParam: string;
|
|
public linkToAdvancedSearchPage: string;
|
|
public errorCodes:ErrorCodes = new ErrorCodes();
|
|
public routerHelper:RouterHelper = new RouterHelper();
|
|
public errorMessage: string = "No results found";
|
|
|
|
@Input() public zenodoInformation: ZenodoInformationClass = new ZenodoInformationClass();
|
|
sub;
|
|
constructor (private route: ActivatedRoute) {}
|
|
ngOnDestroy() {
|
|
if (this.sub instanceof Subscriber) {
|
|
this.sub.unsubscribe();
|
|
}
|
|
}
|
|
ngOnInit() {
|
|
if(this.type == "publication") {
|
|
this.linkToAdvancedSearchPage = this.properties.searchLinkToAdvancedPublications;
|
|
this.urlParam = "articleId";
|
|
} else if(this.type == "dataset") {
|
|
this.linkToAdvancedSearchPage = this.properties.searchLinkToAdvancedDatasets;
|
|
this.urlParam = "datasetId";
|
|
} else if(this.type == "software") {
|
|
this.linkToAdvancedSearchPage = this.properties.searchLinkToAdvancedSoftware;
|
|
this.urlParam = "softwareId";
|
|
} else if(this.type == "other") {
|
|
this.linkToAdvancedSearchPage = this.properties.searchLinkToAdvancedOrps;
|
|
this.urlParam = "orpId";
|
|
} else if(this.type == "project") {
|
|
this.linkToAdvancedSearchPage = this.properties.searchLinkToAdvancedProjects;
|
|
this.urlParam = "projectId";
|
|
} else if(this.type == "organization") {
|
|
this.linkToAdvancedSearchPage = this.properties.searchLinkToAdvancedOrganizations;
|
|
this.urlParam = "organizationId";
|
|
} else if(this.type == "dataprovider") {
|
|
this.linkToAdvancedSearchPage = this.properties.searchLinkToAdvancedDataProviders;
|
|
this.urlParam = "datasourceId";
|
|
}
|
|
|
|
this.properties = properties;
|
|
|
|
if (!this.zenodoInformation) {
|
|
this.zenodoInformation = new ZenodoInformationClass();
|
|
}
|
|
if (!this.zenodoInformation.shareInZenodoUrl) {
|
|
this.zenodoInformation.url = this.properties.zenodo;
|
|
}
|
|
if (!this.zenodoInformation.name) {
|
|
this.zenodoInformation.name = "Zenodo";
|
|
}
|
|
|
|
}
|
|
|
|
public quote(params: string):string {
|
|
return '"'+params+'"';
|
|
}
|
|
public getResultPreview(result: SearchResult): ResultPreview {
|
|
return ResultPreview.searchResultConvert(result, (result.entityType)?result.entityType:this.type);
|
|
}
|
|
|
|
}
|