Files
dspace-angular/src/app/item-page/full/full-item-page.component.ts
2024-05-29 20:51:01 +00:00

86 lines
2.9 KiB
TypeScript

import { filter, map } from 'rxjs/operators';
import { ChangeDetectionStrategy, Component, Inject, OnDestroy, OnInit, PLATFORM_ID } from '@angular/core';
import { ActivatedRoute, Data, Router } from '@angular/router';
import { BehaviorSubject, Observable } from 'rxjs';
import { ItemPageComponent } from '../simple/item-page.component';
import { MetadataMap } from '../../core/shared/metadata.models';
import { ItemDataService } from '../../core/data/item-data.service';
import { RemoteData } from '../../core/data/remote-data';
import { Item } from '../../core/shared/item.model';
import { fadeInOut } from '../../shared/animations/fade';
import { hasValue } from '../../shared/empty.util';
import { Location } from '@angular/common';
import { AuthorizationDataService } from '../../core/data/feature-authorization/authorization-data.service';
import { ServerResponseService } from '../../core/services/server-response.service';
import { SignpostingDataService } from '../../core/data/signposting-data.service';
import { LinkHeadService } from '../../core/services/link-head.service';
/**
* This component renders a full item page.
* The route parameter 'id' is used to request the item it represents.
*/
@Component({
selector: 'ds-full-item-page',
styleUrls: ['./full-item-page.component.scss'],
templateUrl: './full-item-page.component.html',
changeDetection: ChangeDetectionStrategy.OnPush,
animations: [fadeInOut]
})
export class FullItemPageComponent extends ItemPageComponent implements OnInit, OnDestroy {
itemRD$: BehaviorSubject<RemoteData<Item>>;
metadata$: Observable<MetadataMap>;
/**
* True when the itemRD has been originated from its workspaceite/workflowitem, false otherwise.
*/
fromSubmissionObject = false;
subs = [];
constructor(
protected route: ActivatedRoute,
protected router: Router,
protected items: ItemDataService,
protected authorizationService: AuthorizationDataService,
protected _location: Location,
protected responseService: ServerResponseService,
protected signpostingDataService: SignpostingDataService,
protected linkHeadService: LinkHeadService,
@Inject(PLATFORM_ID) protected platformId: string,
) {
super(route, router, items, authorizationService, responseService, signpostingDataService, linkHeadService, platformId);
}
/*** AoT inheritance fix, will hopefully be resolved in the near future **/
ngOnInit(): void {
super.ngOnInit();
this.metadata$ = this.itemRD$.pipe(
map((rd: RemoteData<Item>) => rd.payload),
filter((item: Item) => hasValue(item)),
map((item: Item) => item.metadata),);
this.subs.push(this.route.data.subscribe((data: Data) => {
this.fromSubmissionObject = hasValue(data.wfi) || hasValue(data.wsi);
})
);
}
/**
* Navigate back in browser history.
*/
back() {
this._location.back();
}
ngOnDestroy() {
this.subs.filter((sub) => hasValue(sub)).forEach((sub) => sub.unsubscribe());
}
}