mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 01:54:15 +00:00
107 lines
4.4 KiB
TypeScript
107 lines
4.4 KiB
TypeScript
import { Component, Input } from '@angular/core';
|
|
import { MetadataRepresentation } from '../../../core/shared/metadata-representation/metadata-representation.model';
|
|
import { combineLatest as observableCombineLatest, Observable, of as observableOf, zip as observableZip } from 'rxjs';
|
|
import { RelationshipService } from '../../../core/data/relationship.service';
|
|
import { MetadataValue } from '../../../core/shared/metadata.models';
|
|
import { getSucceededRemoteData } from '../../../core/shared/operators';
|
|
import { filter, map, switchMap } from 'rxjs/operators';
|
|
import { RemoteData } from '../../../core/data/remote-data';
|
|
import { Relationship } from '../../../core/shared/item-relationships/relationship.model';
|
|
import { Item } from '../../../core/shared/item.model';
|
|
import { MetadatumRepresentation } from '../../../core/shared/metadata-representation/metadatum/metadatum-representation.model';
|
|
import { ItemMetadataRepresentation } from '../../../core/shared/metadata-representation/item/item-metadata-representation.model';
|
|
import { followLink } from '../../../shared/utils/follow-link-config.model';
|
|
import { AbstractIncrementalListComponent } from '../abstract-incremental-list/abstract-incremental-list.component';
|
|
|
|
@Component({
|
|
selector: 'ds-metadata-representation-list',
|
|
templateUrl: './metadata-representation-list.component.html'
|
|
})
|
|
/**
|
|
* This component is used for displaying metadata
|
|
* It expects an item and a metadataField to fetch metadata
|
|
* It expects an itemType to resolve the metadata to a an item
|
|
* It expects a label to put on top of the list
|
|
*/
|
|
export class MetadataRepresentationListComponent extends AbstractIncrementalListComponent<Observable<MetadataRepresentation[]>> {
|
|
/**
|
|
* The parent of the list of related items to display
|
|
*/
|
|
@Input() parentItem: Item;
|
|
|
|
/**
|
|
* The type of item to create a representation of
|
|
*/
|
|
@Input() itemType: string;
|
|
|
|
/**
|
|
* The metadata field to use for fetching metadata from the item
|
|
*/
|
|
@Input() metadataField: string;
|
|
|
|
/**
|
|
* An i18n label to use as a title for the list
|
|
*/
|
|
@Input() label: string;
|
|
|
|
/**
|
|
* The amount to increment the list by when clicking "view more"
|
|
* Defaults to 10
|
|
* The default can optionally be overridden by providing the limit as input to the component
|
|
*/
|
|
@Input() incrementBy = 10;
|
|
|
|
/**
|
|
* The total amount of metadata values available
|
|
*/
|
|
total: number;
|
|
|
|
constructor(public relationshipService: RelationshipService) {
|
|
super();
|
|
}
|
|
|
|
/**
|
|
* Get a specific page
|
|
* @param page The page to fetch
|
|
*/
|
|
getPage(page: number): Observable<MetadataRepresentation[]> {
|
|
const metadata = this.parentItem.findMetadataSortedByPlace(this.metadataField);
|
|
this.total = metadata.length;
|
|
return this.resolveMetadataRepresentations(metadata, page);
|
|
}
|
|
|
|
/**
|
|
* Resolve a list of metadata values to a list of metadata representations
|
|
* @param metadata The list of all metadata values
|
|
* @param page The page to return representations for
|
|
*/
|
|
resolveMetadataRepresentations(metadata: MetadataValue[], page: number): Observable<MetadataRepresentation[]> {
|
|
return observableZip(
|
|
...metadata
|
|
.slice((this.objects.length * this.incrementBy), (this.objects.length * this.incrementBy) + this.incrementBy)
|
|
.map((metadatum: any) => Object.assign(new MetadataValue(), metadatum))
|
|
.map((metadatum: MetadataValue) => {
|
|
if (metadatum.isVirtual) {
|
|
return this.relationshipService.findById(metadatum.virtualValue, followLink('leftItem'), followLink('rightItem')).pipe(
|
|
getSucceededRemoteData(),
|
|
switchMap((relRD: RemoteData<Relationship>) =>
|
|
observableCombineLatest(relRD.payload.leftItem, relRD.payload.rightItem).pipe(
|
|
filter(([leftItem, rightItem]) => leftItem.hasSucceeded && rightItem.hasSucceeded),
|
|
map(([leftItem, rightItem]) => {
|
|
if (leftItem.payload.id === this.parentItem.id) {
|
|
return rightItem.payload;
|
|
} else if (rightItem.payload.id === this.parentItem.id) {
|
|
return leftItem.payload;
|
|
}
|
|
}),
|
|
map((item: Item) => Object.assign(new ItemMetadataRepresentation(metadatum), item))
|
|
)
|
|
));
|
|
} else {
|
|
return observableOf(Object.assign(new MetadatumRepresentation(this.itemType), metadatum));
|
|
}
|
|
})
|
|
);
|
|
}
|
|
}
|