Project

General

Profile

1
import {Component, ViewChild}         from '@angular/core';
2
import {ElementRef, 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/Observable';
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

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

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

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

    
31
    // Metrics tab variables
32
    public metricsClicked: boolean;
33
    public viewsFrameUrl: string;
34
    public downloadsFrameUrl: string;
35
    public totalViews: number;
36
    public totalDownloads: number;
37
    public pageViews: number;
38

    
39
    // Active tab variable for responsiveness
40
    public activeTab: string = "Related Research Results";
41

    
42
    // Map counting variable
43
    public relatedResearchResultsNum: number = 0;
44

    
45
    // Message variables
46
    public warningMessage = "";
47
    public errorMessage = "";
48
    public showLoading: boolean = true;
49

    
50
    public routerHelper:RouterHelper = new RouterHelper();
51

    
52
    private result ;
53
    sub: any; piwiksub: any; infoSub: any;
54
    properties:EnvProperties;
55

    
56
    constructor (private element: ElementRef,
57
                 private _softwareService: SoftwareService,
58
                 private _piwikService:PiwikService,
59
                 private  route: ActivatedRoute,
60
                 private _meta: Meta,
61
                 private _title: Title,
62
                 private _router: Router,
63
               private seoService: SEOService) {
64
    }
65

    
66
    ngOnInit() {
67
      this.route.data
68
        .subscribe((data: { envSpecific: EnvProperties }) => {
69
           this.properties = data.envSpecific;
70
           this.updateUrl(data.envSpecific.baseLink+this._router.url);
71

    
72
        });
73
      this.sub =  this.route.queryParams.subscribe(params => {
74
          this.softwareInfo = null;
75
          this.updateTitle("Software");
76
          this.updateDescription("Software, search, open access");
77
          this.seoService.createLinkForCanonicalURL();
78

    
79
            this.softwareId = params['softwareId'];
80
             console.info("Id is :"+this.softwareId);
81

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

    
89
            this.metricsClicked = false;
90

    
91
            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';
92
            /*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';
93
            */
94

    
95
            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';
96
            /*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';
97
            */
98
            if (typeof document !== 'undefined') {
99
               this.element.nativeElement.scrollIntoView();
100
            }
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
                /*if(this.softwareInfo.title.name != undefined && this.softwareInfo.title.name!= ''){
128
                  this.updateTitle(this.softwareInfo.title.name);
129
                  this.updateDescription("Software, search, repositories, open access,"+this.softwareInfo.title.name);
130
                }*/
131
                if(this.softwareInfo.title){
132
                  this.updateTitle(this.softwareInfo.title);
133
                  this.updateDescription("Software, search, repositories, open access,"+this.softwareInfo.title);
134
                }
135
                if( this.properties.enablePiwikTrack && (typeof document !== 'undefined')){
136
                  this.piwiksub = this._piwikService.trackView(this.properties, this.softwareInfo.title/*.name*/, this.piwikSiteId).subscribe();
137
                }
138

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

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

    
150
                this.showLoading = false;
151
            },
152
            err => {
153
                console.log(err)
154
                console.info("error");
155

    
156
                this.errorMessage = 'No software found';
157
                this.showLoading = false;
158
            }
159
        );
160
    }
161

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

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

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

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

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

    
192
        return tooltipContent;
193
    }
194
    public getKeys( map) {
195
      return Array.from(map.keys());
196
    }
197
}
(3-3/5)