Project

General

Profile

1
<div id="tm-main" class=" uk-section  uk-padding-remove-top uk-margin-small-top tm-middle">
2
  <div uk-grid>
3
    <div class="tm-main uk-width-1-1@s uk-width-1-1@m  uk-width-1-1@l uk-row-first ">
4

    
5
      <div id="project" class="uk-container project">
6
        <div *ngIf="warningMessage.length > 0" class="uk-alert uk-alert-warning uk-margin-large-top"
7
             role="alert">{{warningMessage}}</div>
8
        <div *ngIf="errorMessage.length > 0" class="uk-alert uk-alert-danger  uk-margin-large-top"
9
             role="alert">{{errorMessage}}</div>
10
        <div [style.display]="showLoading ? 'inline' : 'none'"
11
             class="uk-animation-fade uk-margin-large-top  uk-width-1-1" role="alert"><span
12
          class="loading-gif  uk-align-center"></span></div>
13
        <helper *ngIf="pageContents && pageContents['top'] && pageContents['top'].length > 0"
14
                [texts]="pageContents['top']"></helper>
15
        <div *ngIf="projectInfo != null"  class="uk-grid">
16
          <div class="uk-width-2-3@m uk-width-1-1@s  uk-margin-bottom">
17
            <schema2jsonld *ngIf="projectInfo" [data]=projectInfo
18
                           [URL]="properties.baseLink+'/search/project?projectId='+projectId"
19
                           type="project"></schema2jsonld>
20
            <!--h3 *ngIf="projectInfo.acronym != undefined && projectInfo.acronym != ''">{{projectInfo.acronym}}</h3>
21
            <h3 *ngIf="projectInfo.acronym == undefined || projectInfo.acronym == ''">{{projectInfo.title}}</h3-->
22
            <h2 class="landingTitle uk-margin-remove-top">
23
              <!--span class="entityTitleIcon projectTitleIcon"></span-->
24
              <!-- <span *ngIf="projectInfo.specialClause39==true" class="sc39">{{projectName}}</span>
25
              <span *ngIf="projectInfo.specialClause39!=true">{{projectName}}</span> -->
26
              <span>{{projectName}}</span>
27
              <span *ngIf="  projectInfo.title == projectName ">({{projectInfo.contractNum}})</span>
28
            </h2>
29
            <div class="uk-text-large "
30
                 *ngIf="projectInfo.title && projectInfo.title != projectName ">{{projectInfo.title}}
31
              ({{projectInfo.contractNum}})
32
            </div>
33
            <div>
34
              <span class="uk-label custom-label label-blue label-project" title="Type">Project</span>{{" "}}
35
              <span class="uk-label custom-label label-funder " title="Funder">{{projectInfo.funder}}</span>{{" "}}
36

    
37
              <span
38
                *ngIf="projectInfo.openAccessMandatePublications != undefined && projectInfo.openAccessMandatePublications && projectInfo.openAccessMandateDatasets != undefined && projectInfo.openAccessMandateDatasets"
39
                class="uk-label custom-label label-openaccessmandate "
40
                title="Open Access mandate for Publications and Research Data">
41
                <span class="uk-visible@m">Open Access mandate for Publications and Research Data</span> <span
42
                class="uk-hidden@m">Open Access mandate for ...</span>
43
              </span>{{" "}}
44
              <span
45
                *ngIf="projectInfo.openAccessMandatePublications != undefined && projectInfo.openAccessMandatePublications && (projectInfo.openAccessMandateDatasets == undefined || !projectInfo.openAccessMandateDatasets)"
46
                class="uk-label custom-label label-openaccessmandate "
47
                title="Open Access mandate for Publications">Open Access mandate for Publications</span>{{" "}}
48
              <span *ngIf="projectInfo.specialClause39" class="uk-label custom-label label-sc39 "
49
                    title="Special Clause 39">Special Clause 39</span>{{" "}}
50
              <span
51
                *ngIf="projectInfo.openAccessMandateDatasets != undefined && projectInfo.openAccessMandateDatasets && (projectInfo.openAccessMandatePublications == undefined || !projectInfo.openAccessMandatePublications)"
52
                class="uk-label custom-label label-openaccessmandate "
53
                title="Open Access mandate for Research Data">Open Access mandate for Research Data</span>{{" "}}
54
            </div>
55
            <ul class="uk-list">
56
              <li *ngIf="projectInfo.funding"><span class="uk-text-bold">Funding:</span> {{projectInfo.funding}}</li>
