247 lines
12 KiB
TypeScript
247 lines
12 KiB
TypeScript
import {Component, Input} from '@angular/core';
|
|
import {ActivatedRoute, Router} from '@angular/router';
|
|
import {Meta, Title} from '@angular/platform-browser';
|
|
|
|
import {SoftwareService} from './software.service';
|
|
import {SoftwareInfo} from '../../utils/entities/softwareInfo';
|
|
|
|
import {RouterHelper} from '../../utils/routerHelper.class';
|
|
import {PiwikService} from '../../utils/piwik/piwik.service';
|
|
import {EnvProperties} from '../../utils/properties/env-properties';
|
|
import {SEOService} from '../../sharedComponents/SEO/SEO.service';
|
|
import {HelperFunctions} from "../../utils/HelperFunctions.class";
|
|
import {HelperService} from "../../utils/helper/helper.service";
|
|
|
|
@Component({
|
|
selector: 'software',
|
|
templateUrl: 'software.component.html',
|
|
})
|
|
|
|
export class SoftwareComponent {
|
|
@Input() piwikSiteId = null;
|
|
@Input() communityId = null;
|
|
public softwareInfo: SoftwareInfo;
|
|
public softwareId: string;
|
|
|
|
// APP BOX variables
|
|
public showAllCollectedFrom: boolean = false;
|
|
public showAllDownloadFrom: boolean = false;
|
|
public showAllPublishedIn: boolean = false;
|
|
|
|
public thresholdDescription: number = 270;
|
|
public showNumDescription: number = 270;
|
|
|
|
// Metrics tab variables
|
|
public metricsClicked: boolean;
|
|
public viewsFrameUrl: string;
|
|
public downloadsFrameUrl: string;
|
|
public totalViews: number;
|
|
public totalDownloads: number;
|
|
public pageViews: number;
|
|
|
|
// Active tab variable for responsiveness
|
|
public activeTab: string = "Related Research Results";
|
|
|
|
// Map counting variable
|
|
public relatedResearchResultsNum: number = 0;
|
|
|
|
// Message variables
|
|
public warningMessage = "";
|
|
public errorMessage = "";
|
|
public showLoading: boolean = true;
|
|
|
|
public routerHelper: RouterHelper = new RouterHelper();
|
|
|
|
private result;
|
|
sub: any;
|
|
piwiksub: any;
|
|
infoSub: any;
|
|
properties: EnvProperties;
|
|
public pageContents = null;
|
|
public divContents = null;
|
|
|
|
constructor(private _softwareService: SoftwareService,
|
|
private _piwikService: PiwikService,
|
|
private route: ActivatedRoute,
|
|
private router: Router,
|
|
private _meta: Meta,
|
|
private _title: Title,
|
|
private _router: Router,
|
|
private helper: HelperService,
|
|
private seoService: SEOService) {
|
|
}
|
|
|
|
ngOnInit() {
|
|
this.route.data
|
|
.subscribe((data: { envSpecific: EnvProperties }) => {
|
|
this.properties = data.envSpecific;
|
|
//this.getDivContents();
|
|
this.getPageContents();
|
|
this.updateUrl(data.envSpecific.baseLink + this._router.url);
|
|
|
|
});
|
|
this.sub = this.route.queryParams.subscribe(params => {
|
|
this.softwareInfo = null;
|
|
this.updateTitle("Software");
|
|
this.updateDescription("Software, search, open access");
|
|
|
|
this.softwareId = params['softwareId'];
|
|
|
|
if (this.softwareId) {
|
|
this.getSoftwareInfo(this.softwareId);
|
|
} else {
|
|
this.showLoading = false;
|
|
this.warningMessage = "No valid software id";
|
|
}
|
|
|
|
this.metricsClicked = false;
|
|
|
|
this.viewsFrameUrl = this.properties.framesAPIURL + 'merge.php?com=query&data=[{"query":"resRepoViews", "resTitle":"' + this.softwareId + '", "table":"","fields":[{"fld":"sum","agg":"sum","type":"column","yaxis":1,"c":false}],"xaxis":{"name":"month","agg":"sum"},"group":" ","color":"","type":"chart","size":30,"sort":"xaxis","xStyle":{"r":-30,"s":"0","l":"-","ft":"-","wt":"-"},"title":"","subtitle":"","xaxistitle":"Repository","yaxisheaders":["Monthly views"],"generalxaxis":"","theme":0,"in":[],"filters":[{"name":"","values":[""],"to":"-1"}]}]&info_types=["column"]&stacking=normal&steps=false&fontFamily=Courier&spacing=[5,0,0,0]&style=[{"color":"rgba(0, 0, 0, 1)","size":"18"},{"color":"rgba(0, 0, 0, 1)","size":"18"},{"color":"000000","size":""},{"color":"000000","size":""}]&backgroundColor=rgba(255,255,255,1)&colors[]=rgba(67, 67, 72, 1)&colors[]=rgba(144, 237, 125, 1)&colors[]=rgba(247, 163, 92, 1)&colors[]=rgba(128, 133, 233, 1)&colors[]=rgba(241, 92, 128, 1)&colors[]=rgba(228, 211, 84, 1)&colors[]=rgba(43, 144, 143, 1)&colors[]=rgba(244, 91, 91, 1)&colors[]=rgba(145, 232, 225, 1)&xlinew=0&ylinew=1&legends=true&tooltips=true&persistent=false';
|
|
/*this.viewsFrameUrl = this.properties.framesAPIURL+'merge.php?com=query&data=[{"query":"resViewsTimeline", "resTitle":"'+this.softwareId+'", "table":"","fields":[{"fld":"sum","agg":"sum","type":"column","yaxis":1,"c":false}],"xaxis":{"name":"month","agg":"sum"},"group":" ","color":"","type":"chart","size":30,"sort":"xaxis","xStyle":{"r":-30,"s":"0","l":"-","ft":"-","wt":"-"},"title":"","subtitle":"","xaxistitle":"Repository","yaxisheaders":["Monthly views"],"generalxaxis":"","theme":0,"in":[],"filters":[{"name":"","values":[""],"to":"-1"}]}]&info_types=["column"]&stacking=normal&steps=false&fontFamily=Courier&spacing=[5,0,0,0]&style=[{"color":"rgba(0, 0, 0, 1)","size":"18"},{"color":"rgba(0, 0, 0, 1)","size":"18"},{"color":"000000","size":""},{"color":"000000","size":""}]&backgroundColor=rgba(255,255,255,1)&colors[]=rgba(124, 181, 236, 1)&colors[]=rgba(67, 67, 72, 1)&colors[]=rgba(144, 237, 125, 1)&colors[]=rgba(247, 163, 92, 1)&colors[]=rgba(128, 133, 233, 1)&colors[]=rgba(241, 92, 128, 1)&colors[]=rgba(228, 211, 84, 1)&colors[]=rgba(43, 144, 143, 1)&colors[]=rgba(244, 91, 91, 1)&colors[]=rgba(145, 232, 225, 1)&xlinew=0&ylinew=1&legends=true&tooltips=true&persistent=false';
|
|
*/
|
|
|
|
this.downloadsFrameUrl = this.properties.framesAPIURL + 'merge.php?com=query&data=[{"query":"resRepoDownloads", "resTitle":"' + this.softwareId + '", "table":"","fields":[{"fld":"sum","agg":"sum","type":"column","yaxis":1,"c":false}],"xaxis":{"name":"month","agg":"sum"},"group":" ","color":"","type":"chart","size":30,"sort":"xaxis","xStyle":{"r":-30,"s":"0","l":"-","ft":"-","wt":"-"},"title":"","subtitle":"","xaxistitle":"Repository","yaxisheaders":["Monthly downloads"],"generalxaxis":"","theme":0,"in":[],"filters":[{"name":"","values":[""],"to":"-1"}]}]&info_types=["column"]&stacking=normal&steps=false&fontFamily=Courier&spacing=[5,0,0,0]&style=[{"color":"rgba(0, 0, 0, 1)","size":"18"},{"color":"rgba(0, 0, 0, 1)","size":"18"},{"color":"000000","size":""},{"color":"000000","size":""}]&backgroundColor=rgba(255,255,255,1)&colors[]=rgba(67, 67, 72, 1)&colors[]=rgba(144, 237, 125, 1)&colors[]=rgba(247, 163, 92, 1)&colors[]=rgba(128, 133, 233, 1)&colors[]=rgba(241, 92, 128, 1)&colors[]=rgba(228, 211, 84, 1)&colors[]=rgba(43, 144, 143, 1)&colors[]=rgba(244, 91, 91, 1)&colors[]=rgba(145, 232, 225, 1)&xlinew=0&ylinew=1&legends=true&tooltips=true&persistent=false';
|
|
/*this.downloadsFrameUrl = this.properties.framesAPIURL+'merge.php?com=query&data=[{"query":"resRepoDownloadTimeline", "resTitle":"'+this.softwareId+'", "table":"","fields":[{"fld":"sum","agg":"sum","type":"column","yaxis":1,"c":false}],"xaxis":{"name":"month","agg":"sum"},"group":" ","color":"","type":"chart","size":30,"sort":"xaxis","xStyle":{"r":-30,"s":"0","l":"-","ft":"-","wt":"-"},"title":"","subtitle":"","xaxistitle":"Repository","yaxisheaders":["Monthly downloads"],"generalxaxis":"","theme":0,"in":[],"filters":[{"name":"","values":[""],"to":"-1"}]}]&info_types=["column"]&stacking=normal&steps=false&fontFamily=Courier&spacing=[5,0,0,0]&style=[{"color":"rgba(0, 0, 0, 1)","size":"18"},{"color":"rgba(0, 0, 0, 1)","size":"18"},{"color":"000000","size":""},{"color":"000000","size":""}]&backgroundColor=rgba(255,255,255,1)&colors[]=rgba(67, 67, 72, 1)&colors[]=rgba(144, 237, 125, 1)&colors[]=rgba(247, 163, 92, 1)&colors[]=rgba(128, 133, 233, 1)&colors[]=rgba(241, 92, 128, 1)&colors[]=rgba(228, 211, 84, 1)&colors[]=rgba(43, 144, 143, 1)&colors[]=rgba(244, 91, 91, 1)&colors[]=rgba(145, 232, 225, 1)&xlinew=0&ylinew=1&legends=true&tooltips=true';
|
|
*/
|
|
this.scroll();
|
|
});
|
|
|
|
}
|
|
|
|
private getPageContents() {
|
|
this.helper.getPageHelpContents(this._router.url, this.properties, this.communityId).subscribe(contents => {
|
|
this.pageContents = contents;
|
|
})
|
|
}
|
|
|
|
private getDivContents() {
|
|
this.helper.getDivHelpContents(this._router.url, this.properties, this.communityId).subscribe(contents => {
|
|
this.divContents = contents;
|
|
})
|
|
}
|
|
|
|
ngOnDestroy() {
|
|
if (this.sub) {
|
|
this.sub.unsubscribe();
|
|
}
|
|
if (this.piwiksub) {
|
|
this.piwiksub.unsubscribe();
|
|
}
|
|
if (this.infoSub) {
|
|
this.infoSub.unsubscribe();
|
|
}
|
|
}
|
|
|
|
private getSoftwareInfo(id: string) {
|
|
this.warningMessage = '';
|
|
this.errorMessage = ""
|
|
this.showLoading = true;
|
|
|
|
this.softwareInfo = null;
|
|
|
|
this.infoSub = this._softwareService.getSoftwareInfo(id, this.properties).subscribe(
|
|
data => {
|
|
this.softwareInfo = data;
|
|
this.seoService.createLinkForCanonicalURL(this.properties.baseLink + this.properties.searchLinkToSoftwareLanding + this.softwareInfo.record["result"]["header"]["dri:objIdentifier"]);
|
|
/*if(this.softwareInfo.title.name != undefined && this.softwareInfo.title.name!= ''){
|
|
this.updateTitle(this.softwareInfo.title.name);
|
|
this.updateDescription("Software, search, repositories, open access,"+this.softwareInfo.title.name);
|
|
}*/
|
|
if (this.softwareInfo.title) {
|
|
this.updateTitle(this.softwareInfo.title);
|
|
this.updateDescription("Software, " + this.softwareInfo.title);
|
|
}
|
|
if (this.properties.enablePiwikTrack && (typeof document !== 'undefined')) {
|
|
this.piwiksub = this._piwikService.trackView(this.properties, this.softwareInfo.title/*.name*/, this.piwikSiteId).subscribe();
|
|
}
|
|
|
|
this.result = []
|
|
this.result = {
|
|
id: id,
|
|
type: "software",
|
|
source: "openaire",
|
|
title: this.softwareInfo.title,
|
|
url: '',
|
|
result: '',
|
|
accessRights: /*this.softwareInfo.title.accessMode*/this.softwareInfo.accessMode,
|
|
embargoEndDate: ''
|
|
};
|
|
|
|
let relatedResearchResultsNum = 0;
|
|
if (this.softwareInfo.relatedResearchResults != undefined) {
|
|
this.softwareInfo.relatedResearchResults.forEach(function (value, key, map) {
|
|
relatedResearchResultsNum += value.length;
|
|
});
|
|
}
|
|
this.relatedResearchResultsNum = relatedResearchResultsNum;
|
|
|
|
this.showLoading = false;
|
|
},
|
|
err => {
|
|
//console.log(err)
|
|
this.handleError("Error getting software for id: " + this.softwareId, err);
|
|
this.seoService.createLinkForCanonicalURL(this.properties.baseLink + this.properties.searchLinkToSoftware);
|
|
this.errorMessage = 'No software found';
|
|
this.showLoading = false;
|
|
}
|
|
);
|
|
}
|
|
|
|
// showChange($event) {
|
|
// this.showAllReferences=$event.value;
|
|
// }
|
|
|
|
public metricsResults($event) {
|
|
this.totalViews = $event.totalViews;
|
|
this.totalDownloads = $event.totalDownloads;
|
|
this.pageViews = $event.pageViews;
|
|
}
|
|
|
|
private updateDescription(description: string) {
|
|
this._meta.updateTag({content: description}, "name='description'");
|
|
this._meta.updateTag({content: description}, "property='og:description'");
|
|
}
|
|
|
|
private updateTitle(title: string) {
|
|
var _prefix = "OpenAIRE | ";
|
|
var _title = _prefix + ((title.length > 50) ? title.substring(0, 50) : title);
|
|
this._title.setTitle(_title);
|
|
this._meta.updateTag({content: _title}, "property='og:title'");
|
|
}
|
|
|
|
private updateUrl(url: string) {
|
|
this._meta.updateTag({content: url}, "property='og:url'");
|
|
}
|
|
|
|
public buildCurationTooltip() {
|
|
let tooltipContent: string = "<div class='uk-padding-small uk-light'>";
|
|
|
|
tooltipContent += "<h4>Record in preview</h4>";
|
|
tooltipContent += "<p>Bibliographic record accepted by the system, but not yet processed by <br> OpenAIRE tools for information quality improvement and de-duplication</p></di>";
|
|
|
|
return tooltipContent;
|
|
}
|
|
|
|
public getKeys(map) {
|
|
return Array.from(map.keys());
|
|
}
|
|
|
|
public scroll() {
|
|
HelperFunctions.scroll();
|
|
}
|
|
|
|
private handleError(message: string, error) {
|
|
console.error("Software Landing Page: " + message, error);
|
|
}
|
|
|
|
isRouteAvailable(routeToCheck: string) {
|
|
for (let i = 0; i < this.router.config.length; i++) {
|
|
let routePath: string = this.router.config[i].path;
|
|
if (routePath == routeToCheck) {
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
}
|