mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-16 22:43:03 +00:00
29 lines
1.2 KiB
TypeScript
29 lines
1.2 KiB
TypeScript
import { Injectable } from '@angular/core';
|
|
import { RemoteDataBuildService } from '../cache/builders/remote-data-build.service';
|
|
import { ObjectCacheService } from '../cache/object-cache.service';
|
|
import { DSpaceObject } from '../shared/dspace-object.model';
|
|
import { DSPACE_OBJECT } from '../shared/dspace-object.resource-type';
|
|
import { HALEndpointService } from '../shared/hal-endpoint.service';
|
|
import { RequestService } from './request.service';
|
|
import { IdentifiableDataService } from './base/identifiable-data.service';
|
|
import { dataService } from './base/data-service.decorator';
|
|
|
|
@Injectable()
|
|
@dataService(DSPACE_OBJECT)
|
|
export class DSpaceObjectDataService extends IdentifiableDataService<DSpaceObject> {
|
|
constructor(
|
|
protected requestService: RequestService,
|
|
protected rdbService: RemoteDataBuildService,
|
|
protected objectCache: ObjectCacheService,
|
|
protected halService: HALEndpointService,
|
|
) {
|
|
super(
|
|
'dso', requestService, rdbService, objectCache, halService, undefined,
|
|
// interpolate uuid as query parameter
|
|
(endpoint: string, resourceID: string): string => {
|
|
return endpoint.replace(/{\?uuid}/, `?uuid=${resourceID}`);
|
|
},
|
|
);
|
|
}
|
|
}
|