57
              <li *ngIf="projectInfo.startDate"><span class="uk-text-bold">Start Date:</span> {{projectInfo.startDate}}
58
              </li>
59
              <li *ngIf="projectInfo.endDate"><span class="uk-text-bold">End Date:</span> {{projectInfo.endDate}}</li>
60
              <li
61
                *ngIf="projectInfo.openAccessMandatePublications != undefined && !projectInfo.openAccessMandatePublications ">
62
                <span class="uk-text-bold">Open Access mandate for Publications:</span> no
63
              </li>
64
              <li *ngIf="projectInfo.openAccessMandateDatasets != undefined && !projectInfo.openAccessMandateDatasets ">
65
                <span class="uk-text-bold">Open Access mandate for Research Data:</span> no
66
              </li>
67
              <li *ngIf="projectInfo.organizations && projectInfo.organizations.length > 0"><span
68
                class="uk-text-bold">Organization:</span>
69

    
70
                <span class="list-horizontal-line">
71
                  <span *ngFor="let organization of projectInfo.organizations let i=index"
72
                        [attr.uk-tooltip]="organization.acronym && organization.name ? 'pos:right; delay:10' : 'cls: uk-invisible'"
73
                        [title]="organization.name">
74
                        <a *ngIf="organization.id"
75
                           [queryParams]="{organizationId: organization.id}" routerLinkActive="router-link-active"
76
                           routerLink="/search/organization">
77
                            {{(organization.acronym) ? organization.acronym : ''}} {{(!organization.acronym && organization.name) ? organization.name : ''}}</a>
78
                              <span
79

    
80
                                *ngIf="!organization.id">
81
                          <span *ngIf="organization.acronym">{{organization.acronym}}</span><span
82
                                *ngIf="!organization.acronym && organization.name">{{organization.name}}</span></span>
83
                  </span>
84
                </span>
85
              </li>
86
              <li *ngIf="projectInfo.urlInfo ">
87
                <span class="uk-button-text">
88
                    <a target="_blank" href="{{projectInfo.url}}">
89
                        {{projectInfo.urlInfo}}
90
                    </a>
91
                </span>
92
              </li>
93
            </ul>
94

    
95
            <ul class="custom-accordion" uk-accordion>
96

    
97
              <li (click)="activeTab='Publications'; searchPublicationsInit()">
98
                <a class="uk-accordion-title" href="#">
99
                  Publications
100
                  <!-- <span class="uk-badge uk-badge-notification"> -->
101
                  ({{fetchPublications.searchUtils.totalResults | number}})
102
                  <!-- </span> -->
103
                </a>
104
                <div class="uk-accordion-content">
105
                  <errorMessages [status]="[fetchPublications.searchUtils.status]" [type]="'publications'"
106
                                 tab_error_class=true></errorMessages>
107

    
108
                  <div *ngIf="fetchPublications.searchUtils.status == errorCodes.DONE">
109
                    <div class="uk-text-right" *ngIf="fetchPublications.searchUtils.totalResults > 10">
110
                      <a [queryParams]="routerHelper.createQueryParams(['project', 'po'], [projectId, 'and'])"
111
                         routerLinkActive="router-link-active" [routerLink]="linkToSearchPublications"
112
                         class="uk-button uk-button-text">
113
                        View all {{fetchPublications.searchUtils.totalResults | number}} results
114
                      </a>
115
                    </div>
116
                    <tab-result [(results)]="fetchPublications.results"
117
                                [(status)]="fetchPublications.searchUtils.status"
118
                                type="publication" urlParam="articleId">
119
                    </tab-result>
120
                  </div>
121
                </div>
122
              </li>
123

    
124
              <li (click)="activeTab='Research Data'; searchDatasetsInit()">
125
                <a class="uk-accordion-title" href="#">
126
                  Research Data
127
                  <!-- <span class="uk-badge uk-badge-notification"> -->
128
                  ({{fetchDatasets.searchUtils.totalResults | number}})
129
                  <!-- </span> -->
130
                </a>
131
                <div class="uk-accordion-content">
132
                  <errorMessages [status]="[fetchDatasets.searchUtils.status]" [type]="'research data'"
133
                                 tab_error_class=true></errorMessages>
134

    
135
                  <div *ngIf="fetchDatasets.searchUtils.status == errorCodes.DONE">
136

    
137
                    <div class="uk-text-right" *ngIf="fetchDatasets.searchUtils.totalResults > 10">
138
                      <a [queryParams]="routerHelper.createQueryParams(['project', 'po'], [projectId, 'and'])"
