Project

General

Profile

1
<div>
2

    
3
  <ul uk-tab class="uk-tab-large">
4
    <li><a href="#">PID</a></li>
5
    <li><a href="#">Licence</a></li>
6
  </ul>
7

    
8
  <ul class="uk-switcher uk-margin">
9
    <li>
10
      <div class="pidIndicator">
11
        <div class="uk-grid uk-child-width-1-2@m uk-child-width-1-2@l uk-child-width-1-1@s">
12

    
13
          <div class="uk-grid-margin">
14
            <div class="md-card chartCard">
15
              <div class="md-card-content">
16
                <iframe *ngIf="otherWithPIDTimeline" width="100%" height="550" [src]="otherWithPIDTimeline"></iframe>
17
              </div>
18
            </div>
19
          </div>
20

    
21
          <div class="uk-grid-margin">
22
            <div class="md-card chartCard">
23
              <div class="md-card-content">
24

    
25
                <!--MOBILE & PAD PORTRAIT-->
26
                <div class="uk-hidden@m">
27
                  <div class="uk-flex uk-flex-right uk-flex-middle uk-margin-bottom">
28
                    <label class="uk-margin-right">Show by: </label>
29
                    <select class="md-input" #selectPIDGroupBy (change)="getOtherWithPIDGroupByMobile(selectPIDGroupBy.value)" style="width: 230px; display: inline-block">
30
                      <option value="datasource">datasource</option>
31
                      <option value="organization">organization</option>
32
                      <option value="funder">funder</option>
33
                    </select>
34
                  </div>
35

    
36
                  <iframe *ngIf="otherWithPIDGroupByView==='datasource' && otherWithPIDByDatasourceChartURLMobile"
37
                          width="100%" height="550" [src]="otherWithPIDByDatasourceChartURLMobile"></iframe>
38
                  <iframe *ngIf="otherWithPIDGroupByView==='organization' && otherWithPIDByOrganizationChartURLMobile"
39
                          width="100%" height="550" [src]="otherWithPIDByOrganizationChartURLMobile"></iframe>
40
                  <app-treemap-highchart *ngIf="otherWithPIDGroupByView==='funder' && otherWithPIDByFunderData"
41
                                         [chartTitle]="'OA Other research products with PID by funder'"
42
                                         [chartData]="otherWithPIDByFunderData" [color]="otherResearchProductsColor"></app-treemap-highchart>
43

    
44
                </div>
45

    
46
                <!--LAPTOP & PAD LANDSCAPE-->
47
                <div class="uk-visible@m">
48
                  <ul class="uk-subnav uk-subnav-pill uk-flex uk-flex-right uk-flex-middle uk-margin-bottom" uk-margin
49
                      data-uk-switcher="{connect:'#switcher-content-a-fade-publications', animation: 'fade'}">
50
                    <li class="uk-active"><a (click)="getOtherWithPIDGroupBy('datasource')">Datasource</a></li>
51
                    <li><a (click)="getOtherWithPIDGroupBy('organization')">Organization</a></li>
52
                    <li><a (click)="getOtherWithPIDGroupBy('funder')">Funder</a></li>
53
                  </ul>
54

    
55
                  <ul id="switcher-content-a-fade-publications" class="uk-switcher uk-margin">
56
                    <li aria-hidden="false" style="animation-duration: 200ms;" class="uk-active">
57
                      <iframe *ngIf="otherWithPIDByDatasourceChartURL"
58
                              width="100%" height="350" [src]="otherWithPIDByDatasourceChartURL"></iframe>
59
                    </li>
60
                    <li aria-hidden="true" style="animation-duration: 200ms;" class="">
61
                      <iframe *ngIf="otherWithPIDByOrganizationChartURL"
62
                              width="100%" height="350" [src]="otherWithPIDByOrganizationChartURL"></iframe>
63
                    </li>
64
                    <li aria-hidden="true" style="animation-duration: 200ms;" class="">
65
                      <app-treemap-highchart *ngIf="otherWithPIDByFunderData"
66
                                             [chartTitle]="'OA Other research products with PID by funder'"
67
                                             [chartData]="otherWithPIDByFunderData" [color]="otherResearchProductsColor"></app-treemap-highchart>
68
                    </li>
69
                  </ul>
70
                </div>
