423 lines
27 KiB
HTML
423 lines
27 KiB
HTML
<ng-template #selected_filters_pills>
|
|
<div class="uk-grid uk-grid-small uk-text-small" uk-grid>
|
|
<ng-container *ngIf="customFilterEnabled && customFilter && refineFields.indexOf(customFilter.queryFieldName) ==
|
|
-1 ">
|
|
<span class="uk-grid-margin">
|
|
<span class="selectedFilterLabel uk-disabled ">
|
|
<span class="">{{customFilter.valueName}}</span>
|
|
</span>
|
|
</span>
|
|
</ng-container>
|
|
<ng-container *ngIf="selectedTypesNum > 0 && resultTypes">
|
|
<ng-container *ngFor="let type of resultTypeOptions; let i = index; let end = last; ">
|
|
<ng-container *ngIf="resultTypes[type.id] == true">
|
|
<span [title]="'Remove '+ type.name" (click)="removeResultType(type.id) "
|
|
[class]="((disableForms || disableRefineForms) ? 'uk-disabled' : 'clickable') + ' uk-grid-margin'">
|
|
<span class="selectedFilterLabel ">
|
|
<a class="uk-link-text">
|
|
<span aria-hidden="true">
|
|
<span class="uk-icon">
|
|
<svg width="16" height="16" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg" icon="close"
|
|
ratio="0.8"><path fill="none" stroke="#000" stroke-width="1.6" d="M16,16 L4,4"></path><path
|
|
fill="none" stroke="#000" stroke-width="1.6" d="M16,4 L4,16"></path></svg>
|
|
</span>
|
|
</span>
|
|
<span class="uk-margin-small-left">{{type.name}}</span>
|
|
</a>
|
|
</span>
|
|
</span>
|
|
</ng-container>
|
|
</ng-container>
|
|
</ng-container>
|
|
<ng-container *ngIf="selectedRangeFilters > 0">
|
|
<ng-container *ngFor="let filter of rangeFilters ">
|
|
<ng-container *ngIf="filter.selectedFromAndToValues">
|
|
<span [title]="'Remove '+ filter.selectedFromAndToValues" (click)="removeRangeFilter(filter) "
|
|
[class]="((disableForms || disableRefineForms) ? 'uk-disabled' : 'clickable') + ' uk-grid-margin'">
|
|
<span class="selectedFilterLabel ">
|
|
<a class="uk-link-text">
|
|
<span aria-hidden="true">
|
|
<span class="uk-icon">
|
|
<svg width="16" height="16" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"
|
|
icon="close" ratio="0.8"><path fill="none" stroke="#000" stroke-width="1.6"
|
|
d="M16,16 L4,4"></path><path fill="none"
|
|
stroke="#000"
|
|
stroke-width="1.6"
|
|
d="M16,4 L4,16"></path></svg>
|
|
</span>
|
|
</span>
|
|
<span class="uk-margin-small-left">{{filter.selectedFromAndToValues}}</span>
|
|
</a>
|
|
</span>
|
|
</span>
|
|
</ng-container>
|
|
</ng-container>
|
|
</ng-container>
|
|
<ng-container *ngFor="let filter of filters ">
|
|
<ng-container *ngIf="filter.countSelectedValues > 0">
|
|
<span *ngFor="let value of getSelectedValues(filter); let i = index; let end = last; "
|
|
[title]="'Remove '+value.name" (click)="removeFilter(value, filter) "
|
|
[class]="((disableForms || disableRefineForms) ? 'uk-disabled' : 'clickable') + ' uk-grid-margin'">
|
|
<!-- if no grid on the div above, remove it and move class 'selectedFilterLabel' on top span -->
|
|
<span class="selectedFilterLabel ">
|
|
<a class="uk-link-text">
|
|
<span aria-hidden="true">
|
|
<span class="uk-icon">
|
|
<svg width="16" height="16" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"
|
|
icon="close" ratio="0.8"><path fill="none" stroke="#000" stroke-width="1.6"
|
|
d="M16,16 L4,4"></path><path fill="none"
|
|
stroke="#000"
|
|
stroke-width="1.6"
|
|
d="M16,4 L4,16"></path></svg>
|
|
</span>
|
|
</span>
|
|
<span class="uk-margin-small-left"
|
|
[innerHtml]="(value.name.length > 34)?value.name.substring(0,34)+'...':value.name"></span>
|
|
</a>
|
|
</span>
|
|
</span>
|
|
</ng-container>
|
|
</ng-container>
|
|
</div>
|
|
</ng-template>
|
|
<ng-template #filters_column>
|
|
<div class="uk-width-1-1 uk-margin-top">
|
|
<div class="uk-grid uk-flex uk-flex-bottom">
|
|
<h5 *ngIf="(selectedRangeFilters+selectedFilters + selectedTypesNum > 0) || (filters.length > 0 && (results.length > 0 || disableForms))"
|
|
class="uk-text-bold">
|
|
Filters
|
|
</h5>
|
|
<a *ngIf="(selectedRangeFilters+selectedFilters + selectedTypesNum)>1" (click)="clearFilters()"
|
|
[class]="((disableForms || disableRefineForms)?'uk-disabled uk-link-muted':'')+' portal-link ' + 'uk-width-1-2'">
|
|
Clear All
|
|
</a>
|
|
</div>
|
|
<div *ngIf="selectedRangeFilters+selectedFilters + selectedTypesNum > 0"
|
|
class="uk-margin-small-top uk-margin-medium-bottom">
|
|
<ng-container *ngTemplateOutlet="selected_filters_pills; context: {}"></ng-container>
|
|
</div>
|
|
</div>
|
|
<div *ngIf="searchUtils.refineStatus == errorCodes.LOADING && filters.length === 0"
|
|
class="'uk-animation-fade uk-margin-top uk-width-1-1" role="alert">
|
|
<span class="loading-gif uk-align-center" ></span>
|
|
</div>
|
|
|
|
<div *ngIf="searchUtils.refineStatus == errorCodes.DONE && filters.length === 0 && results.length > 0" class="uk-margin-top">
|
|
<span class="uk-text-meta">No filters available</span>
|
|
</div>
|
|
<ul *ngIf="!showUnknownFilters"
|
|
[class]="'uk-list uk-list-divider' + (selectedRangeFilters == 0 && selectedFilters == 0 ? ' uk-margin-small-top' : '')">
|
|
<!-- searchUtils.refineStatus == errorCodes.DONE &&-->
|
|
<ng-container *ngIf="filters.length > 0 && filters[0].values.length >0 && filters[0].filterId == 'resultbestaccessright'">
|
|
<li>
|
|
<search-filter [filterValuesNum]="filterValuesNum" [showMoreInline]="showMoreFilterValuesInline"
|
|
[isDisabled]="disableForms || disableRefineForms"
|
|
[filter]="filters[0]" [showResultCount]=showResultCount
|
|
(onFilterChange)="filterChanged($event)"></search-filter>
|
|
</li>
|
|
</ng-container>
|
|
<li *ngIf="resultTypes && (filters.length > 0)">
|
|
<quick-selections [resultTypes]="resultTypes" (typeChange)="queryChanged()"
|
|
[isDisabled]="disableForms || disableRefineForms"
|
|
[quickFilter]="quickFilter" [QFselected]="(quickFilter)?quickFilter.selected:null"
|
|
[properties]="properties" [vertical]="true" [delayTime]="0">
|
|
</quick-selections>
|
|
</li>
|
|
<ng-container *ngFor="let filter of rangeFilters">
|
|
<li>
|
|
<range-filter [isDisabled]="disableForms || disableRefineForms" [filter]="filter"
|
|
(onFilterChange)="filterChanged($event)"></range-filter>
|
|
</li>
|
|
</ng-container>
|
|
<ng-container *ngFor="let filter of filters ">
|
|
<li *ngIf="filter.values && filter.filterId != 'resultbestaccessright'">
|
|
<search-filter [filterValuesNum]="filterValuesNum" [showMoreInline]="showMoreFilterValuesInline"
|
|
[isDisabled]="disableForms || disableRefineForms"
|
|
[filter]="filter" [showResultCount]=showResultCount
|
|
(onFilterChange)="filterChanged($event)"></search-filter>
|
|
</li>
|
|
</ng-container>
|
|
</ul>
|
|
</ng-template>
|
|
|
|
|
|
<div *ngIf="!includeOnlyResultsAndFilter" [class]="usedBy != 'deposit' && (!customFilter || customFilter.queryFieldName != 'communityId') ?
|
|
' image-front-topbar uk-section-default uk-position-relative ' :
|
|
(' uk-section uk-padding-remove-bottom uk-padding-remove-top ' + (usedBy
|
|
== 'deposit' ? ' uk-padding-remove-top ' : ' '))"
|
|
uk-scrollspy="{"target":"[uk-scrollspy-class]","cls":"uk-animation-fade","delay":false}"
|
|
tm-header-transparent="light">
|
|
<div style="box-sizing: border-box; "
|
|
[class]="' uk-background-norepeat uk-background-bottom-center uk-padding-remove-bottom uk-flex uk-flex-middle uk-background-fixed '+searchFormClass
|
|
+ (usedBy != 'deposit' && (!customFilter || customFilter.queryFieldName != 'communityId') && !dashboard ?
|
|
' searchFormMinHeight uk-padding-remove-bottom uk-section' : '')
|
|
+(simpleView?'':' advancedSearchFormBackground ')">
|
|
|
|
<div
|
|
[class]="(usedBy!='deposit' && (!customFilter || customFilter.queryFieldName != 'communityId'))?'uk-position-cover':''"></div>
|
|
<div class="uk-width-1-1">
|
|
<breadcrumbs *ngIf="showBreadcrumb && entityType!='community'"
|
|
addClass=" uk-margin-large-left uk-margin-remove-bottom uk-margin-small-top"
|
|
[breadcrumbs]="breadcrumbs"></breadcrumbs>
|
|
<div class="uk-position-relative">
|
|
<div [class]="'uk-container '+(customFilter && customFilter.queryFieldName ==
|
|
'communityId'?' uk-margin-large-bottom ':'uk-margin-large-top')+
|
|
(entityType === 'community' ||entityType === 'stakeholder'?' uk-position-relative':'')" id="searchForm">
|
|
<advanced-search-form
|
|
[entityType]="entityType"
|
|
[fieldIds]="fieldIds"
|
|
[fieldIdsMap]="fieldIdsMap"
|
|
[selectedFields]="selectedFields"
|
|
(queryChange)="queryChanged()"
|
|
[isDisabled]="disableForms || disableRefineForms"
|
|
[simpleSearchLink]="simpleSearchLink"
|
|
[advancedSearchLink]="advancedSearchLink"
|
|
[advancedSearchLinkParameters]
|
|
="this.routerHelper.createQueryParams(this.parameterNames, this.parameterValues)"
|
|
[pageTitle]=pageTitle [simpleView]="simpleView" [formPlaceholderText]="formPlaceholderText"
|
|
[resultTypes]="resultTypes" [quickFilter]="quickFilter" [entitiesSelection]="entitiesSelection"
|
|
[showAdvancedSearchLink]="showAdvancedSearchLink" [customFilter]="customFilter"
|
|
>
|
|
</advanced-search-form>
|
|
<div *ngIf="entityType === 'community' || entityType === 'stakeholder' " class="uk-position-center-right uk-visible@m">
|
|
<img src="assets/common-assets/common/search.png" class="uk-align-center" width="141" height="171">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<schema2jsonld *ngIf="!includeOnlyResultsAndFilter && url" [URL]="url" type="search" [name]=pageTitle
|
|
[searchAction]=false [description]="metaDescription" ></schema2jsonld>
|
|
|
|
|
|
<div id="tm-main" class=" tm-middle">
|
|
<div uk-grid>
|
|
<div class="tm-main uk-width-1-1@s uk-width-1-1@m uk-width-1-1@l uk-row-first ">
|
|
<!-- <breadcrumbs *ngIf="showBreadcrumb && entityType!='community'"-->
|
|
<!-- addClass="uk-margin-large-left uk-margin-remove-bottom uk-margin-small-top" [breadcrumbs]="breadcrumbs"></breadcrumbs>-->
|
|
<div class="uk-container uk-container-large">
|
|
<div>
|
|
<breadcrumbs *ngIf="showBreadcrumb && entityType=='community'"
|
|
addClass=" " [breadcrumbs]="breadcrumbs"></breadcrumbs>
|
|
<helper *ngIf="pageContents && pageContents['top'] && pageContents['top'].length > 0"
|
|
[texts]="pageContents['top']"></helper>
|
|
<div [class]="(showRefine && !properties.isDashboard)? 'uk-width-4-5@m uk-width-4-5@l uk-width-1-1@s' :'uk-width-1-1'">
|
|
<div *ngIf="showRefine" class="uk-offcanvas-content uk-hidden@m uk-margin-top">
|
|
|
|
<a href="#offcanvas-usage" uk-toggle>
|
|
<span class="uk-icon uk-margin-small-right uk-margin-small-left">
|
|
<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"
|
|
data-svg="settings">
|
|
<ellipse fill="none" stroke="#000" cx="6.11" cy="3.55" rx="2.11" ry="2.15"></ellipse>
|
|
<ellipse fill="none" stroke="#000" cx="6.11" cy="15.55" rx="2.11" ry="2.15"></ellipse>
|
|
<circle fill="none" stroke="#000" cx="13.15" cy="9.55" r="2.15"></circle>
|
|
<rect x="1" y="3" width="3" height="1"></rect>
|
|
<rect x="10" y="3" width="8" height="1"></rect>
|
|
<rect x="1" y="9" width="8" height="1"></rect>
|
|
<rect x="15" y="9" width="3" height="1"></rect>
|
|
<rect x="1" y="15" width="3" height="1"></rect>
|
|
<rect x="10" y="15" width="8" height="1"></rect>
|
|
</svg>
|
|
</span>
|
|
<span>Filters <span
|
|
*ngIf="(selectedRangeFilters+selectedFilters) > 0">({{(selectedRangeFilters + selectedFilters)}}
|
|
)</span></span>
|
|
<!-- <svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg" ratio="1">-->
|
|
<!-- <rect x="6" y="4" width="12" height="1"></rect><rect x="6" y="9" width="12" height="1"></rect>-->
|
|
<!-- <rect x="6" y="14" width="12" height="1"></rect>-->
|
|
<!-- <rect x="2" y="4" width="2" height="1"></rect>-->
|
|
<!-- <rect x="2" y="9" width="2" height="1"></rect>-->
|
|
<!-- <rect x="2" y="14" width="2" height="1"></rect>-->
|
|
<!-- </svg>-->
|
|
</a>
|
|
|
|
<div #offcanvas_element id="offcanvas-usage" uk-offcanvas overlay style="z-index:10000;">
|
|
<div class="uk-offcanvas-bar offcanvas-white">
|
|
<button class="uk-offcanvas-close" type="button" uk-close></button>
|
|
<div class="uk-width-1-1">
|
|
<ng-container *ngTemplateOutlet="filters_column; context: {}"></ng-container>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
<div *ngIf="includeOnlyResultsAndFilter "
|
|
class="uk-margin-medium-top uk-margin-medium-bottom">
|
|
<a *ngIf="showAdvancedSearchLink && advancedSearchLink" routerLinkActive="router-link-active"
|
|
[routerLink]="advancedSearchLink" style="z-index:1;"
|
|
[queryParams]="this.routerHelper.createQueryParams(this.parameterNames, this.parameterValues)"
|
|
[class]="((disableForms || disableRefineForms)?' uk-disabled uk-link-muted ':'') +' portal-link uk-float-right '">Advanced
|
|
search
|
|
</a>
|
|
<!-- <quick-selections [resultTypes]="resultTypes"
|
|
(typeChange)="queryChanged()"
|
|
[isDisabled]="disableForms"
|
|
[quickFilter]="quickFilter" [QFselected]="(quickFilter)?quickFilter.selected:null"
|
|
[properties]="properties">
|
|
</quick-selections>-->
|
|
|
|
</div>
|
|
<div class="uk-grid helper-grid uk-padding-small uk-padding-remove-vertical uk-margin-large-bottom">
|
|
<!-- && searchUtils.refineStatus == errorCodes.LOADING-->
|
|
<div *ngIf="searchUtils.status == errorCodes.LOADING && filters.length == 0;
|
|
else elseGridBlock"
|
|
class="'uk-animation-fade uk-margin-top uk-width-1-1" role="alert">
|
|
<span class="loading-gif uk-align-center" ></span>
|
|
</div>
|
|
<div>
|
|
<ng-template #elseGridBlock>
|
|
|
|
<div *ngIf="showRefine && !properties.isDashboard" class="uk-width-1-4@m search-filters uk-visible@m">
|
|
<ng-container *ngTemplateOutlet="filters_column; context: {}"></ng-container>
|
|
</div>
|
|
<div class="uk-width-expand@m uk-with-1-1@s">
|
|
<div *ngIf="properties.isDashboard && selectedRangeFilters+selectedFilters + selectedTypesNum > 0"
|
|
class="uk-width-1-1 uk-margin-top uk-margin-medium-bottom ">
|
|
<div class="uk-flex uk-flex-bottom">
|
|
<span class="uk-margin-small-right">Filters: </span>
|
|
<ng-container *ngTemplateOutlet="selected_filters_pills; context: {}"></ng-container>
|
|
</div>
|
|
</div>
|
|
<div *ngIf="openaireLink && (searchUtils.totalResults > 0 || !loadPaging )"><a
|
|
class="uk-margin-top uk-button uk-button-text"
|
|
[href]="openaireLink+this.routerHelper.createQueryParamsString(this.parameterNames, this.parameterValues)"
|
|
target="_blank">Results in OpenAIRE</a></div>
|
|
<div class="uk-align-center uk-margin-remove-bottom">
|
|
<div
|
|
*ngIf="(results && searchUtils.totalResults > 0) || (!loadPaging && oldTotalResults > 0 && searchUtils.status == errorCodes.LOADING)"
|
|
class="uk-grid uk-margin-top uk-margin-bottom">
|
|
<div class="uk-width-expand@m uk-grid uk-grid-medium uk-margin-small-bottom">
|
|
<search-results-per-page [size]="searchUtils.size"
|
|
(sizeChange)="sizeChanged($event)"
|
|
[isDisabled]="disableForms || disableRefineForms">
|
|
</search-results-per-page>
|
|
<search-sorting *ngIf="sort"
|
|
[entityType]="entityType" [sortBy]="searchUtils.sortBy"
|
|
(sortByChange)="sortByChanged($event)"
|
|
[isDisabled]="disableForms || disableRefineForms">
|
|
</search-sorting>
|
|
</div>
|
|
<!-- uk-flex uk-flex-middle-->
|
|
<div class="uk-width-auto@m uk-margin-small-bottom">
|
|
<!-- !showUnknownFilters && (searchUtils.totalResults > 0 || !loadPaging)-->
|
|
<search-download
|
|
*ngIf="( entityType !='community' && entityType != 'stakeholder') && usedBy == 'search'"
|
|
[isDisabled]="disableForms || disableRefineForms"
|
|
[type]="csvPath" [csvParams]="csvParams" [totalResults]="searchUtils.totalResults">
|
|
</search-download>
|
|
|
|
<!--<span *ngIf="tableViewLink">
|
|
<a uk-tooltip="title: Table view" routerLinkActive="router-link-active"
|
|
[class]="((disableForms)?'uk-disabled uk-link-muted':'')+' uk-link-text uk-margin-small-left'"
|
|
[routerLink]=tableViewLink >
|
|
<span class="uk-icon"><svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg" ratio="1"><rect x="2" y="2" width="3" height="3"></rect><rect x="8" y="2" width="3" height="3"></rect><rect x="14" y="2" width="3" height="3"></rect><rect x="2" y="8" width="3" height="3"></rect><rect x="8" y="8" width="3" height="3"></rect><rect x="14" y="8" width="3" height="3"></rect><rect x="2" y="14" width="3" height="3"></rect><rect x="8" y="14" width="3" height="3"></rect><rect x="14" y="14" width="3" height="3"></rect></svg></span>
|
|
Table view
|
|
</a>
|
|
<!– <span uk-tooltip="title: List view" class="uk-icon"><svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg" icon="table" ratio="1"><rect x="1" y="3" width="18" height="1"></rect><rect x="1" y="7" width="18" height="1"></rect><rect x="1" y="11" width="18" height="1"></rect><rect x="1" y="15" width="18" height="1"></rect></svg></span>–>
|
|
</span>-->
|
|
</div>
|
|
</div>
|
|
<search-paging [type]="type" [loadPaging]="loadPaging" [oldTotalResults]="oldTotalResults"
|
|
[(searchUtils)]="searchUtils" [(results)]="results" [(baseUrl)]="searchUtils.baseUrl"
|
|
[(parameterNames)]="parameterNames" [(parameterValues)]="parameterValues"
|
|
[isDisabled]="disableForms || disableRefineForms">
|
|
</search-paging>
|
|
</div>
|
|
|
|
<!-- <search-download *ngIf= "( entityType !='community' && entityType != 'stakeholder') && usedBy == 'search'"-->
|
|
<!-- class="uk-width-1-1@s uk-hidden@m"-->
|
|
<!-- [isDisabled]="disableForms"-->
|
|
<!-- [type]="csvPath" [csvParams]="csvParams" [totalResults]="searchUtils.totalResults">-->
|
|
<!-- </search-download>-->
|
|
|
|
<div *ngIf="(searchUtils.page <= pagingLimit)" class="uk-margin-large-bottom">
|
|
<search-result *ngIf="( entityType !='community' && entityType != 'stakeholder') && usedBy == 'search'"
|
|
[results]="results"
|
|
[status]=searchUtils.status
|
|
[type]="entityType"
|
|
[showLoading]="true" [properties]=properties [showImpactFactors]="(customFilter &&
|
|
customFilter.queryFieldName == 'communityId' && customFilter.valueId == 'elixir-gr')">
|
|
</search-result>
|
|
<deposit-result *ngIf="usedBy == 'deposit'"
|
|
[results]="results"
|
|
[status]="searchUtils.status"
|
|
[type]="entityType"
|
|
[zenodoInformation]="zenodoInformation"
|
|
[properties]=properties>
|
|
</deposit-result>
|
|
<portal-search-result
|
|
*ngIf="(entityType == 'community' || entityType == 'stakeholder') && usedBy == 'search'"
|
|
[results]="results"
|
|
[status]="searchUtils.status"
|
|
[type]="entityType"
|
|
[showType]="false"
|
|
[showLoading]="true" [properties]=properties>
|
|
</portal-search-result>
|
|
</div>
|
|
|
|
<div [class]="searchUtils.page > pagingLimit ? 'search-results' : ''"
|
|
*ngIf="(searchUtils.page >= pagingLimit) && (searchUtils.totalResults > searchUtils.size*pagingLimit)">
|
|
<p class="uk-alert-warning" uk-alert>For more results please try a new, more specific query</p>
|
|
</div>
|
|
|
|
<div class="uk-align-center uk-margin-remove-bottom">
|
|
<!-- <div *ngIf="(results && searchUtils.totalResults > 0) || (!loadPaging && oldTotalResults > 0 && searchUtils.status == errorCodes.LOADING)"-->
|
|
<!-- class="uk-grid uk-margin-top uk-margin-bottom">-->
|
|
<!-- <search-results-per-page class="uk-width-1-2@m uk-width-1-1" [(size)]="searchUtils.size" (sizeChange)="sizeChanged($event)"></search-results-per-page>-->
|
|
<!-- <search-sorting class="uk-width-1-2@m uk-width-1-1" *ngIf="sort" [(sortBy)]="searchUtils.sortBy" (sortByChange)="sortByChanged($event)"></search-sorting>-->
|
|
<!-- </div>-->
|
|
<search-paging [type]="type" [loadPaging]="loadPaging" [oldTotalResults]="oldTotalResults"
|
|
[(searchUtils)]="searchUtils" [(results)]="results" [(baseUrl)]="searchUtils.baseUrl"
|
|
[(parameterNames)]="parameterNames" [(parameterValues)]="parameterValues"
|
|
[isDisabled]="disableForms || disableRefineForms">
|
|
</search-paging>
|
|
</div>
|
|
|
|
<a *ngIf="properties.showLastIndexInformationLink && lastIndex && searchUtils.status !== errorCodes.LOADING"
|
|
class="last_index_info uk-button-text uk-button"
|
|
[href]="properties.lastIndexInformationLink" target="_blank">
|
|
Last index information
|
|
</a>
|
|
</div>
|
|
</ng-template>
|
|
<!-- <div class="uk-visible@m uk-margin-top uk-width-1-5">-->
|
|
<!-- <search-download [type]="csvPath" [csvParams]="csvParams" [totalResults]="searchUtils.totalResults" ></search-download>-->
|
|
<!-- </div>-->
|
|
<!-- <helper *ngIf="searchUtils.totalResults > csvLimit" class="uk-margin-top helper-left-right uk-visible@m" position="right"></helper> -->
|
|
</div>
|
|
|
|
<helper *ngIf="pageContents && pageContents['bottom'] && pageContents['bottom'].length > 0"
|
|
[texts]="pageContents['bottom']"></helper>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div *ngIf="properties.isDashboard" id="style_switcher" class="filters_switcher"
|
|
[class.switcher_active]="filterToggle">
|
|
<div id="style_switcher_toggle" (click)="filterToggle= !filterToggle">
|
|
<i class=" uk-text-muted">
|
|
<svg style="margin-top: 8px;" xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 24 24"
|
|
viewBox="0 0 24 24"
|
|
fill="white" width="24px" height="24px">
|
|
<g>
|
|
<path d="M0,0h24 M24,24H0" fill="none"/>
|
|
<path
|
|
d="M4.25,5.61C6.57,8.59,10,13,10,13v5c0,1.1,0.9,2,2,2h0c1.1,0,2-0.9,2-2v-5c0,0,3.43-4.41,5.75-7.39 C20.26,4.95,19.79,4,18.95,4H5.04C4.21,4,3.74,4.95,4.25,5.61z"/>
|
|
<path d="M0,0h24v24H0V0z" fill="none"/>
|
|
</g>
|
|
</svg>
|
|
</i>
|
|
</div>
|
|
<div class="uk-padding-small uk-padding-remove-top">
|
|
<div class="uk-text-right" ><a (click)="filterToggle=!filterToggle"> <i
|
|
class=" material-icons md-icon"></i>
|
|
</a></div>
|
|
<div class="uk-padding-small uk-padding-remove-top uk-overflow-auto" style="height:calc(100vh - 100px);">
|
|
<ng-container *ngTemplateOutlet="filters_column; context: {}"></ng-container>
|
|
</div>
|
|
</div>
|
|
</div>
|