139
                         routerLinkActive="router-link-active" [routerLink]="linkToSearchDatasets"
140
                         class="uk-button uk-button-text">
141
                        View all {{fetchDatasets.searchUtils.totalResults | number}} results
142
                      </a>
143
                    </div>
144
                    <tab-result [(results)]="fetchDatasets.results"
145
                                [(status)]="fetchDatasets.searchUtils.status"
146
                                type="dataset" urlParam="datasetId">
147
                    </tab-result>
148
                  </div>
149
                </div>
150
              </li>
151

    
152
              <li (click)="activeTab='Software'; searchSoftwareInit()">
153
                <a class="uk-accordion-title" href="#">
154
                  Software
155
                  <!-- <span class="uk-badge uk-badge-notification"> -->
156
                  ({{fetchSoftware.searchUtils.totalResults | number}})
157
                  <!-- </span> -->
158
                </a>
159
                <div class="uk-accordion-content">
160
                  <errorMessages [status]="[fetchSoftware.searchUtils.status]" [type]="'software'"
161
                                 tab_error_class=true></errorMessages>
162

    
163
                  <div *ngIf="fetchSoftware.searchUtils.status == errorCodes.DONE">
164

    
165
                    <div class="uk-text-right" *ngIf="fetchSoftware.searchUtils.totalResults > 10">
166
                      <a [queryParams]="routerHelper.createQueryParams(['project', 'po'], [projectId, 'and'])"
167
                         routerLinkActive="router-link-active" [routerLink]="linkToSearchSoftware"
168
                         class="uk-button uk-button-text">
169
                        View all {{fetchSoftware.searchUtils.totalResults | number}} results
170
                      </a>
171
                    </div>
172
                    <tab-result [(results)]="fetchSoftware.results"
173
                                [(status)]="fetchSoftware.searchUtils.status"
174
                                type="software" urlParam="softwareId">
175
                    </tab-result>
176
                  </div>
177
                </div>
178
              </li>
179

    
180
              <li (click)="activeTab='Other Research Products'; searchOrpsInit()">
181
                <a class="uk-accordion-title" href="#">
182
                  Other Research Products
183
                  <!-- <span class="uk-badge uk-badge-notification"> -->
184
                  ({{fetchOrps.searchUtils.totalResults | number}})
185
                  <!-- </span> -->
186
                </a>
187
                <div class="uk-accordion-content">
188
                  <errorMessages [status]="[fetchOrps.searchUtils.status]" [type]="'other research products'"
189
                                 tab_error_class=true></errorMessages>
190

    
191
                  <div *ngIf="fetchOrps.searchUtils.status == errorCodes.DONE">
192

    
193
                    <div class="uk-text-right" *ngIf="fetchOrps.searchUtils.totalResults > 10">
194
                      <a [queryParams]="routerHelper.createQueryParams(['project', 'po'], [projectId, 'and'])"
195
                         routerLinkActive="router-link-active" [routerLink]="linkToSearchOrps"
196
                         class="uk-button uk-button-text">
197
                        View all {{fetchOrps.searchUtils.totalResults | number}} results
198
                      </a>
199
                    </div>
200
                    <tab-result [(results)]="fetchOrps.results"
201
                                [(status)]="fetchOrps.searchUtils.status"
202
                                type="other" urlParam="orpId">
203
                    </tab-result>
204
                  </div>
205
                </div>
206
              </li>
207

    
208
              <li (click)="activeTab='Statistics'; statsClicked=true">
209
                <a class="uk-accordion-title" href="#">
210
                  Statistics
211
                </a>
212
                <div class="uk-accordion-content">
213
                  <errorMessages [status]="[fetchPublications.searchUtils.status, fetchDatasets.searchUtils.status]"
214
                                 [type]="'statistics'" tab_error_class=true></errorMessages>
215

    
216
                  <div
217
                    *ngIf="statsClicked && (fetchPublications.searchUtils.status == errorCodes.DONE || fetchDatasets.searchUtils.status == errorCodes.DONE)">
218

    
219
                    <div>
220
                      <p class="uk-text-bold">Research Results</p>
221
                      <i-frame [url]=chartScientificResultsUrl></i-frame>
222
                      <p class="uk-text-bold">Access Mode of Research Results</p>
223
                      <i-frame [url]=chartAccessModeUrl></i-frame>
224
                      <p class="uk-text-bold">By Datasource of Research Results</p>
225
                      <i-frame [url]=chartDatasourcesUrl></i-frame>
226
                    </div>
227
                  </div>
228
                </div>
229
              </li>
