mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 01:54:15 +00:00
125 lines
6.1 KiB
TypeScript
125 lines
6.1 KiB
TypeScript
import { ChangeDetectorRef, Component } from '@angular/core';
|
||
import {
|
||
BrowseByMetadataPageComponent,
|
||
browseParamsToOptions
|
||
} from '../+browse-by-metadata-page/browse-by-metadata-page.component';
|
||
import { BrowseEntrySearchOptions } from '../../core/browse/browse-entry-search-options.model';
|
||
import { combineLatest as observableCombineLatest } from 'rxjs';
|
||
import { RemoteData } from '../../core/data/remote-data';
|
||
import { Item } from '../../core/shared/item.model';
|
||
import { hasValue, isNotEmpty } from '../../shared/empty.util';
|
||
import { ActivatedRoute, Params, Router } from '@angular/router';
|
||
import { BrowseService } from '../../core/browse/browse.service';
|
||
import { DSpaceObjectDataService } from '../../core/data/dspace-object-data.service';
|
||
import { StartsWithType } from '../../shared/starts-with/starts-with-decorator';
|
||
import { BrowseByType, rendersBrowseBy } from '../+browse-by-switcher/browse-by-decorator';
|
||
import { environment } from '../../../environments/environment';
|
||
import { PaginationService } from '../../core/pagination/pagination.service';
|
||
import { map } from 'rxjs/operators';
|
||
import { PaginationComponentOptions } from '../../shared/pagination/pagination-component-options.model';
|
||
import { SortDirection, SortOptions } from '../../core/cache/models/sort-options.model';
|
||
|
||
@Component({
|
||
selector: 'ds-browse-by-date-page',
|
||
styleUrls: ['../+browse-by-metadata-page/browse-by-metadata-page.component.scss'],
|
||
templateUrl: '../+browse-by-metadata-page/browse-by-metadata-page.component.html'
|
||
})
|
||
/**
|
||
* Component for browsing items by metadata definition of type 'date'
|
||
* A metadata definition (a.k.a. browse id) is a short term used to describe one or multiple metadata fields.
|
||
* An example would be 'dateissued' for 'dc.date.issued'
|
||
*/
|
||
@rendersBrowseBy(BrowseByType.Date)
|
||
export class BrowseByDatePageComponent extends BrowseByMetadataPageComponent {
|
||
|
||
/**
|
||
* The default metadata-field to use for determining the lower limit of the StartsWith dropdown options
|
||
*/
|
||
defaultMetadataField = 'dc.date.issued';
|
||
|
||
public constructor(protected route: ActivatedRoute,
|
||
protected browseService: BrowseService,
|
||
protected dsoService: DSpaceObjectDataService,
|
||
protected router: Router,
|
||
protected paginationService: PaginationService,
|
||
protected cdRef: ChangeDetectorRef) {
|
||
super(route, browseService, dsoService, paginationService, router);
|
||
}
|
||
|
||
ngOnInit(): void {
|
||
const sortConfig = new SortOptions('default', SortDirection.ASC);
|
||
this.startsWithType = StartsWithType.date;
|
||
this.updatePage(new BrowseEntrySearchOptions(this.defaultBrowseId, this.paginationConfig, sortConfig));
|
||
this.currentPagination$ = this.paginationService.getCurrentPagination(this.paginationConfig.id, this.paginationConfig);
|
||
this.currentSort$ = this.paginationService.getCurrentSort(this.paginationConfig.id, sortConfig);
|
||
this.subs.push(
|
||
observableCombineLatest([this.route.params, this.route.queryParams, this.route.data,
|
||
this.currentPagination$, this.currentSort$]).pipe(
|
||
map(([routeParams, queryParams, data, currentPage, currentSort]) => {
|
||
return [Object.assign({}, routeParams, queryParams, data), currentPage, currentSort];
|
||
})
|
||
).subscribe(([params, currentPage, currentSort]: [Params, PaginationComponentOptions, SortOptions]) => {
|
||
const metadataField = params.metadataField || this.defaultMetadataField;
|
||
this.browseId = params.id || this.defaultBrowseId;
|
||
this.startsWith = +params.startsWith || params.startsWith;
|
||
const searchOptions = browseParamsToOptions(params, currentPage, currentSort, this.browseId);
|
||
this.updatePageWithItems(searchOptions, this.value);
|
||
this.updateParent(params.scope);
|
||
this.updateStartsWithOptions(this.browseId, metadataField, params.scope);
|
||
}));
|
||
}
|
||
|
||
/**
|
||
* Update the StartsWith options
|
||
* In this implementation, it creates a list of years starting from now, going all the way back to the earliest
|
||
* date found on an item within this scope. The further back in time, the bigger the change in years become to avoid
|
||
* extremely long lists with a one-year difference.
|
||
* To determine the change in years, the config found under GlobalConfig.BrowseBy is used for this.
|
||
* @param definition The metadata definition to fetch the first item for
|
||
* @param metadataField The metadata field to fetch the earliest date from (expects a date field)
|
||
* @param scope The scope under which to fetch the earliest item for
|
||
*/
|
||
updateStartsWithOptions(definition: string, metadataField: string, scope?: string) {
|
||
this.subs.push(
|
||
this.browseService.getFirstItemFor(definition, scope).subscribe((firstItemRD: RemoteData<Item>) => {
|
||
let lowerLimit = environment.browseBy.defaultLowerLimit;
|
||
if (hasValue(firstItemRD.payload)) {
|
||
const date = firstItemRD.payload.firstMetadataValue(metadataField);
|
||
if (hasValue(date)) {
|
||
const dateObj = new Date(date);
|
||
// TODO: it appears that getFullYear (based on local time) is sometimes unreliable. Switching to UTC.
|
||
lowerLimit = dateObj.getUTCFullYear();
|
||
}
|
||
}
|
||
const options = [];
|
||
const currentYear = new Date().getUTCFullYear();
|
||
const oneYearBreak = Math.floor((currentYear - environment.browseBy.oneYearLimit) / 5) * 5;
|
||
const fiveYearBreak = Math.floor((currentYear - environment.browseBy.fiveYearLimit) / 10) * 10;
|
||
if (lowerLimit <= fiveYearBreak) {
|
||
lowerLimit -= 10;
|
||
} else if (lowerLimit <= oneYearBreak) {
|
||
lowerLimit -= 5;
|
||
} else {
|
||
lowerLimit -= 1;
|
||
}
|
||
let i = currentYear;
|
||
while (i > lowerLimit) {
|
||
options.push(i);
|
||
if (i <= fiveYearBreak) {
|
||
i -= 10;
|
||
} else if (i <= oneYearBreak) {
|
||
i -= 5;
|
||
} else {
|
||
i--;
|
||
}
|
||
}
|
||
if (isNotEmpty(options)) {
|
||
this.startsWithOptions = options;
|
||
this.cdRef.detectChanges();
|
||
}
|
||
})
|
||
);
|
||
}
|
||
|
||
}
|