71

    
72
              </div>
73
            </div>
74
          </div>
75

    
76
        </div>
77
      </div>
78
    </li>
79
    <li>
80
      <div class="licenceIndicator">
81
        <div class="uk-grid uk-child-width-1-2@m uk-child-width-1-2@l uk-child-width-1-1@s">
82

    
83
          <div class="uk-grid-margin">
84
            <div class="md-card chartCard">
85
              <div class="md-card-content">
86
                <iframe *ngIf="otherWithLicenceTimeline" width="100%" height="550" [src]="otherWithLicenceTimeline"></iframe>
87
              </div>
88
            </div>
89
          </div>
90

    
91
          <div class="uk-grid-margin">
92
            <div class="md-card chartCard">
93
              <div class="md-card-content">
94

    
95
                <!--MOBILE & PAD PORTRAIT-->
96
                <div class="uk-hidden@m">
97
                  <div class="uk-flex uk-flex-right uk-flex-middle uk-margin-bottom">
98
                    <label class="uk-margin-right">Show by: </label>
99
                    <select class="md-input" #selectLicenceGroupBy (change)="getOtherWithLicenceGroupByMobile(selectLicenceGroupBy.value)" style="width: 230px; display: inline-block">
100
                      <option value="datasource">datasource</option>
101
                      <option value="organization">organization</option>
102
                      <option value="funder">funder</option>
103
                    </select>
104
                  </div>
105

    
106
                  <iframe *ngIf="otherWithLicenceGroupByView==='datasource' && otherWithLicenceByDatasourceChartURLMobile"
107
                          width="100%" height="550" [src]="otherWithLicenceByDatasourceChartURLMobile"></iframe>
108
                  <iframe *ngIf="otherWithLicenceGroupByView==='organization' && otherWithLicenceByOrganizationChartURLMobile"
109
                          width="100%" height="550" [src]="otherWithLicenceByOrganizationChartURLMobile"></iframe>
110
                  <app-treemap-highchart *ngIf="otherWithLicenceGroupByView==='funder' && otherWithLicenceByFunderData"
111
                                         [chartTitle]="'OA Other research products with licence by funder'"
112
                                         [chartData]="otherWithLicenceByFunderData" [color]="otherResearchProductsColor"></app-treemap-highchart>
113

    
114
                </div>
115

    
116
                <!--LAPTOP & PAD LANDSCAPE-->
117
                <div class="uk-visible@m">
118
                  <ul class="uk-subnav uk-subnav-pill uk-flex uk-flex-right uk-flex-middle uk-margin-bottom" uk-margin
119
                      data-uk-switcher="{connect:'#switcher-content-a-fade-publications', animation: 'fade'}">
120
                    <li class="uk-active"><a (click)="getOtherWithLicenceGroupBy('datasource')">Datasource</a></li>
121
                    <li><a (click)="getOtherWithLicenceGroupBy('organization')">Organization</a></li>
122
                    <li><a (click)="getOtherWithLicenceGroupBy('funder')">Funder</a></li>
123
                  </ul>
124

    
125
                  <ul id="switcher-content-a-fade-publications" class="uk-switcher uk-margin">
126
                    <li aria-hidden="false" style="animation-duration: 200ms;" class="uk-active">
127
                      <iframe *ngIf="otherWithLicenceByDatasourceChartURL"
128
                              width="100%" height="350" [src]="otherWithLicenceByDatasourceChartURL"></iframe>
129
                    </li>
130
                    <li aria-hidden="true" style="animation-duration: 200ms;" class="">
131
                      <iframe *ngIf="otherWithLicenceByOrganizationChartURL"
132
                              width="100%" height="350" [src]="otherWithLicenceByOrganizationChartURL"></iframe>
133
                    </li>
134
                    <li aria-hidden="true" style="animation-duration: 200ms;" class="">
135
                      <app-treemap-highchart *ngIf="otherWithLicenceByFunderData"
136
                                             [chartTitle]="'OA Other research products with licence by funder'"
137
                                             [chartData]="otherWithLicenceByFunderData" [color]="otherResearchProductsColor"></app-treemap-highchart>
138
                    </li>
139
                  </ul>
140
                </div>
141

    
142
              </div>
143
            </div>
144
          </div>
145

    
146
        </div>