230

    
231
              <li (click)="metricsClicked=true; activeTab='Metrics'">
232
                <a class="uk-accordion-title" href="#">
233
                  Metrics
234
                </a>
235
                <div class="uk-accordion-content">
236
                  <metrics *ngIf="metricsClicked" [pageViews]="pageViews"
237
                           [id]="projectId" [entityType]="'projects'" [entity]="'Project'"
238
                           (metricsResults)="metricsResults($event)" [properties]=properties>
239
                  </metrics>
240
                  <i-frame *ngIf="metricsClicked && totalViews > 0"
241
                           [url]=viewsFrameUrl >
242
                  </i-frame>
243
                  <i-frame *ngIf="metricsClicked && totalDownloads > 0"
244
                           [url]=downloadsFrameUrl>
245
                  </i-frame>
246
                </div>
247
              </li>
248
            </ul>
249

    
250

    
251
            <!-- <ul class="uk-tab uk-visible@m" uk-tab="connect: #tab-content">
252
                <li (click)="activeTab='Publications'" [class]="activeTab == 'Publications'?'uk-active':''">
253
                    <a>
254
                        Publications
255
                        <span class="uk-badge uk-badge-notification">
256
                            {{fetchPublications.searchUtils.totalResults | number}}
257
                        </span>
258
                    </a>
259
                </li>
260
                <li (click)="activeTab='Research Data'; searchDatasetsInit()"
261
                    [class]="activeTab == 'Research Data'?'uk-active':''">
262
                    <a>
263
                        Research Data
264
                        <span class="uk-badge uk-badge-notification">
265
                            {{fetchDatasets.searchUtils.totalResults | number}}
266
                        </span>
267
                    </a>
268
                </li>
269
                <li (click)="activeTab='Software'; searchSoftwareInit()"
270
                    [class]="activeTab == 'Software'?'uk-active':''">
271
                    <a>
272
                        Software
273
                        <span class="uk-badge uk-badge-notification">
274
                            {{fetchSoftware.searchUtils.totalResults | number}}
275
                        </span>
276
                    </a>
277
                </li>
278
                <li (click)="activeTab='Statistics'; statsClicked=true"
279
                    [class]="activeTab == 'Statistics'?'uk-active':''">
280
                    <a>
281
                        Statistics
282

    
283
                    </a>
284
                </li>
285
                <li (click)="activeTab='Metrics'; metricsClicked=true"
286
                    [class]="activeTab == 'Metrics'?'uk-active':''">
287
                    <a>
288
                        Metrics
289
                    </a>
290
                </li>
291
            </ul> -->
292

    
293
            <!-- <button class="uk-button uk-button-default uk-hidden@m" type="button">
294
              <span uk-navbar-toggle-icon></span> <span class="uk-margin-small-left">{{activeTab}}</span>
295
            </button>
296

    
297
            <ul id="toggle-small-tabs" class="uk-subnav uk-subnav-pill uk-dropdown uk-hidden@m" uk-switcher="connect: #tab-content" uk-dropdown="mode: click" uk-toggle="target: #toggle-small-tabs">
298
              <li (click)="activeTab='Publications'" [class]="activeTab == 'Publications'?'uk-active':''">
299
                  <a>
300
                      Publications
301
                      <span class="uk-badge uk-badge-notification">
302
                          {{fetchPublications.searchUtils.totalResults | number}}
303
                      </span>
304
                  </a>
305
              </li>
306
              <li (click)="searchDatasetsInit(); activeTab='Research Data'"
307
                  [class]="activeTab == 'Research Data'?'uk-active':''">
308
                  <a>
309
                      Research Data
310
                      <span class="uk-badge uk-badge-notification">
311
                          {{fetchDatasets.searchUtils.totalResults | number}}
312
                      </span>
313
                  </a>
314
              </li>
315
              <li (click)="searchSoftwareInit(); activeTab='Software'"
316
                  [class]="activeTab == 'Software'?'uk-active':''">
317
                  <a>
318
                      Software
319
                      <span class="uk-badge uk-badge-notification">
320
                          {{fetchSoftware.searchUtils.totalResults | number}}
321
                      </span>
322
                  </a>
323
              </li>
324
              <li (click)="statsClicked=true; activeTab='Statistics'"
325
                  [class]="activeTab == 'Statistics'?'uk-active':''">
326
                  <a>
327
                      Statistics
328
                  </a>
329
              </li>
330
              <li (click)="metricsClicked=true; activeTab='Metrics'"
331
                  [class]="activeTab == 'Metrics'?'uk-active':''">
