1
0
Files
yel-dspace-angular/src/app/core/shared/bundle.model.ts

43 lines
1.2 KiB
TypeScript

import { deserialize, inheritSerialization } from 'cerialize';
import { Observable } from 'rxjs';
import { link, typedObject } from '../cache/builders/build-decorators';
import { BUNDLE } from './bundle.resource-type';
import { DSpaceObject } from './dspace-object.model';
import { HALLink } from './hal-link.model';
import { RemoteData } from '../data/remote-data';
import { PaginatedList } from '../data/paginated-list';
import { BITSTREAM } from './bitstream.resource-type';
import { Bitstream } from './bitstream.model';
@typedObject
@inheritSerialization(DSpaceObject)
export class Bundle extends DSpaceObject {
static type = BUNDLE;
/**
* The {@link HALLink}s for this Bundle
*/
@deserialize
_links: {
self: HALLink;
primaryBitstream: HALLink;
bitstreams: HALLink;
};
/**
* The primary Bitstream of this Bundle
* Will be undefined unless the primaryBitstream {@link HALLink} has been resolved.
*/
@link(BITSTREAM)
primaryBitstream?: Observable<RemoteData<Bitstream>>;
/**
* The list of Bitstreams that are direct children of this Bundle
* Will be undefined unless the bitstreams {@link HALLink} has been resolved.
*/
@link(BITSTREAM, true)
bitstreams?: Observable<RemoteData<PaginatedList<Bitstream>>>;
}