mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-18 15:33:04 +00:00
Merge pull request #3882 from nibou230/2413-bitstream-access-status
Display the access status (embargo) for the bitstream
This commit is contained in:
@@ -350,6 +350,8 @@ item:
|
|||||||
# Rounded to the nearest size in the list of selectable sizes on the
|
# Rounded to the nearest size in the list of selectable sizes on the
|
||||||
# settings menu. See pageSizeOptions in 'pagination-component-options.model.ts'.
|
# settings menu. See pageSizeOptions in 'pagination-component-options.model.ts'.
|
||||||
pageSize: 5
|
pageSize: 5
|
||||||
|
# Show the bitstream access status label on the item page
|
||||||
|
showAccessStatuses: false
|
||||||
|
|
||||||
# Community Page Config
|
# Community Page Config
|
||||||
community:
|
community:
|
||||||
|
@@ -10,7 +10,6 @@ import { TranslateModule } from '@ngx-translate/core';
|
|||||||
import { Observable } from 'rxjs';
|
import { Observable } from 'rxjs';
|
||||||
|
|
||||||
import { AuthService } from '../../../../../core/auth/auth.service';
|
import { AuthService } from '../../../../../core/auth/auth.service';
|
||||||
import { AccessStatusDataService } from '../../../../../core/data/access-status-data.service';
|
|
||||||
import { BitstreamDataService } from '../../../../../core/data/bitstream-data.service';
|
import { BitstreamDataService } from '../../../../../core/data/bitstream-data.service';
|
||||||
import { AuthorizationDataService } from '../../../../../core/data/feature-authorization/authorization-data.service';
|
import { AuthorizationDataService } from '../../../../../core/data/feature-authorization/authorization-data.service';
|
||||||
import { RemoteData } from '../../../../../core/data/remote-data';
|
import { RemoteData } from '../../../../../core/data/remote-data';
|
||||||
@@ -22,7 +21,6 @@ import { ViewMode } from '../../../../../core/shared/view-mode.model';
|
|||||||
import { mockTruncatableService } from '../../../../../shared/mocks/mock-trucatable.service';
|
import { mockTruncatableService } from '../../../../../shared/mocks/mock-trucatable.service';
|
||||||
import { getMockThemeService } from '../../../../../shared/mocks/theme-service.mock';
|
import { getMockThemeService } from '../../../../../shared/mocks/theme-service.mock';
|
||||||
import { CollectionElementLinkType } from '../../../../../shared/object-collection/collection-element-link.type';
|
import { CollectionElementLinkType } from '../../../../../shared/object-collection/collection-element-link.type';
|
||||||
import { AccessStatusObject } from '../../../../../shared/object-collection/shared/badges/access-status-badge/access-status.model';
|
|
||||||
import { ItemSearchResult } from '../../../../../shared/object-collection/shared/item-search-result.model';
|
import { ItemSearchResult } from '../../../../../shared/object-collection/shared/item-search-result.model';
|
||||||
import { createSuccessfulRemoteDataObject$ } from '../../../../../shared/remote-data.utils';
|
import { createSuccessfulRemoteDataObject$ } from '../../../../../shared/remote-data.utils';
|
||||||
import { AuthServiceStub } from '../../../../../shared/testing/auth-service.stub';
|
import { AuthServiceStub } from '../../../../../shared/testing/auth-service.stub';
|
||||||
@@ -44,12 +42,6 @@ describe('ItemAdminSearchResultGridElementComponent', () => {
|
|||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
const mockAccessStatusDataService = {
|
|
||||||
findAccessStatusFor(item: Item): Observable<RemoteData<AccessStatusObject>> {
|
|
||||||
return createSuccessfulRemoteDataObject$(new AccessStatusObject());
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
const mockThemeService = getMockThemeService();
|
const mockThemeService = getMockThemeService();
|
||||||
|
|
||||||
function init() {
|
function init() {
|
||||||
@@ -74,7 +66,6 @@ describe('ItemAdminSearchResultGridElementComponent', () => {
|
|||||||
{ provide: TruncatableService, useValue: mockTruncatableService },
|
{ provide: TruncatableService, useValue: mockTruncatableService },
|
||||||
{ provide: BitstreamDataService, useValue: mockBitstreamDataService },
|
{ provide: BitstreamDataService, useValue: mockBitstreamDataService },
|
||||||
{ provide: ThemeService, useValue: mockThemeService },
|
{ provide: ThemeService, useValue: mockThemeService },
|
||||||
{ provide: AccessStatusDataService, useValue: mockAccessStatusDataService },
|
|
||||||
{ provide: AuthService, useClass: AuthServiceStub },
|
{ provide: AuthService, useClass: AuthServiceStub },
|
||||||
{ provide: FileService, useClass: FileServiceStub },
|
{ provide: FileService, useClass: FileServiceStub },
|
||||||
{ provide: AuthorizationDataService, useClass: AuthorizationDataServiceStub },
|
{ provide: AuthorizationDataService, useClass: AuthorizationDataServiceStub },
|
||||||
|
@@ -46,11 +46,11 @@ describe('AccessStatusDataService', () => {
|
|||||||
createService();
|
createService();
|
||||||
});
|
});
|
||||||
|
|
||||||
describe('when calling findAccessStatusFor', () => {
|
describe('when calling findItemAccessStatusFor', () => {
|
||||||
let contentSource$;
|
let contentSource$;
|
||||||
|
|
||||||
beforeEach(() => {
|
beforeEach(() => {
|
||||||
contentSource$ = service.findAccessStatusFor(mockItem);
|
contentSource$ = service.findItemAccessStatusFor(mockItem);
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should send a new GetRequest', fakeAsync(() => {
|
it('should send a new GetRequest', fakeAsync(() => {
|
||||||
|
@@ -29,7 +29,7 @@ export class AccessStatusDataService extends BaseDataService<AccessStatusObject>
|
|||||||
* Returns {@link RemoteData} of {@link AccessStatusObject} that is the access status of the given item
|
* Returns {@link RemoteData} of {@link AccessStatusObject} that is the access status of the given item
|
||||||
* @param item Item we want the access status of
|
* @param item Item we want the access status of
|
||||||
*/
|
*/
|
||||||
findAccessStatusFor(item: Item): Observable<RemoteData<AccessStatusObject>> {
|
findItemAccessStatusFor(item: Item): Observable<RemoteData<AccessStatusObject>> {
|
||||||
return this.findByHref(item._links.accessStatus.href);
|
return this.findByHref(item._links.accessStatus.href);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -176,7 +176,6 @@ export const models =
|
|||||||
ResearcherProfile,
|
ResearcherProfile,
|
||||||
OrcidQueue,
|
OrcidQueue,
|
||||||
OrcidHistory,
|
OrcidHistory,
|
||||||
AccessStatusObject,
|
|
||||||
IdentifierData,
|
IdentifierData,
|
||||||
Subscription,
|
Subscription,
|
||||||
ItemRequest,
|
ItemRequest,
|
||||||
|
@@ -4,6 +4,8 @@ import {
|
|||||||
inheritSerialization,
|
inheritSerialization,
|
||||||
} from 'cerialize';
|
} from 'cerialize';
|
||||||
import { Observable } from 'rxjs';
|
import { Observable } from 'rxjs';
|
||||||
|
import { AccessStatusObject } from 'src/app/shared/object-collection/shared/badges/access-status-badge/access-status.model';
|
||||||
|
import { ACCESS_STATUS } from 'src/app/shared/object-collection/shared/badges/access-status-badge/access-status.resource-type';
|
||||||
|
|
||||||
import {
|
import {
|
||||||
link,
|
link,
|
||||||
@@ -52,6 +54,7 @@ export class Bitstream extends DSpaceObject implements ChildHALResource {
|
|||||||
format: HALLink;
|
format: HALLink;
|
||||||
content: HALLink;
|
content: HALLink;
|
||||||
thumbnail: HALLink;
|
thumbnail: HALLink;
|
||||||
|
accessStatus: HALLink;
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -75,6 +78,13 @@ export class Bitstream extends DSpaceObject implements ChildHALResource {
|
|||||||
@link(BUNDLE)
|
@link(BUNDLE)
|
||||||
bundle?: Observable<RemoteData<Bundle>>;
|
bundle?: Observable<RemoteData<Bundle>>;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The access status for this Bitstream
|
||||||
|
* Will be undefined unless the access status {@link HALLink} has been resolved.
|
||||||
|
*/
|
||||||
|
@link(ACCESS_STATUS, false, 'accessStatus')
|
||||||
|
accessStatus?: Observable<RemoteData<AccessStatusObject>>;
|
||||||
|
|
||||||
getParentLinkKey(): keyof this['_links'] {
|
getParentLinkKey(): keyof this['_links'] {
|
||||||
return 'format';
|
return 'format';
|
||||||
}
|
}
|
||||||
|
@@ -130,7 +130,7 @@ export class Item extends DSpaceObject implements ChildHALResource, HandleObject
|
|||||||
* The access status for this Item
|
* The access status for this Item
|
||||||
* Will be undefined unless the access status {@link HALLink} has been resolved.
|
* Will be undefined unless the access status {@link HALLink} has been resolved.
|
||||||
*/
|
*/
|
||||||
@link(ACCESS_STATUS)
|
@link(ACCESS_STATUS, false, 'accessStatus')
|
||||||
accessStatus?: Observable<RemoteData<AccessStatusObject>>;
|
accessStatus?: Observable<RemoteData<AccessStatusObject>>;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@@ -109,6 +109,7 @@ export class FullFileSectionComponent extends FileSectionComponent implements On
|
|||||||
true,
|
true,
|
||||||
followLink('format'),
|
followLink('format'),
|
||||||
followLink('thumbnail'),
|
followLink('thumbnail'),
|
||||||
|
followLink('accessStatus'),
|
||||||
)),
|
)),
|
||||||
tap((rd: RemoteData<PaginatedList<Bitstream>>) => {
|
tap((rd: RemoteData<PaginatedList<Bitstream>>) => {
|
||||||
if (hasValue(rd.errorMessage)) {
|
if (hasValue(rd.errorMessage)) {
|
||||||
@@ -127,6 +128,7 @@ export class FullFileSectionComponent extends FileSectionComponent implements On
|
|||||||
true,
|
true,
|
||||||
followLink('format'),
|
followLink('format'),
|
||||||
followLink('thumbnail'),
|
followLink('thumbnail'),
|
||||||
|
followLink('accessStatus'),
|
||||||
)),
|
)),
|
||||||
tap((rd: RemoteData<PaginatedList<Bitstream>>) => {
|
tap((rd: RemoteData<PaginatedList<Bitstream>>) => {
|
||||||
if (hasValue(rd.errorMessage)) {
|
if (hasValue(rd.errorMessage)) {
|
||||||
|
@@ -28,6 +28,7 @@ import { ThemedLoadingComponent } from '../../../../shared/loading/themed-loadin
|
|||||||
import { MetadataFieldWrapperComponent } from '../../../../shared/metadata-field-wrapper/metadata-field-wrapper.component';
|
import { MetadataFieldWrapperComponent } from '../../../../shared/metadata-field-wrapper/metadata-field-wrapper.component';
|
||||||
import { NotificationsService } from '../../../../shared/notifications/notifications.service';
|
import { NotificationsService } from '../../../../shared/notifications/notifications.service';
|
||||||
import { FileSizePipe } from '../../../../shared/utils/file-size-pipe';
|
import { FileSizePipe } from '../../../../shared/utils/file-size-pipe';
|
||||||
|
import { followLink } from '../../../../shared/utils/follow-link-config.model';
|
||||||
import { VarDirective } from '../../../../shared/utils/var.directive';
|
import { VarDirective } from '../../../../shared/utils/var.directive';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -109,7 +110,7 @@ export class FileSectionComponent implements OnInit {
|
|||||||
this.bitstreamDataService.findAllByItemAndBundleName(this.item, 'ORIGINAL', {
|
this.bitstreamDataService.findAllByItemAndBundleName(this.item, 'ORIGINAL', {
|
||||||
currentPage: this.currentPage,
|
currentPage: this.currentPage,
|
||||||
elementsPerPage: this.pageSize,
|
elementsPerPage: this.pageSize,
|
||||||
}).pipe(
|
}, true, true, followLink('accessStatus')).pipe(
|
||||||
getFirstCompletedRemoteData(),
|
getFirstCompletedRemoteData(),
|
||||||
).subscribe((bitstreamsRD: RemoteData<PaginatedList<Bitstream>>) => {
|
).subscribe((bitstreamsRD: RemoteData<PaginatedList<Bitstream>>) => {
|
||||||
if (bitstreamsRD.errorMessage) {
|
if (bitstreamsRD.errorMessage) {
|
||||||
|
@@ -29,7 +29,7 @@
|
|||||||
[title]="'process.detail.output-files'">
|
[title]="'process.detail.output-files'">
|
||||||
<div class="d-flex flex-column">
|
<div class="d-flex flex-column">
|
||||||
@for (file of files; track file; let last = $last) {
|
@for (file of files; track file; let last = $last) {
|
||||||
<ds-file-download-link [bitstream]="file">
|
<ds-file-download-link [bitstream]="file" [showAccessStatusBadge]="false">
|
||||||
<span>{{getFileName(file)}}</span>
|
<span>{{getFileName(file)}}</span>
|
||||||
<span>({{(file?.sizeBytes) | dsFileSize }})</span>
|
<span>({{(file?.sizeBytes) | dsFileSize }})</span>
|
||||||
</ds-file-download-link>
|
</ds-file-download-link>
|
||||||
|
@@ -1,4 +1,7 @@
|
|||||||
<a [routerLink]="(bitstreamPath$| async)?.routerLink" class="dont-break-out"
|
@if (showAccessStatusBadge) {
|
||||||
|
<ds-access-status-badge [object]="bitstream"></ds-access-status-badge>
|
||||||
|
}
|
||||||
|
<a [routerLink]="(bitstreamPath$| async)?.routerLink" class="d-block dont-break-out mb-1"
|
||||||
[queryParams]="(bitstreamPath$| async)?.queryParams"
|
[queryParams]="(bitstreamPath$| async)?.queryParams"
|
||||||
[target]="isBlank ? '_blank': '_self'"
|
[target]="isBlank ? '_blank': '_self'"
|
||||||
[ngClass]="cssClasses"
|
[ngClass]="cssClasses"
|
||||||
|
@@ -8,11 +8,14 @@ import {
|
|||||||
ActivatedRoute,
|
ActivatedRoute,
|
||||||
RouterLink,
|
RouterLink,
|
||||||
} from '@angular/router';
|
} from '@angular/router';
|
||||||
|
import { Store } from '@ngrx/store';
|
||||||
import { TranslateModule } from '@ngx-translate/core';
|
import { TranslateModule } from '@ngx-translate/core';
|
||||||
import {
|
import {
|
||||||
cold,
|
cold,
|
||||||
getTestScheduler,
|
getTestScheduler,
|
||||||
} from 'jasmine-marbles';
|
} from 'jasmine-marbles';
|
||||||
|
import { of as observableOf } from 'rxjs';
|
||||||
|
import { APP_DATA_SERVICES_MAP } from 'src/config/app-config.interface';
|
||||||
|
|
||||||
import { getBitstreamModuleRoute } from '../../app-routing-paths';
|
import { getBitstreamModuleRoute } from '../../app-routing-paths';
|
||||||
import { AuthorizationDataService } from '../../core/data/feature-authorization/authorization-data.service';
|
import { AuthorizationDataService } from '../../core/data/feature-authorization/authorization-data.service';
|
||||||
@@ -34,6 +37,7 @@ describe('FileDownloadLinkComponent', () => {
|
|||||||
|
|
||||||
let bitstream: Bitstream;
|
let bitstream: Bitstream;
|
||||||
let item: Item;
|
let item: Item;
|
||||||
|
let storeMock: any;
|
||||||
|
|
||||||
function init() {
|
function init() {
|
||||||
authorizationService = jasmine.createSpyObj('authorizationService', {
|
authorizationService = jasmine.createSpyObj('authorizationService', {
|
||||||
@@ -51,6 +55,11 @@ describe('FileDownloadLinkComponent', () => {
|
|||||||
self: { href: 'obj-selflink' },
|
self: { href: 'obj-selflink' },
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
storeMock = jasmine.createSpyObj('store', {
|
||||||
|
dispatch: jasmine.createSpy('dispatch'),
|
||||||
|
select: jasmine.createSpy('select'),
|
||||||
|
pipe: observableOf(true),
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
function initTestbed() {
|
function initTestbed() {
|
||||||
@@ -63,6 +72,8 @@ describe('FileDownloadLinkComponent', () => {
|
|||||||
RouterLinkDirectiveStub,
|
RouterLinkDirectiveStub,
|
||||||
{ provide: AuthorizationDataService, useValue: authorizationService },
|
{ provide: AuthorizationDataService, useValue: authorizationService },
|
||||||
{ provide: ActivatedRoute, useValue: new ActivatedRouteStub() },
|
{ provide: ActivatedRoute, useValue: new ActivatedRouteStub() },
|
||||||
|
{ provide: Store, useValue: storeMock },
|
||||||
|
{ provide: APP_DATA_SERVICES_MAP, useValue: {} },
|
||||||
],
|
],
|
||||||
})
|
})
|
||||||
.overrideComponent(FileDownloadLinkComponent, {
|
.overrideComponent(FileDownloadLinkComponent, {
|
||||||
|
@@ -30,13 +30,14 @@ import {
|
|||||||
hasValue,
|
hasValue,
|
||||||
isNotEmpty,
|
isNotEmpty,
|
||||||
} from '../empty.util';
|
} from '../empty.util';
|
||||||
|
import { ThemedAccessStatusBadgeComponent } from '../object-collection/shared/badges/access-status-badge/themed-access-status-badge.component';
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'ds-base-file-download-link',
|
selector: 'ds-base-file-download-link',
|
||||||
templateUrl: './file-download-link.component.html',
|
templateUrl: './file-download-link.component.html',
|
||||||
styleUrls: ['./file-download-link.component.scss'],
|
styleUrls: ['./file-download-link.component.scss'],
|
||||||
standalone: true,
|
standalone: true,
|
||||||
imports: [RouterLink, NgClass, NgTemplateOutlet, AsyncPipe, TranslateModule],
|
imports: [RouterLink, NgClass, NgTemplateOutlet, AsyncPipe, TranslateModule, ThemedAccessStatusBadgeComponent],
|
||||||
})
|
})
|
||||||
/**
|
/**
|
||||||
* Component displaying a download link
|
* Component displaying a download link
|
||||||
@@ -64,6 +65,11 @@ export class FileDownloadLinkComponent implements OnInit {
|
|||||||
|
|
||||||
@Input() enableRequestACopy = true;
|
@Input() enableRequestACopy = true;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A boolean indicating whether the access status badge is displayed
|
||||||
|
*/
|
||||||
|
@Input() showAccessStatusBadge = true;
|
||||||
|
|
||||||
bitstreamPath$: Observable<{
|
bitstreamPath$: Observable<{
|
||||||
routerLink: string,
|
routerLink: string,
|
||||||
queryParams: any,
|
queryParams: any,
|
||||||
|
@@ -27,7 +27,16 @@ export class ThemedFileDownloadLinkComponent extends ThemedComponent<FileDownloa
|
|||||||
|
|
||||||
@Input() enableRequestACopy: boolean;
|
@Input() enableRequestACopy: boolean;
|
||||||
|
|
||||||
protected inAndOutputNames: (keyof FileDownloadLinkComponent & keyof this)[] = ['bitstream', 'item', 'cssClasses', 'isBlank', 'enableRequestACopy'];
|
@Input() showAccessStatusBadge: boolean;
|
||||||
|
|
||||||
|
protected inAndOutputNames: (keyof FileDownloadLinkComponent & keyof this)[] = [
|
||||||
|
'bitstream',
|
||||||
|
'item',
|
||||||
|
'cssClasses',
|
||||||
|
'isBlank',
|
||||||
|
'enableRequestACopy',
|
||||||
|
'showAccessStatusBadge',
|
||||||
|
];
|
||||||
|
|
||||||
protected getComponentName(): string {
|
protected getComponentName(): string {
|
||||||
return 'FileDownloadLinkComponent';
|
return 'FileDownloadLinkComponent';
|
||||||
|
@@ -1,7 +1,5 @@
|
|||||||
@if (showAccessStatus) {
|
@if (showAccessStatus) {
|
||||||
@if (accessStatus$ | async; as accessStatus) {
|
@if ({ status: accessStatus$ | async, date: embargoDate$ | async }; as accessStatus) {
|
||||||
<span>
|
<span [class]="'badge bg-secondary access-status-list-element-badge ' + accessStatusClass">{{ accessStatus.status | translate: {date: accessStatus.date} }}</span>
|
||||||
<span [class]="'badge bg-secondary access-status-list-element-badge ' + accessStatusClass">{{ accessStatus | translate }}</span>
|
|
||||||
</span>
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -6,9 +6,13 @@ import {
|
|||||||
} from '@angular/core/testing';
|
} from '@angular/core/testing';
|
||||||
import { By } from '@angular/platform-browser';
|
import { By } from '@angular/platform-browser';
|
||||||
import { TranslateModule } from '@ngx-translate/core';
|
import { TranslateModule } from '@ngx-translate/core';
|
||||||
|
import { LinkService } from 'src/app/core/cache/builders/link.service';
|
||||||
|
import { getMockLinkService } from 'src/app/shared/mocks/link-service.mock';
|
||||||
|
import { followLink } from 'src/app/shared/utils/follow-link-config.model';
|
||||||
|
import { APP_DATA_SERVICES_MAP } from 'src/config/app-config.interface';
|
||||||
import { environment } from 'src/environments/environment';
|
import { environment } from 'src/environments/environment';
|
||||||
|
|
||||||
import { AccessStatusDataService } from '../../../../../core/data/access-status-data.service';
|
import { Bitstream } from '../../../../../core/shared/bitstream.model';
|
||||||
import { Item } from '../../../../../core/shared/item.model';
|
import { Item } from '../../../../../core/shared/item.model';
|
||||||
import { createSuccessfulRemoteDataObject$ } from '../../../../remote-data.utils';
|
import { createSuccessfulRemoteDataObject$ } from '../../../../remote-data.utils';
|
||||||
import { TruncatePipe } from '../../../../utils/truncate.pipe';
|
import { TruncatePipe } from '../../../../utils/truncate.pipe';
|
||||||
@@ -25,9 +29,10 @@ describe('ItemAccessStatusBadgeComponent', () => {
|
|||||||
let embargoStatus: AccessStatusObject;
|
let embargoStatus: AccessStatusObject;
|
||||||
let restrictedStatus: AccessStatusObject;
|
let restrictedStatus: AccessStatusObject;
|
||||||
|
|
||||||
let accessStatusDataService: AccessStatusDataService;
|
let linkService;
|
||||||
|
|
||||||
let item: Item;
|
let item: Item;
|
||||||
|
let bitstream: Bitstream;
|
||||||
|
|
||||||
function init() {
|
function init() {
|
||||||
unknownStatus = Object.assign(new AccessStatusObject(), {
|
unknownStatus = Object.assign(new AccessStatusObject(), {
|
||||||
@@ -44,20 +49,24 @@ describe('ItemAccessStatusBadgeComponent', () => {
|
|||||||
|
|
||||||
embargoStatus = Object.assign(new AccessStatusObject(), {
|
embargoStatus = Object.assign(new AccessStatusObject(), {
|
||||||
status: 'embargo',
|
status: 'embargo',
|
||||||
|
embargoDate: '2050-01-01',
|
||||||
});
|
});
|
||||||
|
|
||||||
restrictedStatus = Object.assign(new AccessStatusObject(), {
|
restrictedStatus = Object.assign(new AccessStatusObject(), {
|
||||||
status: 'restricted',
|
status: 'restricted',
|
||||||
});
|
});
|
||||||
|
|
||||||
accessStatusDataService = jasmine.createSpyObj('accessStatusDataService', {
|
linkService = getMockLinkService();
|
||||||
findAccessStatusFor: createSuccessfulRemoteDataObject$(unknownStatus),
|
|
||||||
});
|
|
||||||
|
|
||||||
item = Object.assign(new Item(), {
|
item = Object.assign(new Item(), {
|
||||||
uuid: 'item-uuid',
|
uuid: 'item-uuid',
|
||||||
type: 'item',
|
type: 'item',
|
||||||
});
|
});
|
||||||
|
|
||||||
|
bitstream = Object.assign(new Bitstream(), {
|
||||||
|
uuid: 'bitstream-uuid',
|
||||||
|
type: 'bitstream',
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
function initTestBed() {
|
function initTestBed() {
|
||||||
@@ -65,12 +74,13 @@ describe('ItemAccessStatusBadgeComponent', () => {
|
|||||||
imports: [TranslateModule.forRoot(), AccessStatusBadgeComponent, TruncatePipe],
|
imports: [TranslateModule.forRoot(), AccessStatusBadgeComponent, TruncatePipe],
|
||||||
schemas: [NO_ERRORS_SCHEMA],
|
schemas: [NO_ERRORS_SCHEMA],
|
||||||
providers: [
|
providers: [
|
||||||
{ provide: AccessStatusDataService, useValue: accessStatusDataService },
|
{ provide: LinkService, useValue: linkService },
|
||||||
|
{ provide: APP_DATA_SERVICES_MAP, useValue: {} },
|
||||||
],
|
],
|
||||||
}).compileComponents();
|
}).compileComponents();
|
||||||
}
|
}
|
||||||
|
|
||||||
function initFixtureAndComponent() {
|
function initFixtureAndComponentWithItem() {
|
||||||
environment.item.showAccessStatuses = true;
|
environment.item.showAccessStatuses = true;
|
||||||
fixture = TestBed.createComponent(AccessStatusBadgeComponent);
|
fixture = TestBed.createComponent(AccessStatusBadgeComponent);
|
||||||
component = fixture.componentInstance;
|
component = fixture.componentInstance;
|
||||||
@@ -79,90 +89,191 @@ describe('ItemAccessStatusBadgeComponent', () => {
|
|||||||
environment.item.showAccessStatuses = false;
|
environment.item.showAccessStatuses = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
function lookForAccessStatusBadge(status: string) {
|
function initFixtureAndComponentWithBitstream() {
|
||||||
|
environment.item.bitstream.showAccessStatuses = true;
|
||||||
|
fixture = TestBed.createComponent(AccessStatusBadgeComponent);
|
||||||
|
component = fixture.componentInstance;
|
||||||
|
component.object = bitstream;
|
||||||
|
fixture.detectChanges();
|
||||||
|
environment.item.bitstream.showAccessStatuses = false;
|
||||||
|
}
|
||||||
|
|
||||||
|
function lookForAccessStatusBadgeForItem(status: string) {
|
||||||
const badge = fixture.debugElement.query(By.css('span.badge'));
|
const badge = fixture.debugElement.query(By.css('span.badge'));
|
||||||
expect(badge.nativeElement.textContent).toEqual(`access-status.${status.toLowerCase()}.listelement.badge`);
|
expect(badge.nativeElement.textContent).toEqual(`access-status.${status.toLowerCase()}.listelement.badge`);
|
||||||
}
|
}
|
||||||
|
|
||||||
describe('init', () => {
|
function lookForAccessStatusBadgeForBitstream() {
|
||||||
|
const badge = fixture.debugElement.query(By.css('span.badge'));
|
||||||
|
expect(badge.nativeElement.textContent).toEqual(`embargo.listelement.badge`);
|
||||||
|
}
|
||||||
|
|
||||||
|
function lookForNoAccessStatusBadgeForBitstream() {
|
||||||
|
const badge = fixture.debugElement.query(By.css('span.badge'));
|
||||||
|
expect(badge.nativeElement.textContent).toEqual(``);
|
||||||
|
}
|
||||||
|
|
||||||
|
describe('init with item', () => {
|
||||||
beforeEach(waitForAsync(() => {
|
beforeEach(waitForAsync(() => {
|
||||||
init();
|
init();
|
||||||
initTestBed();
|
initTestBed();
|
||||||
}));
|
}));
|
||||||
beforeEach(() => {
|
beforeEach(() => {
|
||||||
initFixtureAndComponent();
|
item.accessStatus = createSuccessfulRemoteDataObject$(unknownStatus);
|
||||||
|
initFixtureAndComponentWithItem();
|
||||||
});
|
});
|
||||||
it('should init the component', () => {
|
it('should init the component', () => {
|
||||||
expect(component).toBeTruthy();
|
expect(component).toBeTruthy();
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
describe('When the findAccessStatusFor method returns unknown', () => {
|
describe('When the item have no accessStatus link', () => {
|
||||||
beforeEach(waitForAsync(() => {
|
beforeEach(waitForAsync(() => {
|
||||||
init();
|
init();
|
||||||
initTestBed();
|
initTestBed();
|
||||||
}));
|
}));
|
||||||
beforeEach(() => {
|
beforeEach(() => {
|
||||||
initFixtureAndComponent();
|
item.accessStatus = null;
|
||||||
|
linkService.resolveLink.and.callFake((model: any) => {
|
||||||
|
item.accessStatus = createSuccessfulRemoteDataObject$(embargoStatus);
|
||||||
|
return model;
|
||||||
});
|
});
|
||||||
it('should show the unknown badge', () => {
|
initFixtureAndComponentWithItem();
|
||||||
lookForAccessStatusBadge('unknown');
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
describe('When the findAccessStatusFor method returns metadata.only', () => {
|
|
||||||
beforeEach(waitForAsync(() => {
|
|
||||||
init();
|
|
||||||
(accessStatusDataService.findAccessStatusFor as jasmine.Spy).and.returnValue(createSuccessfulRemoteDataObject$(metadataOnlyStatus));
|
|
||||||
initTestBed();
|
|
||||||
}));
|
|
||||||
beforeEach(() => {
|
|
||||||
initFixtureAndComponent();
|
|
||||||
});
|
|
||||||
it('should show the metadata only badge', () => {
|
|
||||||
lookForAccessStatusBadge('metadata.only');
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
describe('When the findAccessStatusFor method returns open.access', () => {
|
|
||||||
beforeEach(waitForAsync(() => {
|
|
||||||
init();
|
|
||||||
(accessStatusDataService.findAccessStatusFor as jasmine.Spy).and.returnValue(createSuccessfulRemoteDataObject$(openAccessStatus));
|
|
||||||
initTestBed();
|
|
||||||
}));
|
|
||||||
beforeEach(() => {
|
|
||||||
initFixtureAndComponent();
|
|
||||||
});
|
|
||||||
it('should show the open access badge', () => {
|
|
||||||
lookForAccessStatusBadge('open.access');
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
describe('When the findAccessStatusFor method returns embargo', () => {
|
|
||||||
beforeEach(waitForAsync(() => {
|
|
||||||
init();
|
|
||||||
(accessStatusDataService.findAccessStatusFor as jasmine.Spy).and.returnValue(createSuccessfulRemoteDataObject$(embargoStatus));
|
|
||||||
initTestBed();
|
|
||||||
}));
|
|
||||||
beforeEach(() => {
|
|
||||||
initFixtureAndComponent();
|
|
||||||
});
|
});
|
||||||
it('should show the embargo badge', () => {
|
it('should show the embargo badge', () => {
|
||||||
lookForAccessStatusBadge('embargo');
|
expect(linkService.resolveLink).toHaveBeenCalledWith(item, followLink('accessStatus'));
|
||||||
|
lookForAccessStatusBadgeForItem('embargo');
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
describe('When the findAccessStatusFor method returns restricted', () => {
|
describe('When the item accessStatus link returns unknown', () => {
|
||||||
beforeEach(waitForAsync(() => {
|
beforeEach(waitForAsync(() => {
|
||||||
init();
|
init();
|
||||||
(accessStatusDataService.findAccessStatusFor as jasmine.Spy).and.returnValue(createSuccessfulRemoteDataObject$(restrictedStatus));
|
|
||||||
initTestBed();
|
initTestBed();
|
||||||
}));
|
}));
|
||||||
beforeEach(() => {
|
beforeEach(() => {
|
||||||
initFixtureAndComponent();
|
item.accessStatus = createSuccessfulRemoteDataObject$(unknownStatus);
|
||||||
|
initFixtureAndComponentWithItem();
|
||||||
|
});
|
||||||
|
it('should show the unknown badge', () => {
|
||||||
|
lookForAccessStatusBadgeForItem('unknown');
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('When the item accessStatus link returns metadata.only', () => {
|
||||||
|
beforeEach(waitForAsync(() => {
|
||||||
|
init();
|
||||||
|
item.accessStatus = createSuccessfulRemoteDataObject$(metadataOnlyStatus);
|
||||||
|
initTestBed();
|
||||||
|
}));
|
||||||
|
beforeEach(() => {
|
||||||
|
initFixtureAndComponentWithItem();
|
||||||
|
});
|
||||||
|
it('should show the metadata only badge', () => {
|
||||||
|
lookForAccessStatusBadgeForItem('metadata.only');
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('When the item accessStatus link returns open.access', () => {
|
||||||
|
beforeEach(waitForAsync(() => {
|
||||||
|
init();
|
||||||
|
item.accessStatus = createSuccessfulRemoteDataObject$(openAccessStatus);
|
||||||
|
initTestBed();
|
||||||
|
}));
|
||||||
|
beforeEach(() => {
|
||||||
|
initFixtureAndComponentWithItem();
|
||||||
|
});
|
||||||
|
it('should show the open access badge', () => {
|
||||||
|
lookForAccessStatusBadgeForItem('open.access');
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('When the item accessStatus link returns embargo', () => {
|
||||||
|
beforeEach(waitForAsync(() => {
|
||||||
|
init();
|
||||||
|
item.accessStatus = createSuccessfulRemoteDataObject$(embargoStatus);
|
||||||
|
initTestBed();
|
||||||
|
}));
|
||||||
|
beforeEach(() => {
|
||||||
|
initFixtureAndComponentWithItem();
|
||||||
|
});
|
||||||
|
it('should show the embargo badge', () => {
|
||||||
|
lookForAccessStatusBadgeForItem('embargo');
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('When the item accessStatus link returns restricted', () => {
|
||||||
|
beforeEach(waitForAsync(() => {
|
||||||
|
init();
|
||||||
|
item.accessStatus = createSuccessfulRemoteDataObject$(restrictedStatus);
|
||||||
|
initTestBed();
|
||||||
|
}));
|
||||||
|
beforeEach(() => {
|
||||||
|
initFixtureAndComponentWithItem();
|
||||||
});
|
});
|
||||||
it('should show the restricted badge', () => {
|
it('should show the restricted badge', () => {
|
||||||
lookForAccessStatusBadge('restricted');
|
lookForAccessStatusBadgeForItem('restricted');
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('init with bitstream', () => {
|
||||||
|
beforeEach(waitForAsync(() => {
|
||||||
|
init();
|
||||||
|
initTestBed();
|
||||||
|
}));
|
||||||
|
beforeEach(() => {
|
||||||
|
bitstream.accessStatus = createSuccessfulRemoteDataObject$(unknownStatus);
|
||||||
|
initFixtureAndComponentWithBitstream();
|
||||||
|
});
|
||||||
|
it('should init the component', () => {
|
||||||
|
expect(component).toBeTruthy();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('When the bitstream have no accessStatus link', () => {
|
||||||
|
beforeEach(waitForAsync(() => {
|
||||||
|
init();
|
||||||
|
initTestBed();
|
||||||
|
}));
|
||||||
|
beforeEach(() => {
|
||||||
|
bitstream.accessStatus = null;
|
||||||
|
linkService.resolveLink.and.callFake((model: any) => {
|
||||||
|
bitstream.accessStatus = createSuccessfulRemoteDataObject$(embargoStatus);
|
||||||
|
return model;
|
||||||
|
});
|
||||||
|
initFixtureAndComponentWithBitstream();
|
||||||
|
});
|
||||||
|
it('should show the badge', () => {
|
||||||
|
expect(linkService.resolveLink).toHaveBeenCalledWith(bitstream, followLink('accessStatus'));
|
||||||
|
lookForAccessStatusBadgeForBitstream();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('When the bitstream have an accessStatus link with no embargo date', () => {
|
||||||
|
beforeEach(waitForAsync(() => {
|
||||||
|
init();
|
||||||
|
initTestBed();
|
||||||
|
}));
|
||||||
|
beforeEach(() => {
|
||||||
|
bitstream.accessStatus = createSuccessfulRemoteDataObject$(openAccessStatus);
|
||||||
|
initFixtureAndComponentWithBitstream();
|
||||||
|
});
|
||||||
|
it('should not show the badge', () => {
|
||||||
|
lookForNoAccessStatusBadgeForBitstream();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('When the bitstream have an accessStatus link with an embargo date', () => {
|
||||||
|
beforeEach(waitForAsync(() => {
|
||||||
|
init();
|
||||||
|
initTestBed();
|
||||||
|
}));
|
||||||
|
beforeEach(() => {
|
||||||
|
bitstream.accessStatus = createSuccessfulRemoteDataObject$(embargoStatus);
|
||||||
|
initFixtureAndComponentWithBitstream();
|
||||||
|
});
|
||||||
|
it('should show the badge', () => {
|
||||||
|
lookForAccessStatusBadgeForBitstream();
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
@@ -15,12 +15,13 @@ import {
|
|||||||
catchError,
|
catchError,
|
||||||
map,
|
map,
|
||||||
} from 'rxjs/operators';
|
} from 'rxjs/operators';
|
||||||
import { AccessStatusDataService } from 'src/app/core/data/access-status-data.service';
|
import { LinkService } from 'src/app/core/cache/builders/link.service';
|
||||||
|
import { Bitstream } from 'src/app/core/shared/bitstream.model';
|
||||||
|
import { getFirstSucceededRemoteDataPayload } from 'src/app/core/shared/operators';
|
||||||
|
import { followLink } from 'src/app/shared/utils/follow-link-config.model';
|
||||||
import { environment } from 'src/environments/environment';
|
import { environment } from 'src/environments/environment';
|
||||||
|
|
||||||
import { DSpaceObject } from '../../../../../core/shared/dspace-object.model';
|
|
||||||
import { Item } from '../../../../../core/shared/item.model';
|
import { Item } from '../../../../../core/shared/item.model';
|
||||||
import { ITEM } from '../../../../../core/shared/item.resource-type';
|
|
||||||
import { hasValue } from '../../../../empty.util';
|
import { hasValue } from '../../../../empty.util';
|
||||||
import { AccessStatusObject } from './access-status.model';
|
import { AccessStatusObject } from './access-status.model';
|
||||||
|
|
||||||
@@ -36,8 +37,10 @@ import { AccessStatusObject } from './access-status.model';
|
|||||||
*/
|
*/
|
||||||
export class AccessStatusBadgeComponent implements OnDestroy, OnInit {
|
export class AccessStatusBadgeComponent implements OnDestroy, OnInit {
|
||||||
|
|
||||||
@Input() object: DSpaceObject;
|
@Input() object: Item | Bitstream;
|
||||||
|
|
||||||
accessStatus$: Observable<string>;
|
accessStatus$: Observable<string>;
|
||||||
|
embargoDate$: Observable<string>;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Whether to show the access status badge or not
|
* Whether to show the access status badge or not
|
||||||
@@ -57,35 +60,49 @@ export class AccessStatusBadgeComponent implements OnDestroy, OnInit {
|
|||||||
/**
|
/**
|
||||||
* Initialize instance variables
|
* Initialize instance variables
|
||||||
*
|
*
|
||||||
* @param {AccessStatusDataService} accessStatusDataService
|
* @param {LinkService} linkService
|
||||||
*/
|
*/
|
||||||
constructor(private accessStatusDataService: AccessStatusDataService) { }
|
constructor(
|
||||||
|
private linkService: LinkService,
|
||||||
|
) { }
|
||||||
|
|
||||||
ngOnInit(): void {
|
ngOnInit(): void {
|
||||||
this.showAccessStatus = environment.item.showAccessStatuses;
|
if (!hasValue(this.object)) {
|
||||||
if (this.object.type.toString() !== ITEM.value || !this.showAccessStatus || this.object == null) {
|
|
||||||
// Do not show the badge if the feature is inactive or if the item is null.
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
if (!hasValue(this.object.accessStatus)) {
|
||||||
const item = this.object as Item;
|
|
||||||
if (item.accessStatus == null) {
|
|
||||||
// In case the access status has not been loaded, do it individually.
|
// In case the access status has not been loaded, do it individually.
|
||||||
item.accessStatus = this.accessStatusDataService.findAccessStatusFor(item);
|
this.linkService.resolveLink(this.object, followLink('accessStatus'));
|
||||||
}
|
}
|
||||||
this.accessStatus$ = item.accessStatus.pipe(
|
switch ((this.object as any).type) {
|
||||||
map((accessStatusRD) => {
|
case Item.type.value:
|
||||||
if (accessStatusRD.statusCode !== 401 && hasValue(accessStatusRD.payload)) {
|
this.handleItem();
|
||||||
return accessStatusRD.payload;
|
break;
|
||||||
} else {
|
case Bitstream.type.value:
|
||||||
return [];
|
this.handleBitstream();
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
}),
|
}
|
||||||
|
|
||||||
|
ngOnDestroy(): void {
|
||||||
|
this.subs.filter((sub) => hasValue(sub)).forEach((sub) => sub.unsubscribe());
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Method to handle the object type Item
|
||||||
|
*/
|
||||||
|
private handleItem() {
|
||||||
|
this.showAccessStatus = environment.item.showAccessStatuses;
|
||||||
|
if (!this.showAccessStatus) {
|
||||||
|
// Do not show the badge if the feature is inactive.
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
this.accessStatus$ = this.object.accessStatus.pipe(
|
||||||
|
getFirstSucceededRemoteDataPayload(),
|
||||||
map((accessStatus: AccessStatusObject) => hasValue(accessStatus.status) ? accessStatus.status : 'unknown'),
|
map((accessStatus: AccessStatusObject) => hasValue(accessStatus.status) ? accessStatus.status : 'unknown'),
|
||||||
map((status: string) => `access-status.${status.toLowerCase()}.listelement.badge`),
|
map((status: string) => `access-status.${status.toLowerCase()}.listelement.badge`),
|
||||||
catchError(() => observableOf('access-status.unknown.listelement.badge')),
|
catchError(() => observableOf('access-status.unknown.listelement.badge')),
|
||||||
);
|
);
|
||||||
|
|
||||||
// stylesheet based on the access status value
|
// stylesheet based on the access status value
|
||||||
this.subs.push(
|
this.subs.push(
|
||||||
this.accessStatus$.pipe(
|
this.accessStatus$.pipe(
|
||||||
@@ -96,7 +113,26 @@ export class AccessStatusBadgeComponent implements OnDestroy, OnInit {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
ngOnDestroy(): void {
|
/**
|
||||||
this.subs.filter((sub) => hasValue(sub)).forEach((sub) => sub.unsubscribe());
|
* Method to handle the object type Bitstream
|
||||||
|
*/
|
||||||
|
private handleBitstream() {
|
||||||
|
this.showAccessStatus = environment.item.bitstream.showAccessStatuses;
|
||||||
|
if (!this.showAccessStatus) {
|
||||||
|
// Do not show the badge if the feature is inactive.
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
this.embargoDate$ = this.object.accessStatus.pipe(
|
||||||
|
getFirstSucceededRemoteDataPayload(),
|
||||||
|
map((accessStatus: AccessStatusObject) => hasValue(accessStatus.embargoDate) ? accessStatus.embargoDate : null),
|
||||||
|
catchError(() => observableOf(null)),
|
||||||
|
);
|
||||||
|
this.subs.push(
|
||||||
|
this.embargoDate$.pipe().subscribe((embargoDate: string) => {
|
||||||
|
if (hasValue(embargoDate)) {
|
||||||
|
this.accessStatus$ = observableOf('embargo.listelement.badge');
|
||||||
|
}
|
||||||
|
}),
|
||||||
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -27,6 +27,12 @@ export class AccessStatusObject implements CacheableObject {
|
|||||||
@autoserialize
|
@autoserialize
|
||||||
status: string;
|
status: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The embargo date value
|
||||||
|
*/
|
||||||
|
@autoserialize
|
||||||
|
embargoDate: string;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The {@link HALLink}s for this AccessStatusObject
|
* The {@link HALLink}s for this AccessStatusObject
|
||||||
*/
|
*/
|
||||||
|
@@ -27,7 +27,7 @@
|
|||||||
<div class="float-end w-15">
|
<div class="float-end w-15">
|
||||||
<ng-container>
|
<ng-container>
|
||||||
<ds-file-download-link [cssClasses]="'btn btn-link-focus'" [isBlank]="true"
|
<ds-file-download-link [cssClasses]="'btn btn-link-focus'" [isBlank]="true"
|
||||||
[bitstream]="getBitstream()" [enableRequestACopy]="false">
|
[bitstream]="getBitstream()" [enableRequestACopy]="false" [showAccessStatusBadge]="false">
|
||||||
<i class="fa fa-download fa-2x text-normal" aria-hidden="true"></i>
|
<i class="fa fa-download fa-2x text-normal" aria-hidden="true"></i>
|
||||||
</ds-file-download-link>
|
</ds-file-download-link>
|
||||||
<button class="btn btn-link-focus"
|
<button class="btn btn-link-focus"
|
||||||
|
@@ -288,6 +288,7 @@ describe('ThumbnailComponent', () => {
|
|||||||
format: { href: 'format.url' },
|
format: { href: 'format.url' },
|
||||||
content: { href: CONTENT },
|
content: { href: CONTENT },
|
||||||
thumbnail: undefined,
|
thumbnail: undefined,
|
||||||
|
accessStatus: { href: 'accessStatus.url' },
|
||||||
};
|
};
|
||||||
comp.thumbnail = thumbnail;
|
comp.thumbnail = thumbnail;
|
||||||
});
|
});
|
||||||
@@ -324,6 +325,7 @@ describe('ThumbnailComponent', () => {
|
|||||||
format: { href: 'format.url' },
|
format: { href: 'format.url' },
|
||||||
content: { href: CONTENT },
|
content: { href: CONTENT },
|
||||||
thumbnail: undefined,
|
thumbnail: undefined,
|
||||||
|
accessStatus: { href: 'accessStatus.url' },
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@@ -6869,4 +6869,6 @@
|
|||||||
"metadata-export-filtered-items.submit.error": "CSV export failed.",
|
"metadata-export-filtered-items.submit.error": "CSV export failed.",
|
||||||
|
|
||||||
"metadata-export-filtered-items.columns.warning": "CSV export automatically includes all relevant fields, so selections in this list are not taken into account.",
|
"metadata-export-filtered-items.columns.warning": "CSV export automatically includes all relevant fields, so selections in this list are not taken into account.",
|
||||||
|
|
||||||
|
"embargo.listelement.badge": "Embargo until {{ date }}",
|
||||||
}
|
}
|
||||||
|
@@ -8595,4 +8595,7 @@
|
|||||||
|
|
||||||
//"metadata-export-filtered-items.columns.warning": "CSV export automatically includes all relevant fields, so selections in this list are not taken into account.",
|
//"metadata-export-filtered-items.columns.warning": "CSV export automatically includes all relevant fields, so selections in this list are not taken into account.",
|
||||||
"metadata-export-filtered-items.columns.warning": "L'exportation CSV inclut automatiquement tous les champs pertinents, sans égard au contenu sélectionné de cette liste.",
|
"metadata-export-filtered-items.columns.warning": "L'exportation CSV inclut automatiquement tous les champs pertinents, sans égard au contenu sélectionné de cette liste.",
|
||||||
|
|
||||||
|
// "embargo.listelement.badge": "embargo until {{ date }}",
|
||||||
|
"embargo.listelement.badge": "Embargo jusqu'à {{ date }}",
|
||||||
}
|
}
|
||||||
|
@@ -329,6 +329,8 @@ export class DefaultAppConfig implements AppConfig {
|
|||||||
// Rounded to the nearest size in the list of selectable sizes on the
|
// Rounded to the nearest size in the list of selectable sizes on the
|
||||||
// settings menu. See pageSizeOptions in 'pagination-component-options.model.ts'.
|
// settings menu. See pageSizeOptions in 'pagination-component-options.model.ts'.
|
||||||
pageSize: 5,
|
pageSize: 5,
|
||||||
|
// Show the bitstream access status label
|
||||||
|
showAccessStatuses: false,
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@@ -12,5 +12,7 @@ export interface ItemConfig extends Config {
|
|||||||
// Rounded to the nearest size in the list of selectable sizes on the
|
// Rounded to the nearest size in the list of selectable sizes on the
|
||||||
// settings menu. See pageSizeOptions in 'pagination-component-options.model.ts'.
|
// settings menu. See pageSizeOptions in 'pagination-component-options.model.ts'.
|
||||||
pageSize: number;
|
pageSize: number;
|
||||||
|
// Show the bitstream access status label
|
||||||
|
showAccessStatuses: boolean;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -269,6 +269,8 @@ export const environment: BuildConfig = {
|
|||||||
// Rounded to the nearest size in the list of selectable sizes on the
|
// Rounded to the nearest size in the list of selectable sizes on the
|
||||||
// settings menu. See pageSizeOptions in 'pagination-component-options.model.ts'.
|
// settings menu. See pageSizeOptions in 'pagination-component-options.model.ts'.
|
||||||
pageSize: 5,
|
pageSize: 5,
|
||||||
|
// Show the bitstream access status label
|
||||||
|
showAccessStatuses: false,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
community: {
|
community: {
|
||||||
|
@@ -6,6 +6,7 @@ import {
|
|||||||
import { Component } from '@angular/core';
|
import { Component } from '@angular/core';
|
||||||
import { RouterLink } from '@angular/router';
|
import { RouterLink } from '@angular/router';
|
||||||
import { TranslateModule } from '@ngx-translate/core';
|
import { TranslateModule } from '@ngx-translate/core';
|
||||||
|
import { ThemedAccessStatusBadgeComponent } from 'src/app/shared/object-collection/shared/badges/access-status-badge/themed-access-status-badge.component';
|
||||||
|
|
||||||
import { FileDownloadLinkComponent as BaseComponent } from '../../../../../app/shared/file-download-link/file-download-link.component';
|
import { FileDownloadLinkComponent as BaseComponent } from '../../../../../app/shared/file-download-link/file-download-link.component';
|
||||||
|
|
||||||
@@ -16,7 +17,7 @@ import { FileDownloadLinkComponent as BaseComponent } from '../../../../../app/s
|
|||||||
// styleUrls: ['./file-download-link.component.scss'],
|
// styleUrls: ['./file-download-link.component.scss'],
|
||||||
styleUrls: ['../../../../../app/shared/file-download-link/file-download-link.component.scss'],
|
styleUrls: ['../../../../../app/shared/file-download-link/file-download-link.component.scss'],
|
||||||
standalone: true,
|
standalone: true,
|
||||||
imports: [RouterLink, NgClass, NgTemplateOutlet, AsyncPipe, TranslateModule],
|
imports: [RouterLink, NgClass, NgTemplateOutlet, AsyncPipe, TranslateModule, ThemedAccessStatusBadgeComponent],
|
||||||
})
|
})
|
||||||
export class FileDownloadLinkComponent extends BaseComponent {
|
export class FileDownloadLinkComponent extends BaseComponent {
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user