332
                  <a>
333
                      Metrics
334
                  </a>
335
              </li>
336
            </ul> -->
337

    
338
            <!-- <div class="uk-margin custom-tab-content">
339

    
340
                <div *ngIf="activeTab=='Publications'" class="uk-animation-fade">
341
                    <errorMessages [status]="[fetchPublications.searchUtils.status]" [type]="'publications'"></errorMessages>
342

    
343
                    <div *ngIf="fetchPublications.searchUtils.totalResults > 0">
344
                        <div class = "uk-text-right" *ngIf = "fetchPublications.searchUtils.totalResults > 10" >
345
                            <a  [queryParams]="routerHelper.createQueryParams(['project', 'po'], [projectId, 'and'])"
346
                                routerLinkActive="router-link-active" [routerLink]="linkToSearchPublications" class="uk-button uk-button-text">
347
                                View all {{fetchPublications.searchUtils.totalResults | number}} results
348
                            </a>
349
                        </div>
350
                        <tab-result  [(results)]="fetchPublications.results"
351
                                        [(status)]= "fetchPublications.searchUtils.status"
352
                                        type="publication" urlParam="articleId">
353
                        </tab-result>
354
                    </div>
355
                </div>
356

    
357
                <div *ngIf="activeTab == 'Research Data'" class="uk-animation-fade">
358
                    <errorMessages [status]="[fetchDatasets.searchUtils.status]" [type]="'research data'"></errorMessages>
359

    
360
                    <div *ngIf="fetchDatasets.searchUtils.totalResults > 0">
361

    
362
                        <div class = "uk-text-right" *ngIf = "fetchDatasets.searchUtils.totalResults > 10">
363
                            <a [queryParams]="routerHelper.createQueryParams(['project', 'po'], [projectId, 'and'])"
364
                                routerLinkActive="router-link-active" [routerLink]="linkToSearchDatasets" class="uk-button uk-button-text">
365
                                View all {{fetchDatasets.searchUtils.totalResults | number}} results
366
                            </a>
367
                        </div>
368
                        <tab-result  [(results)]="fetchDatasets.results"
369
                                        [(status)]= "fetchDatasets.searchUtils.status"
370
                                        type="dataset" urlParam="datasetId">
371
                        </tab-result>
372
                    </div>
373
                </div>
374
                <div *ngIf="activeTab == 'Software'" class="uk-animation-fade">
375
                    <errorMessages [status]="[fetchSoftware.searchUtils.status]" [type]="'software'"></errorMessages>
376

    
377
                    <div *ngIf="fetchSoftware.searchUtils.totalResults > 0">
378

    
379
                        <div class = "uk-text-right" *ngIf = "fetchSoftware.searchUtils.totalResults > 10">
380
                            <a [queryParams]="routerHelper.createQueryParams(['project', 'po'], [projectId, 'and'])"
381
                                routerLinkActive="router-link-active" [routerLink]="linkToSearchSoftware" class="uk-button uk-button-text">
382
                                View all {{fetchSoftware.searchUtils.totalResults | number}} results
383
                            </a>
384
                        </div>
385
                        <tab-result  [(results)]="fetchSoftware.results"
386
                                        [(status)]= "fetchSoftware.searchUtils.status"
387
                                        type="software" urlParam="softwareId">
388
                        </tab-result>
389
                    </div>
390
                </div>
391
                <div *ngIf="activeTab == 'Statistics'" class="uk-animation-fade">
392
                  <errorMessages [status]="[fetchPublications.searchUtils.status, fetchDatasets.searchUtils.status]" [type]="'statistics'"></errorMessages>
393

    
394
                  <div *ngIf="statsClicked && (fetchPublications.searchUtils.totalResults != 0 || fetchDatasets.searchUtils.totalResults != 0)">
395

    
396
                      <div>
397
                        <p class="uk-text-bold">Research Results</p>
398
                        <i-frame  [url]=chartScientificResultsUrl width="100%" height="350"></i-frame>
399
                        <p class="uk-text-bold">Access Mode of Research Results</p>
400
                        <i-frame [url]=chartAccessModeUrl width="100%" height="350"></i-frame>
401
                        <p class="uk-text-bold">By Datasource of Research Results</p>
402
                        <i-frame  [url]=chartDatasourcesUrl width="100%" height="350"></i-frame>
403
                      </div>
404
                  </div>
405
                </div>
406
                <div *ngIf="activeTab=='Metrics'" class="uk-animation-fade">
407

    
408
                    <metrics [pageViews]="pageViews"
