mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 01:54:15 +00:00
103 lines
3.1 KiB
TypeScript
103 lines
3.1 KiB
TypeScript
import { Component, Input, OnInit } from '@angular/core';
|
|
import { Item } from '../../../core/shared/item.model';
|
|
import { Observable } from 'rxjs';
|
|
import { RemoteData } from '../../../core/data/remote-data';
|
|
import { VersionHistory } from '../../../core/shared/version-history.model';
|
|
import { Version } from '../../../core/shared/version.model';
|
|
import { hasValue, hasValueOperator } from '../../../shared/empty.util';
|
|
import {
|
|
getAllSucceededRemoteData,
|
|
getFirstSucceededRemoteDataPayload,
|
|
getRemoteDataPayload
|
|
} from '../../../core/shared/operators';
|
|
import { map, startWith, switchMap } from 'rxjs/operators';
|
|
import { VersionHistoryDataService } from '../../../core/data/version-history-data.service';
|
|
import { AlertType } from '../../../shared/alert/alert-type';
|
|
import { getItemPageRoute } from '../../item-page-routing-paths';
|
|
|
|
@Component({
|
|
selector: 'ds-item-versions-notice',
|
|
templateUrl: './item-versions-notice.component.html'
|
|
})
|
|
/**
|
|
* Component for displaying a warning notice when the item is not the latest version within its version history
|
|
* The notice contains a link to the latest version's item page
|
|
*/
|
|
export class ItemVersionsNoticeComponent implements OnInit {
|
|
/**
|
|
* The item to display a version notice for
|
|
*/
|
|
@Input() item: Item;
|
|
|
|
/**
|
|
* The item's version
|
|
*/
|
|
versionRD$: Observable<RemoteData<Version>>;
|
|
|
|
/**
|
|
* The item's full version history
|
|
*/
|
|
versionHistoryRD$: Observable<RemoteData<VersionHistory>>;
|
|
|
|
/**
|
|
* The latest version of the item's version history
|
|
*/
|
|
latestVersion$: Observable<Version>;
|
|
|
|
/**
|
|
* Is the item's version equal to the latest version from the version history?
|
|
* This will determine whether or not to display a notice linking to the latest version
|
|
*/
|
|
showLatestVersionNotice$: Observable<boolean>;
|
|
|
|
/**
|
|
* Pagination options to fetch a single version on the first page (this is the latest version in the history)
|
|
*/
|
|
|
|
/**
|
|
* The AlertType enumeration
|
|
* @type {AlertType}
|
|
*/
|
|
public AlertTypeEnum = AlertType;
|
|
|
|
constructor(private versionHistoryService: VersionHistoryDataService) {
|
|
}
|
|
|
|
/**
|
|
* Initialize the component's observables
|
|
*/
|
|
ngOnInit(): void {
|
|
if (hasValue(this.item.version)) {
|
|
this.versionRD$ = this.item.version;
|
|
this.versionHistoryRD$ = this.versionRD$.pipe(
|
|
getAllSucceededRemoteData(),
|
|
getRemoteDataPayload(),
|
|
hasValueOperator(),
|
|
switchMap((version: Version) => version.versionhistory)
|
|
);
|
|
|
|
this.latestVersion$ = this.versionHistoryRD$.pipe(
|
|
getFirstSucceededRemoteDataPayload(),
|
|
switchMap((vh) => this.versionHistoryService.getLatestVersionFromHistory$(vh))
|
|
);
|
|
|
|
this.showLatestVersionNotice$ = this.versionRD$.pipe(
|
|
getFirstSucceededRemoteDataPayload(),
|
|
switchMap((version) => this.versionHistoryService.isLatest$(version)),
|
|
map((isLatest) => isLatest != null && !isLatest),
|
|
startWith(false),
|
|
);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Get the item page url
|
|
* @param item The item for which the url is requested
|
|
*/
|
|
getItemPage(item: Item): string {
|
|
if (hasValue(item)) {
|
|
return getItemPageRoute(item);
|
|
}
|
|
}
|
|
}
|