Project

General

Profile

« Previous | Next » 

Revision 58552

[Library|Trunk]

Search:

-Entities Selection: add check if route is enabled
-Delay in result types checkboxes to 2 s
-Use breadcrumb component
-add connect background
-remove space between names in showAuthors component
-Filters:
-message about top 100 always visible
-rename to view all
-change css for search input
-show 100 if results > 95
-view less under the 2nd list
-Search bar:
-select contains all avaliable entities not only search results
-

Landing pages:

-correct issue with pmid in landing
-correct issue with date in cite this
-Hide Addthis:
value in properties

View differences:

newSearchPage.component.ts
18 18
import {RefineResultsUtils} from "../../services/servicesUtils/refineResults.class";
19 19
import {RangeFilter} from "../../utils/rangeFilter/rangeFilterHelperClasses.class";
20 20
import {ZenodoInformationClass} from "../../deposit/utils/zenodoInformation.class";
21
import {Breadcrumb} from "../../utils/breadcrumbs/breadcrumbs.component";
21 22

  
22 23
declare var UIkit: any;
23 24

  
......
92 93
  public divContents = null;
93 94
  public routerHelper: RouterHelper = new RouterHelper();
94 95
  public errorCodes: ErrorCodes = new ErrorCodes();
95

  
96
  breadcrumbs:Breadcrumb[] = [];
96 97
  url = null;
97 98

  
98 99
  @Input() entitiesSelection:boolean = true;
......
133 134

  
134 135
    this.searchUtils.baseUrl = "/" + this.searchUtils.baseUrl;
135 136
    this.seoService.createLinkForCanonicalURL(this.properties.baseLink + this.router.url, false);
137
    this.breadcrumbs.push({name: 'home', route: '/'});
138
    if(this.simpleView) {
139
      this.breadcrumbs.push( {name: "Search", route: this.simpleSearchLink});
140
    }else if(!this.simpleView && this.advancedSearchLink) {
141
      this.breadcrumbs.push({name: "Advanced Search", route: this.advancedSearchLink});
142
    }
136 143

  
137 144

  
138 145
  }

Also available in: Unified diff