409
                        [id]="projectId" [entityType]="'projects'" [entity]="'Project'"
410
                        (metricsResults)="metricsResults($event)" [(properties)] = properties>
411
                    </metrics>
412
                    <i-frame *ngIf="metricsClicked && totalViews > 0"
413
                        [url]=viewsFrameUrl width="100%" height="250">
414
                    </i-frame>
415
                    <i-frame *ngIf="metricsClicked && totalDownloads > 0"
416
                        [url]=downloadsFrameUrl width="100%" height="250">
417
                    </i-frame>
418
                </div>
419
          </div> -->
420
          </div>
421

    
422

    
423
          <div class="uk-width-1-3@m uk-width-1-1@s">
424
            <div class="uk-card uk-card-default uk-padding-small">
425
              <div *ngIf="isRouteAvailable('participate/direct-claim') " class=" uk-margin-small-bottom">
426

    
427
                <button class="   uk-button portal-button uk-margin-small-top uk-width-1-1">
428
              <span class="uk-icon">
429
                   <svg icon="link" ratio="1" xmlns="http://www.w3.org/2000/svg" width="25" viewBox="0 0 20 20"
430
                        height="25"><path
431
                     d="M10.625,12.375 L7.525,15.475 C6.825,16.175 5.925,16.175 5.225,15.475 L4.525,14.775 C3.825,14.074 3.825,13.175 4.525,12.475 L7.625,9.375"
432
                     fill="none" stroke="#000" stroke-width="1.1"></path><path
433
                     d="M9.325,7.375 L12.425,4.275 C13.125,3.575 14.025,3.575 14.724,4.275 L15.425,4.975 C16.125,5.675 16.125,6.575 15.425,7.275 L12.325,10.375"
434
                     fill="none" stroke="#000" stroke-width="1.1"></path><path d="M7.925,11.875 L11.925,7.975"
435
                                                                               fill="none" stroke="#000"
436
                                                                               stroke-width="1.1"></path></svg>
437
                 </span> Link this project to...
438
                </button>
439

    
440

    
441
                <div class="  uk-text-center uk-margin-expand uk-padding-small    uk-margin-auto  default-dropdown "
442
                     uk-dropdown="mode:click">
443
                  <div class="uk-grid    uk-child-width-1-3  uk-width-large ">
444

    
445
                    <div><a
446
                      [queryParams]="routerHelper.createQueryParams(['id','type','linkTo'],[projectId,'project','result'])"
447
                      routerLinkActive="router-link-active" routerLink="/participate/direct-claim">
448
                      <button class="uk-icon-button portal-button">
449
                      <span class="uk-icon">
450
                           <svg height="20" icon="copy" ratio="1" viewBox="0 0 20 20" width="20"
451
                                xmlns="http://www.w3.org/2000/svg"><rect fill="none" height="16" stroke="#000"
452
                                                                         width="12" x="3.5" y="2.5"></rect><polyline
453
                             fill="none" points="5 0.5 17.5 0.5 17.5 17" stroke="#000"></polyline></svg></span>
454
                      </button>
455
                      <div>Research results</div>
456
                    </a></div>
457

    
458
                  </div>
459
                </div>
460
              </div>
461

    
462
              <div>
463
                <div class="sideInfoTitle uk-margin-small-bottom uk-margin-small-top">Share - Bookmark</div>
464
                <addThis></addThis>
465
              </div>
466
              <div class="uk-margin-medium-top uk-margin-medium-bottom  uk-margin-medium-top">
467
                <div class="uk-text-center uk-text-large">
468
                  Application Box
469
                </div>
470
                <div class="app-box">
471
                  <ul class="uk-tab" uk-tab="connect: #tab-app-box-project">
472
                    <li>
473
                      <a>Publications</a>
474
                    </li>
475
                    <li>
476
                      <a>Research Data</a>
477
                    </li>
478
                  </ul>
479
                  <ul id="tab-app-box-project" class="uk-switcher uk-margin uk-padding-small">
480
                    <li class="uk-animation-fade">
481
                      <!-- Publication box-->
482
                      <ul class="uk-list">
483
                        <li>
484
                          <a class="clickable"
485
                             uk-toggle="target: #publications_dynamic; animation:uk-animation-fade"><span
486
                            class="uk-icon"><svg width="20" height="20" viewBox="0 0 20 20"
487
                                                 xmlns="http://www.w3.org/2000/svg" icon="code" ratio="1"><polyline
488
                            fill="none" stroke="#000" stroke-width="1.01" points="13,4 19,10 13,16"></polyline><polyline
