mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 01:54:15 +00:00
124 lines
6.2 KiB
TypeScript
124 lines
6.2 KiB
TypeScript
import { ChangeDetectorRef, Component, Inject } from '@angular/core';
|
|
import {
|
|
BrowseByMetadataPageComponent,
|
|
browseParamsToOptions, getBrowseSearchOptions
|
|
} from '../browse-by-metadata-page/browse-by-metadata-page.component';
|
|
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 { 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';
|
|
import { isValidDate } from '../../shared/date.util';
|
|
import { AppConfig, APP_CONFIG } from '../../../config/app-config.interface';
|
|
|
|
@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'
|
|
*/
|
|
export class BrowseByDatePageComponent extends BrowseByMetadataPageComponent {
|
|
|
|
/**
|
|
* The default metadata keys to use for determining the lower limit of the StartsWith dropdown options
|
|
*/
|
|
defaultMetadataKeys = ['dc.date.issued'];
|
|
|
|
public constructor(protected route: ActivatedRoute,
|
|
protected browseService: BrowseService,
|
|
protected dsoService: DSpaceObjectDataService,
|
|
protected router: Router,
|
|
protected paginationService: PaginationService,
|
|
protected cdRef: ChangeDetectorRef,
|
|
@Inject(APP_CONFIG) public appConfig: AppConfig) {
|
|
super(route, browseService, dsoService, paginationService, router, appConfig);
|
|
}
|
|
|
|
ngOnInit(): void {
|
|
const sortConfig = new SortOptions('default', SortDirection.ASC);
|
|
this.startsWithType = StartsWithType.date;
|
|
// include the thumbnail configuration in browse search options
|
|
this.updatePage(getBrowseSearchOptions(this.defaultBrowseId, this.paginationConfig, sortConfig, this.fetchThumbnails));
|
|
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 metadataKeys = params.browseDefinition ? params.browseDefinition.metadataKeys : this.defaultMetadataKeys;
|
|
this.browseId = params.id || this.defaultBrowseId;
|
|
this.startsWith = +params.startsWith || params.startsWith;
|
|
const searchOptions = browseParamsToOptions(params, currentPage, currentSort, this.browseId, this.fetchThumbnails);
|
|
this.updatePageWithItems(searchOptions, this.value, undefined);
|
|
this.updateParent(params.scope);
|
|
this.updateStartsWithOptions(this.browseId, metadataKeys, 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 metadataKeys The metadata fields 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, metadataKeys: string[], scope?: string) {
|
|
this.subs.push(
|
|
this.browseService.getFirstItemFor(definition, scope).subscribe((firstItemRD: RemoteData<Item>) => {
|
|
let lowerLimit = this.appConfig.browseBy.defaultLowerLimit;
|
|
if (hasValue(firstItemRD.payload)) {
|
|
const date = firstItemRD.payload.firstMetadataValue(metadataKeys);
|
|
if (isNotEmpty(date) && isValidDate(date)) {
|
|
const dateObj = new Date(date);
|
|
// TODO: it appears that getFullYear (based on local time) is sometimes unreliable. Switching to UTC.
|
|
lowerLimit = isNaN(dateObj.getUTCFullYear()) ? lowerLimit : dateObj.getUTCFullYear();
|
|
}
|
|
}
|
|
const options = [];
|
|
const currentYear = new Date().getUTCFullYear();
|
|
const oneYearBreak = Math.floor((currentYear - this.appConfig.browseBy.oneYearLimit) / 5) * 5;
|
|
const fiveYearBreak = Math.floor((currentYear - this.appConfig.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();
|
|
}
|
|
})
|
|
);
|
|
}
|
|
}
|