Project

General

Profile

1 58115 argiro.kok
<div class="image-front-topbar  uk-section-default uk-position-relative"
2
     uk-scrollspy="{&quot;target&quot;:&quot;[uk-scrollspy-class]&quot;,&quot;cls&quot;:&quot;uk-animation-fade&quot;,&quot;delay&quot;:false}"
3
     tm-header-transparent="light">
4
  <div uk-height-viewport="offset-top: true;offset-bottom: 60" style="box-sizing: border-box;  "
5
       class=" uk-background-norepeat uk-background-cover uk-background-bottom-center uk-section uk-padding-remove-bottom uk-flex uk-flex-middle uk-background-fixed generalSearchForm">
6 53353 argiro.kok
    <div class="uk-position-cover" style="background-color: rgba(255, 255, 255, 0.37);"></div>
7
    <div class="uk-container">
8 58115 argiro.kok
      <div class="uk-position-relative">
9 50169 argiro.kok
10
11 58115 argiro.kok
        <div class="uk-container">
12
          <div class="uk-width-1-1">
13 53353 argiro.kok
14 58115 argiro.kok
            <advanced-search-form
15
              entityType="all"
16 53353 argiro.kok
17 58115 argiro.kok
              (queryChange)="keywordChanged($event)"
18
              [isDisabled]="disableForms"
19
              [simpleView]="true" [formPlaceholderText]="formPlaceholderText"
20
21
              [selectedFields]="selectedFields"
22 58391 argiro.kok
              [fieldIdsMap]="fieldIdsMap" [fieldIds]="fieldIds" [entitiesSelection]="true" [customFilter]="customFilter"
23 58115 argiro.kok
            >
24
            </advanced-search-form>
25
          </div>
26
27
28 53353 argiro.kok
        </div>
29 58115 argiro.kok
      </div>
30
    </div>
31 53353 argiro.kok
  </div>
32
</div>
33 58115 argiro.kok
<schema2jsonld *ngIf="name && logoURL" [URL]="properties.baseLink+'/search/find'"
34
               [logoURL]="properties.baseLink+logoURL" type="search" [name]=name></schema2jsonld>
35
<div class="uk-container-large uk-container">
36 53353 argiro.kok
37 58181 argiro.kok
  <ul class=" portalTabs uk-tab  uk-width-1-1 " uk-tab="animation: uk-animation-fade">
38 58115 argiro.kok
    <li *ngIf="showPublications || showDatasets || showOrps || showSoftware" (click)="entityChanged('result')"
39
        [class]="activeEntity == 'result'?'uk-active':''">
40
      <a>
41
        Research outcomes
42 58348 argiro.kok
        <span *ngIf=" fetchPublications.searchUtils.totalResults!=null">
43 58115 argiro.kok
          ({{fetchPublications.searchUtils.totalResults | number}})</span>
44
      </a>
45
    </li>
46
    <li *ngIf="showProjects" (click)="entityChanged('projects')" [class]="activeEntity == 'projects'?'uk-active':''">
47
      <a>
48
        Projects
49 58348 argiro.kok
        <span *ngIf="fetchProjects.searchUtils.totalResults!=null">
50 58115 argiro.kok
          ({{fetchProjects.searchUtils.totalResults | number}})</span>
51
      </a>
52
    </li>
53
    <li *ngIf="showDataProviders" (click)="entityChanged('datasources')"
54
        [class]="activeEntity == 'datasources'?'uk-active':''">
55
      <a>
56
        Content Providers
57 58348 argiro.kok
        <span *ngIf="fetchDataproviders.searchUtils.totalResults!=null">
58 58115 argiro.kok
          ({{fetchDataproviders.searchUtils.totalResults | number}})</span>
59
      </a>
60
    </li>
61
    <li *ngIf="showOrganizations" (click)="entityChanged('organizations')"
62
        [class]="activeEntity == 'organizations'?'uk-active':''">
63
      <a>
64
        Organizations
65 58348 argiro.kok
        <span *ngIf="fetchOrganizations.searchUtils.totalResults!=null">
66 58115 argiro.kok
          ({{fetchOrganizations.searchUtils.totalResults | number}})</span>
67
      </a>
68
    </li>
69
  </ul>
70 58525 argiro.kok
<!--  <quick-selections *ngIf="activeEntity == 'result' && quickFilter" [resultTypes]="resultTypes"
71 58115 argiro.kok
                    (typeChange)="quickSelectionsChanged()"  [isDisabled]="disableForms"
72
                    [quickFilter]="quickFilter" [QFselected]="(quickFilter)?quickFilter.selected:null"
73
                    [properties]="properties">
74 58525 argiro.kok
  </quick-selections>-->
75 53353 argiro.kok
76 58115 argiro.kok
</div>
77 50169 argiro.kok
78 58115 argiro.kok
<search-research-results *ngIf="activeEntity == 'result'" resultType="result" [includeOnlyResultsAndFilter]="true"
79
                         (searchPageUpdates)="activeEntityUpdate($event)"
80
                         simpleSearchLink="/search/find"></search-research-results>
81 50169 argiro.kok
82 58115 argiro.kok
<search-projects *ngIf="activeEntity == 'projects'" [includeOnlyResultsAndFilter]="true"
83
                 (searchPageUpdates)="activeEntityUpdate($event)"
84
                 simpleSearchLink="/search/find">
85
</search-projects>
86 50169 argiro.kok
87 58115 argiro.kok
<search-organizations *ngIf="activeEntity == 'organizations'" [includeOnlyResultsAndFilter]="true"
88
                      (searchPageUpdates)="activeEntityUpdate($event)"
89
                      simpleSearchLink="/search/find">
90
</search-organizations>
91 50169 argiro.kok
92 58115 argiro.kok
<search-dataproviders *ngIf="activeEntity == 'datasources'" [includeOnlyResultsAndFilter]="true"
93
                      (searchPageUpdates)="activeEntityUpdate($event)"
94
                      simpleSearchLink="/search/find">
95
</search-dataproviders>