Project

General

Profile

1
<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
    <div class="uk-position-cover" style="background-color: rgba(255, 255, 255, 0.37);"></div>
7
    <div class="uk-container">
8
      <div class="uk-position-relative">
9

    
10

    
11
        <div class="uk-container">
12
          <div class="uk-width-1-1">
13

    
14
            <advanced-search-form
15
              entityType="all"
16

    
17
              (queryChange)="keywordChanged($event)"
18
              [isDisabled]="disableForms"
19
              [simpleView]="true" [formPlaceholderText]="formPlaceholderText"
20

    
21
              [selectedFields]="selectedFields" [showAdvancedSearchLink]="true"
22
              [fieldIdsMap]="fieldIdsMap" [fieldIds]="fieldIds" [entitiesSelection]="true" [customFilter]="customFilter"
23
            >
24
            </advanced-search-form>
25
          </div>
26

    
27

    
28
        </div>
29
      </div>
30
    </div>
31
  </div>
32
</div>
33
<schema2jsonld *ngIf="name && logoURL" [URL]="properties.baseLink+'/search/find'"
34
               [logoURL]="properties.baseLink+logoURL" type="search" [name]=name
35
               description="Search for research outcomes (publications, datasets, software, other research products), projects, organizations, content providers in the OpenAIRE Research Graph.  "></schema2jsonld>
36
<div class="uk-container-large uk-container">
37

    
38
  <ul class=" portalTabs uk-tab  uk-width-1-1 " uk-tab="animation: uk-animation-fade">
39
    <li *ngIf="showPublications || showDatasets || showOrps || showSoftware" (click)="entityChanged('result')"
40
        [class]="activeEntity == 'result'?'uk-active':''">
41
      <a>
42
        Research outcomes
43
        <span *ngIf=" fetchPublications.searchUtils.totalResults!=null">
44
          ({{fetchPublications.searchUtils.totalResults | number}})</span>
45
      </a>
46
    </li>
47
    <li *ngIf="showProjects" (click)="entityChanged('projects')" [class]="activeEntity == 'projects'?'uk-active':''">
48
      <a>
49
        Projects
50
        <span *ngIf="fetchProjects.searchUtils.totalResults!=null">
51
          ({{fetchProjects.searchUtils.totalResults | number}})</span>
52
      </a>
53
    </li>
54
    <li *ngIf="showDataProviders" (click)="entityChanged('datasources')"
55
        [class]="activeEntity == 'datasources'?'uk-active':''">
56
      <a>
57
        Content Providers
58
        <span *ngIf="fetchDataproviders.searchUtils.totalResults!=null">
59
          ({{fetchDataproviders.searchUtils.totalResults | number}})</span>
60
      </a>
61
    </li>
62
    <li *ngIf="showOrganizations" (click)="entityChanged('organizations')"
63
        [class]="activeEntity == 'organizations'?'uk-active':''">
64
      <a>
65
        Organizations
66
        <span *ngIf="fetchOrganizations.searchUtils.totalResults!=null">
67
          ({{fetchOrganizations.searchUtils.totalResults | number}})</span>
68
      </a>
69
    </li>
70
  </ul>
71
<!--  <quick-selections *ngIf="activeEntity == 'result' && quickFilter" [resultTypes]="resultTypes"
72
                    (typeChange)="quickSelectionsChanged()"  [isDisabled]="disableForms"
73
                    [quickFilter]="quickFilter" [QFselected]="(quickFilter)?quickFilter.selected:null"
74
                    [properties]="properties">
75
  </quick-selections>-->
76

    
77
</div>
78

    
79
<search-research-results *ngIf="activeEntity == 'result'" resultType="result" [includeOnlyResultsAndFilter]="true"
80
                         (searchPageUpdates)="activeEntityUpdate($event)" [showAdvancedSearchLink]="false"
81
                         simpleSearchLink="/search/find"></search-research-results>
82

    
83
<search-projects *ngIf="activeEntity == 'projects'" [includeOnlyResultsAndFilter]="true"  [showAdvancedSearchLink]="false"
84
                 (searchPageUpdates)="activeEntityUpdate($event)"
85
                 simpleSearchLink="/search/find">
86
</search-projects>
87

    
88
<search-organizations *ngIf="activeEntity == 'organizations'" [includeOnlyResultsAndFilter]="true"  [showAdvancedSearchLink]="false"
89
                      (searchPageUpdates)="activeEntityUpdate($event)"
90
                      simpleSearchLink="/search/find">
91
</search-organizations>
92

    
93
<search-dataproviders *ngIf="activeEntity == 'datasources'" [includeOnlyResultsAndFilter]="true"  [showAdvancedSearchLink]="false"
94
                      (searchPageUpdates)="activeEntityUpdate($event)"
95
                      simpleSearchLink="/search/find">
96
</search-dataproviders>
(4-4/6)