147
      </div>
148
    </li>
149
  </ul>
150

    
151
<!--  <div class="pidIndicator">
152
    <h3 class="uk-margin-remove">PID</h3>
153
    <div class="uk-grid uk-child-width-1-2@m uk-child-width-1-2@l uk-child-width-1-1@s">
154

    
155
      <div class="uk-grid-margin">
156
        <div class="md-card chartCard">
157
          <div class="md-card-content">
158
            <iframe *ngIf="otherWithPIDTimeline" width="100%" height="550" [src]="otherWithPIDTimeline"></iframe>
159
          </div>
160
        </div>
161
      </div>
162

    
163
      <div class="uk-grid-margin">
164
        <div class="md-card chartCard">
165
          <div class="md-card-content">
166

    
167
            &lt;!&ndash;MOBILE & PAD PORTRAIT&ndash;&gt;
168
            <div class="uk-hidden@m">
169
              <div class="uk-flex uk-flex-right uk-flex-middle uk-margin-bottom">
170
                <label class="uk-margin-right">Show by: </label>
171
                <select class="md-input" #selectPIDGroupBy (change)="getOtherWithPIDGroupByMobile(selectPIDGroupBy.value)" style="width: 230px; display: inline-block">
172
                  <option value="datasource">datasource</option>
173
                  <option value="organization">organization</option>
174
                  <option value="funder">funder</option>
175
                </select>
176
              </div>
177

    
178
              <iframe *ngIf="otherWithPIDGroupByView==='datasource' && otherWithPIDByDatasourceChartURLMobile"
179
                      width="100%" height="550" [src]="otherWithPIDByDatasourceChartURLMobile"></iframe>
180
              <iframe *ngIf="otherWithPIDGroupByView==='organization' && otherWithPIDByOrganizationChartURLMobile"
181
                      width="100%" height="550" [src]="otherWithPIDByOrganizationChartURLMobile"></iframe>
182
              <app-treemap-highchart *ngIf="otherWithPIDGroupByView==='funder' && otherWithPIDByFunderData"
183
                                     [chartTitle]="'OA Other research products with PID by funder'"
184
                                     [chartData]="otherWithPIDByFunderData" [color]="otherResearchProductsColor"></app-treemap-highchart>
185

    
186
            </div>
187

    
188
            &lt;!&ndash;LAPTOP & PAD LANDSCAPE&ndash;&gt;
189
            <div class="uk-visible@m">
190
              <ul class="uk-subnav uk-subnav-pill uk-flex uk-flex-right uk-flex-middle uk-margin-bottom" uk-margin
191
                  data-uk-switcher="{connect:'#switcher-content-a-fade-publications', animation: 'fade'}">
192
                <li class="uk-active"><a (click)="getOtherWithPIDGroupBy('datasource')">Datasource</a></li>
193
                <li><a (click)="getOtherWithPIDGroupBy('organization')">Organization</a></li>
194
                <li><a (click)="getOtherWithPIDGroupBy('funder')">Funder</a></li>
195
              </ul>
196

    
197
              <ul id="switcher-content-a-fade-publications" class="uk-switcher uk-margin">
198
                <li aria-hidden="false" style="animation-duration: 200ms;" class="uk-active">
199
                  <iframe *ngIf="otherWithPIDByDatasourceChartURL"
200
                          width="100%" height="350" [src]="otherWithPIDByDatasourceChartURL"></iframe>
201
                </li>
202
                <li aria-hidden="true" style="animation-duration: 200ms;" class="">
203
                  <iframe *ngIf="otherWithPIDByOrganizationChartURL"
204
                          width="100%" height="350" [src]="otherWithPIDByOrganizationChartURL"></iframe>
205
                </li>
206
                <li aria-hidden="true" style="animation-duration: 200ms;" class="">
207
                  <app-treemap-highchart *ngIf="otherWithPIDByFunderData"
208
                                         [chartTitle]="'OA Other research products with PID by funder'"
209
                                         [chartData]="otherWithPIDByFunderData" [color]="otherResearchProductsColor"></app-treemap-highchart>
210
                </li>
211
              </ul>
212
            </div>
213

    
214
          </div>
215
        </div>
216
      </div>
217

    
218
    </div>
219
  </div>