489
                            fill="none" stroke="#000" stroke-width="1.01"
490
                            points="7,4 1,10 7,16"></polyline></svg></span> Include in your site (HTML)</a>
491
                          <div hidden id="publications_dynamic"
492
                               class="widget-box uk-padding-small uk-card uk-card-default ">
493
                            <div
494
                              class="  uk-alert uk-alert-primary uk-padding-small uk-margin-remove-bottom uk-margin-right">
495
                              For further information please contact us <a
496
                              href="mailto:helpdesk@openaire.eu">helpdesk@openaire.eu</a>
497
                            </div>
498
                            <div class="uk-grid">
499
                              <a
500
                                class="    publ_clipboard_btn uk-padding-remove-left uk-margin-small-left uk-text-right uk-width-1-1 "
501
                                data-clipboard-target="#publ_clipboard" title="Copy to clipboard">
502
                                <span class="uk-icon"><svg width="20" height="20" viewBox="0 0 20 20"
503
                                                           xmlns="http://www.w3.org/2000/svg" icon="copy" ratio="1"><rect
504
                                  fill="none" stroke="#000" x="3.5" y="2.5" width="12" height="16"></rect><polyline
505
                                  fill="none" stroke="#000" points="5 0.5 17.5 0.5 17.5 17"></polyline></svg></span>
506
                              </a>
507
                            </div>
508

    
509
                            <pre class="box-content uk-padding-remove-bottom uk-margin-remove-bottom"><code
510
                              id="publ_clipboard">{{publications_dynamic}}</code></pre>
511
                          </div>
512
                        </li>
513
                        <li>
514
                          <a target="_blank"
515
                             href="/project-report?projectId={{projectId}}&size={{fetchPublications.searchUtils.totalResults}}&type=publication">
516
                            <span class="uk-icon"><svg width="20" height="20" viewBox="0 0 20 20"
517
                                                       xmlns="http://www.w3.org/2000/svg" icon="table" ratio="1"><rect
518
                              x="1" y="3" width="18" height="1"></rect><rect x="1" y="7" width="18" height="1"></rect><rect
519
                              x="1" y="11" width="18" height="1"></rect><rect x="1" y="15" width="18" height="1"></rect></svg></span>
520
                            Get {{projectInfo.funder}} report (HTML)
521
                          </a>
522
                        </li>
523
                        <li>
524
                          <a class="clickable"
525
                             (click)="downloadfile(downloadURLAPI+csvParams, 'funder-publications-report')">
526
                            <span class="uk-icon"><svg width="20" height="20" viewBox="0 0 20 20"
527
                                                       xmlns="http://www.w3.org/2000/svg" icon="download" ratio="1"><polyline
528
                              fill="none" stroke="#000" points="14,10 9.5,14.5 5,10"></polyline><rect x="3" y="17"
529
                                                                                                      width="13"
530
                                                                                                      height="1"></rect><line
531
                              fill="none" stroke="#000" x1="9.5" y1="13.91" x2="9.5" y2="3"></line></svg></span>
532
                            Get {{projectInfo.funder}} report (CSV)
533
                          </a>
534
                        </li>
535
                        <li *ngIf="isRouteAvailable('participate/deposit-publications') ">
536
                          <a routerLinkActive="router-link-active" routerLink="/participate/deposit-publications">
537
                             <span class="uk-icon">
538
<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg" ratio="1"><polyline fill="none"
539
                                                                                                       stroke="#000"
540
                                                                                                       points="5 8 9.5 3.5 14 8 "></polyline><rect
541
  x="3" y="17" width="13" height="1"></rect><line fill="none" stroke="#000" x1="9.5" y1="15" x2="9.5"
542
                                                  y2="4"></line></svg>
543
</span> Deposit
544
                          </a>
545
                        </li>
546
                      </ul>
547
                    </li>
548
                    <li class="uk-animation-fade">
549
                      <!-- Dataset box-->
550
                      <ul class="uk-list">
551
                        <li>
552
                          <a class="clickable" uk-toggle="target: #datasets_dynamic; animation:uk-animation-fade"><span
553
                            class="uk-icon"><svg width="20" height="20" viewBox="0 0 20 20"
554
                                                 xmlns="http://www.w3.org/2000/svg" icon="code" ratio="1"><polyline
555
                            fill="none" stroke="#000" stroke-width="1.01" points="13,4 19,10 13,16"></polyline><polyline
556
                            fill="none" stroke="#000" stroke-width="1.01"
