Project

General

Profile

1
import {Component, ViewChild}         from '@angular/core';
2
import {Input}            from '@angular/core';
3
import {ActivatedRoute, Router}       from '@angular/router';
4
import {Title, Meta}                  from '@angular/platform-browser';
5

    
6
import {Observable}                   from 'rxjs';
7

    
8
import {SoftwareService}              from './software.service';
9
import {SoftwareInfo}                 from '../../utils/entities/softwareInfo';
10

    
11
import {RouterHelper}                 from '../../utils/routerHelper.class';
12
import {PiwikService}                 from '../../utils/piwik/piwik.service';
13
import {EnvProperties}                from '../../utils/properties/env-properties';
14
import { SEOService } from '../../sharedComponents/SEO/SEO.service';
15
import {HelperFunctions} from "../../utils/HelperFunctions.class";
16

    
17
@Component({
18
    selector: 'software',
19
    templateUrl: 'software.component.html',
20
})
21

    
22
export class SoftwareComponent {
23
  @Input() piwikSiteId = null;
24
    public softwareInfo: SoftwareInfo;
25
    public softwareId : string ;
26

    
27
    // APP BOX variables
28
    public showAllCollectedFrom: boolean = false;
29
    public showAllDownloadFrom: boolean = false;
30
    public showAllPublishedIn: boolean = false;
31

    
32
    public thresholdDescription: number = 270;
33
    public showNumDescription: number = 270;
34

    
35
    // Metrics tab variables
36
    public metricsClicked: boolean;
37
    public viewsFrameUrl: string;
38
    public downloadsFrameUrl: string;
39
    public totalViews: number;
40
    public totalDownloads: number;
41
    public pageViews: number;
42

    
43
    // Active tab variable for responsiveness
44
    public activeTab: string = "Related Research Results";
45

    
46
    // Map counting variable
47
    public relatedResearchResultsNum: number = 0;
48

    
49
    // Message variables
50
    public warningMessage = "";
51
    public errorMessage = "";
52
    public showLoading: boolean = true;
53

    
54
    public routerHelper:RouterHelper = new RouterHelper();
55

    
56
    private result ;
57
    sub: any; piwiksub: any; infoSub: any;
58
    properties:EnvProperties;
59

    
60
    constructor (private _softwareService: SoftwareService,
61
                 private _piwikService:PiwikService,
62
                 private  route: ActivatedRoute,
63
                 private router: Router,
64
                 private _meta: Meta,
65
                 private _title: Title,
66
                 private _router: Router,
67
               private seoService: SEOService) {
68
    }
69

    
70
    ngOnInit() {
71
      this.route.data
72
        .subscribe((data: { envSpecific: EnvProperties }) => {
73
           this.properties = data.envSpecific;
74
           this.updateUrl(data.envSpecific.baseLink+this._router.url);
75

    
76
        });
77
      this.sub =  this.route.queryParams.subscribe(params => {
78
          this.softwareInfo = null;
79
          this.updateTitle("Software");
80
          this.updateDescription("Software, search, open access");
81

    
82
            this.softwareId = params['softwareId'];
83

    
84
             if(this.softwareId){
85
                this.getSoftwareInfo(this.softwareId);
86
            }else{
87
              this.showLoading = false;
88
                this.warningMessage="No valid software id";
89
            }
90

    
91
            this.metricsClicked = false;
92

    
93
            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';
94
            /*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';
95
            */
96

    
97
            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';
98
            /*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';
99
            */
100
            this.scroll();
101
        });
102

    
103
    }
104

    
105
    ngOnDestroy() {
106
      if(this.sub){
107
        this.sub.unsubscribe();
108
      }
109
      if(this.piwiksub){
110
        this.piwiksub.unsubscribe();
111
      }
112
      if(this.infoSub) {
113
        this.infoSub.unsubscribe();
114
      }
115
    }
116

    
117
    private getSoftwareInfo(id:string) {
118
        this.warningMessage = '';
119
        this.errorMessage=""
120
        this.showLoading = true;
121

    
122
        this.softwareInfo = null;
123

    
124
        this.infoSub = this._softwareService.getSoftwareInfo(id, this.properties).subscribe(
125
            data => {
126
                this.softwareInfo = data;
127
                this.seoService.createLinkForCanonicalURL(this.properties.baseLink + this.properties.searchLinkToSoftwareLanding + this.softwareInfo.record["result"]["header"]["dri:objIdentifier"]);
128
                /*if(this.softwareInfo.title.name != undefined && this.softwareInfo.title.name!= ''){
129
                  this.updateTitle(this.softwareInfo.title.name);
130
                  this.updateDescription("Software, search, repositories, open access,"+this.softwareInfo.title.name);
131
                }*/
132
                if(this.softwareInfo.title){
133
                  this.updateTitle(this.softwareInfo.title);
134
                  this.updateDescription("Software, "+this.softwareInfo.title);
135
                }
136
                if( this.properties.enablePiwikTrack && (typeof document !== 'undefined')){
137
                  this.piwiksub = this._piwikService.trackView(this.properties, this.softwareInfo.title/*.name*/, this.piwikSiteId).subscribe();
138
                }
139

    
140
                this.result = []
141
                this.result = {id: id, type :"software", source : "openaire", title: this.softwareInfo.title,url: '', result: '', accessRights: /*this.softwareInfo.title.accessMode*/this.softwareInfo.accessMode, embargoEndDate: ''};
142

    
143
                let relatedResearchResultsNum = 0;
144
                if(this.softwareInfo.relatedResearchResults != undefined) {
145
                    this.softwareInfo.relatedResearchResults.forEach(function (value, key, map) {
146
                        relatedResearchResultsNum += value.length;
147
                    });
148
                }
149
                this.relatedResearchResultsNum = relatedResearchResultsNum;
150

    
151
                this.showLoading = false;
152
            },
153
            err => {
154
                //console.log(err)
155
                this.handleError("Error getting software for id: "+this.softwareId, err);
156
                this.seoService.createLinkForCanonicalURL(this.properties.baseLink + this.properties.searchLinkToSoftware);
157
                this.errorMessage = 'No software found';
158
                this.showLoading = false;
159
            }
160
        );
161
    }
162

    
163
    // showChange($event) {
164
    //     this.showAllReferences=$event.value;
165
    // }
166

    
167
    public metricsResults($event) {
168
      this.totalViews = $event.totalViews;
169
      this.totalDownloads = $event.totalDownloads;
170
      this.pageViews = $event.pageViews;
171
    }
172

    
173
    private updateDescription(description:string) {
174
      this._meta.updateTag({content:description},"name='description'");
175
      this._meta.updateTag({content:description},"property='og:description'");
176
    }
177
    private updateTitle(title:string) {
178
      var _prefix ="OpenAIRE | ";
179
      var _title = _prefix + ((title.length> 50 ) ?title.substring(0,50):title);
180
      this._title.setTitle(_title);
181
      this._meta.updateTag({content:_title},"property='og:title'");
182
    }
183
    private updateUrl(url:string) {
184
      this._meta.updateTag({content:url},"property='og:url'");
185
    }
186

    
187
    public buildCurationTooltip() {
188
        let tooltipContent: string = "<div class='uk-padding-small uk-light'>";
189

    
190
        tooltipContent += "<h4>Record in preview</h4>";
191
        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>";
192

    
193
        return tooltipContent;
194
    }
195
    public getKeys( map) {
196
      return Array.from(map.keys());
197
    }
198

    
199
    public scroll() {
200
      HelperFunctions.scroll();
201
    }
202

    
203
    private handleError(message: string, error) {
204
        console.error("Software Landing Page: "+message, error);
205
    }
206
  isRouteAvailable(routeToCheck:string){
207
    for (let i = 0; i < this.router.config.length; i++) {
208
      let routePath:string = this.router.config[i].path;
209
      if(routePath == routeToCheck){
210
        return true;
211
      }
212
    }
213
    return false;
214
  }
215
}
(3-3/5)