mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 01:54:15 +00:00
41 lines
1007 B
TypeScript
41 lines
1007 B
TypeScript
import { Component, OnInit } from '@angular/core';
|
|
import { ActivatedRoute } from '@angular/router';
|
|
|
|
import { Observable } from 'rxjs';
|
|
import { first, map } from 'rxjs/operators';
|
|
|
|
import { RemoteData } from '../../core/data/remote-data';
|
|
import { DSpaceObject } from '../../core/shared/dspace-object.model';
|
|
|
|
@Component({
|
|
selector: 'ds-collection-authorizations',
|
|
templateUrl: './bitstream-authorizations.component.html',
|
|
})
|
|
/**
|
|
* Component that handles the Collection Authorizations
|
|
*/
|
|
export class BitstreamAuthorizationsComponent<TDomain extends DSpaceObject> implements OnInit {
|
|
|
|
/**
|
|
* The initial DSO object
|
|
*/
|
|
public dsoRD$: Observable<RemoteData<TDomain>>;
|
|
|
|
/**
|
|
* Initialize instance variables
|
|
*
|
|
* @param {ActivatedRoute} route
|
|
*/
|
|
constructor(
|
|
private route: ActivatedRoute
|
|
) {
|
|
}
|
|
|
|
/**
|
|
* Initialize the component, setting up the collection
|
|
*/
|
|
ngOnInit(): void {
|
|
this.dsoRD$ = this.route.data.pipe(first(), map((data) => data.bitstream));
|
|
}
|
|
}
|