220

    
221
  <div class="licenceIndicator uk-margin-large-top">
222
    <h3 class="uk-margin-remove">Licence</h3>
223
    <div class="uk-grid uk-child-width-1-2@m uk-child-width-1-2@l uk-child-width-1-1@s">
224

    
225
      <div class="uk-grid-margin">
226
        <div class="md-card chartCard">
227
          <div class="md-card-content">
228
            <iframe *ngIf="otherWithLicenceTimeline" width="100%" height="550" [src]="otherWithLicenceTimeline"></iframe>
229
          </div>
230
        </div>
231
      </div>
232

    
233
      <div class="uk-grid-margin">
234
        <div class="md-card chartCard">
235
          <div class="md-card-content">
236

    
237
            &lt;!&ndash;MOBILE & PAD PORTRAIT&ndash;&gt;
238
            <div class="uk-hidden@m">
239
              <div class="uk-flex uk-flex-right uk-flex-middle uk-margin-bottom">
240
                <label class="uk-margin-right">Show by: </label>
241
                <select class="md-input" #selectLicenceGroupBy (change)="getOtherWithLicenceGroupByMobile(selectLicenceGroupBy.value)" style="width: 230px; display: inline-block">
242
                  <option value="datasource">datasource</option>
243
                  <option value="organization">organization</option>
244
                  <option value="funder">funder</option>
245
                </select>
246
              </div>
247

    
248
              <iframe *ngIf="otherWithLicenceGroupByView==='datasource' && otherWithLicenceByDatasourceChartURLMobile"
249
                      width="100%" height="550" [src]="otherWithLicenceByDatasourceChartURLMobile"></iframe>
250
              <iframe *ngIf="otherWithLicenceGroupByView==='organization' && otherWithLicenceByOrganizationChartURLMobile"
251
                      width="100%" height="550" [src]="otherWithLicenceByOrganizationChartURLMobile"></iframe>
252
              <app-treemap-highchart *ngIf="otherWithLicenceGroupByView==='funder' && otherWithLicenceByFunderData"
253
                                     [chartTitle]="'OA Other research products with licence by funder'"
254
                                     [chartData]="otherWithLicenceByFunderData" [color]="otherResearchProductsColor"></app-treemap-highchart>
255

    
256
            </div>
257

    
258
            &lt;!&ndash;LAPTOP & PAD LANDSCAPE&ndash;&gt;
259
            <div class="uk-visible@m">
260
              <ul class="uk-subnav uk-subnav-pill uk-flex uk-flex-right uk-flex-middle uk-margin-bottom" uk-margin
261
                  data-uk-switcher="{connect:'#switcher-content-a-fade-publications', animation: 'fade'}">
262
                <li class="uk-active"><a (click)="getOtherWithLicenceGroupBy('datasource')">Datasource</a></li>
263
                <li><a (click)="getOtherWithLicenceGroupBy('organization')">Organization</a></li>
264
                <li><a (click)="getOtherWithLicenceGroupBy('funder')">Funder</a></li>
265
              </ul>
266

    
267
              <ul id="switcher-content-a-fade-publications" class="uk-switcher uk-margin">
268
                <li aria-hidden="false" style="animation-duration: 200ms;" class="uk-active">
269
                  <iframe *ngIf="otherWithLicenceByDatasourceChartURL"
270
                          width="100%" height="350" [src]="otherWithLicenceByDatasourceChartURL"></iframe>
271
                </li>
272
                <li aria-hidden="true" style="animation-duration: 200ms;" class="">
273
                  <iframe *ngIf="otherWithLicenceByOrganizationChartURL"
274
                          width="100%" height="350" [src]="otherWithLicenceByOrganizationChartURL"></iframe>
275
                </li>
276
                <li aria-hidden="true" style="animation-duration: 200ms;" class="">
277
                  <app-treemap-highchart *ngIf="otherWithLicenceByFunderData"
278
                                         [chartTitle]="'OA Other research products with licence by funder'"
279
                                         [chartData]="otherWithLicenceByFunderData" [color]="otherResearchProductsColor"></app-treemap-highchart>
280
                </li>
281
              </ul>
282
            </div>
283

    
284
          </div>
285
        </div>
286
      </div>
287

    
288
    </div>
289
  </div>-->
290

    
291
</div>
(1-1/2)