557
                            points="7,4 1,10 7,16"></polyline></svg></span> Include in your site (HTML) </a>
558
                          <div hidden id="datasets_dynamic"
559
                               class="widget-box uk-padding-small uk-card uk-card-default ">
560
                            <div
561
                              class="  uk-alert uk-alert-primary uk-padding-small uk-margin-remove-bottom uk-margin-right">
562
                              For further information please contact us <a
563
                              href="mailto:helpdesk@openaire.eu">helpdesk@openaire.eu</a>
564
                            </div>
565
                            <div class="uk-grid">
566
                              <a
567
                                class="    datasets_clipboard_btn uk-padding-remove-left uk-margin-small-left uk-text-right uk-width-1-1 "
568
                                data-clipboard-target="#datasets_clipboard" title="Copy to clipboard">
569
                                <span class="uk-icon"><svg width="20" height="20" viewBox="0 0 20 20"
570
                                                           xmlns="http://www.w3.org/2000/svg" icon="copy" ratio="1"><rect
571
                                  fill="none" stroke="#000" x="3.5" y="2.5" width="12" height="16"></rect><polyline
572
                                  fill="none" stroke="#000" points="5 0.5 17.5 0.5 17.5 17"></polyline></svg></span>
573
                              </a>
574
                            </div>
575
                            <pre class="box-content uk-padding-remove-bottom uk-margin-remove-bottom"><code
576
                              id="datasets_clipboard">{{datasets_dynamic}}</code></pre>
577
                          </div>
578
                        </li>
579
                        <li>
580
                          <a target="_blank"
581
                             href="/project-report?projectId={{projectId}}&size={{fetchDatasets.searchUtils.totalResults}}&type=dataset">
582
                            <span class="uk-icon"><svg width="20" height="20" viewBox="0 0 20 20"
583
                                                       xmlns="http://www.w3.org/2000/svg" icon="table" ratio="1"><rect
584
                              x="1" y="3" width="18" height="1"></rect><rect x="1" y="7" width="18" height="1"></rect><rect
585
                              x="1" y="11" width="18" height="1"></rect><rect x="1" y="15" width="18" height="1"></rect></svg></span>
586
                            Get {{projectInfo.funder}} report (HTML)
587
                          </a>
588
                        </li>
589
                        <li>
590
                          <a class="clickable"
591
                             (click)="downloadfile(downloadURLAPI+csvParamsDatasets, 'funder-research-data-report')">
592
                            <span class="uk-icon"><svg width="20" height="20" viewBox="0 0 20 20"
593
                                                       xmlns="http://www.w3.org/2000/svg" icon="download" ratio="1"><polyline
594
                              fill="none" stroke="#000" points="14,10 9.5,14.5 5,10"></polyline><rect x="3" y="17"
595
                                                                                                      width="13"
596
                                                                                                      height="1"></rect><line
597
                              fill="none" stroke="#000" x1="9.5" y1="13.91" x2="9.5" y2="3"></line></svg></span>
598
                            Get {{projectInfo.funder}} report (CSV)
599
                          </a>
600
                        </li>
601
                        <li *ngIf="isRouteAvailable('participate/deposit-datasets') ">
602
                          <a routerLinkActive="router-link-active" routerLink="/participate/deposit-datasets">
603
                              <span class="uk-icon">
604
                              <svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"
605
                                   ratio="1"><polyline fill="none" stroke="#000" points="5 8 9.5 3.5 14 8 "></polyline><rect
606
                                x="3" y="17" width="13" height="1"></rect><line fill="none" stroke="#000" x1="9.5"
607
                                                                                y1="15" x2="9.5" y2="4"></line></svg>
608
                              </span> Deposit
609
                          </a>
610
                        </li>
611
                      </ul>
612
                    </li>
613
                  </ul>
614

    
615

    
616
                </div>
617
                <!--metrics [pageViews]="pageViews" shortView=true
618
                                [id]="projectId" [entityType]="'projects'" [entity]="'Project'"
619
                                (metricsResults)="metricsResults($event)" [(properties)] = properties>
620
                            </metrics-->
621

    
622

    
623
              </div>
624

    
625
            </div>
626
          </div>
627
        </div>
628
        <helper *ngIf="pageContents && pageContents['bottom'] && pageContents['bottom'].length > 0"
629
                [texts]="pageContents['bottom']"></helper>
630

    
631
        <modal-loading></modal-loading>
632
        <modal-alert #AlertModalCsvError></modal-alert>
633

    
634
      </div>
635
    </div>
636
  </div>
637
</div>
(1-1/5)