mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 18:14:17 +00:00
Merge branch 'main' of github.com:harvard-lts/dspace-angular into 145-base-path-support
This commit is contained in:
@@ -164,10 +164,12 @@ browseBy:
|
|||||||
# The absolute lowest year to display in the dropdown (only used when no lowest date can be found for all items)
|
# The absolute lowest year to display in the dropdown (only used when no lowest date can be found for all items)
|
||||||
defaultLowerLimit: 1900
|
defaultLowerLimit: 1900
|
||||||
|
|
||||||
# Item Page Config
|
# Item Config
|
||||||
item:
|
item:
|
||||||
edit:
|
edit:
|
||||||
undoTimeout: 10000 # 10 seconds
|
undoTimeout: 10000 # 10 seconds
|
||||||
|
# Show the item access status label in items lists
|
||||||
|
showAccessStatuses: false
|
||||||
|
|
||||||
# Collection Page Config
|
# Collection Page Config
|
||||||
collection:
|
collection:
|
||||||
|
@@ -18,6 +18,8 @@ import { ItemAdminSearchResultGridElementComponent } from './item-admin-search-r
|
|||||||
import { createSuccessfulRemoteDataObject$ } from '../../../../../shared/remote-data.utils';
|
import { createSuccessfulRemoteDataObject$ } from '../../../../../shared/remote-data.utils';
|
||||||
import { getMockThemeService } from '../../../../../shared/mocks/theme-service.mock';
|
import { getMockThemeService } from '../../../../../shared/mocks/theme-service.mock';
|
||||||
import { ThemeService } from '../../../../../shared/theme-support/theme.service';
|
import { ThemeService } from '../../../../../shared/theme-support/theme.service';
|
||||||
|
import { AccessStatusDataService } from 'src/app/core/data/access-status-data.service';
|
||||||
|
import { AccessStatusObject } from 'src/app/shared/object-list/access-status-badge/access-status.model';
|
||||||
|
|
||||||
describe('ItemAdminSearchResultGridElementComponent', () => {
|
describe('ItemAdminSearchResultGridElementComponent', () => {
|
||||||
let component: ItemAdminSearchResultGridElementComponent;
|
let component: ItemAdminSearchResultGridElementComponent;
|
||||||
@@ -31,6 +33,12 @@ describe('ItemAdminSearchResultGridElementComponent', () => {
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const mockAccessStatusDataService = {
|
||||||
|
findAccessStatusFor(item: Item): Observable<RemoteData<AccessStatusObject>> {
|
||||||
|
return createSuccessfulRemoteDataObject$(new AccessStatusObject());
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
const mockThemeService = getMockThemeService();
|
const mockThemeService = getMockThemeService();
|
||||||
|
|
||||||
function init() {
|
function init() {
|
||||||
@@ -55,6 +63,7 @@ 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 },
|
||||||
],
|
],
|
||||||
schemas: [NO_ERRORS_SCHEMA]
|
schemas: [NO_ERRORS_SCHEMA]
|
||||||
})
|
})
|
||||||
|
@@ -137,6 +137,7 @@ import { SiteAdministratorGuard } from './data/feature-authorization/feature-aut
|
|||||||
import { Registration } from './shared/registration.model';
|
import { Registration } from './shared/registration.model';
|
||||||
import { MetadataSchemaDataService } from './data/metadata-schema-data.service';
|
import { MetadataSchemaDataService } from './data/metadata-schema-data.service';
|
||||||
import { MetadataFieldDataService } from './data/metadata-field-data.service';
|
import { MetadataFieldDataService } from './data/metadata-field-data.service';
|
||||||
|
import { DsDynamicTypeBindRelationService } from '../shared/form/builder/ds-dynamic-form-ui/ds-dynamic-type-bind-relation.service';
|
||||||
import { TokenResponseParsingService } from './auth/token-response-parsing.service';
|
import { TokenResponseParsingService } from './auth/token-response-parsing.service';
|
||||||
import { SubmissionCcLicenseDataService } from './submission/submission-cc-license-data.service';
|
import { SubmissionCcLicenseDataService } from './submission/submission-cc-license-data.service';
|
||||||
import { SubmissionCcLicence } from './submission/models/submission-cc-license.model';
|
import { SubmissionCcLicence } from './submission/models/submission-cc-license.model';
|
||||||
@@ -163,6 +164,8 @@ import { SequenceService } from './shared/sequence.service';
|
|||||||
import { CoreState } from './core-state.model';
|
import { CoreState } from './core-state.model';
|
||||||
import { GroupDataService } from './eperson/group-data.service';
|
import { GroupDataService } from './eperson/group-data.service';
|
||||||
import { SubmissionAccessesModel } from './config/models/config-submission-accesses.model';
|
import { SubmissionAccessesModel } from './config/models/config-submission-accesses.model';
|
||||||
|
import { AccessStatusObject } from '../shared/object-list/access-status-badge/access-status.model';
|
||||||
|
import { AccessStatusDataService } from './data/access-status-data.service';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* When not in production, endpoint responses can be mocked for testing purposes
|
* When not in production, endpoint responses can be mocked for testing purposes
|
||||||
@@ -220,6 +223,7 @@ const PROVIDERS = [
|
|||||||
MyDSpaceResponseParsingService,
|
MyDSpaceResponseParsingService,
|
||||||
ServerResponseService,
|
ServerResponseService,
|
||||||
BrowseService,
|
BrowseService,
|
||||||
|
AccessStatusDataService,
|
||||||
SubmissionCcLicenseDataService,
|
SubmissionCcLicenseDataService,
|
||||||
SubmissionCcLicenseUrlDataService,
|
SubmissionCcLicenseUrlDataService,
|
||||||
SubmissionFormsConfigService,
|
SubmissionFormsConfigService,
|
||||||
@@ -250,6 +254,7 @@ const PROVIDERS = [
|
|||||||
ClaimedTaskDataService,
|
ClaimedTaskDataService,
|
||||||
PoolTaskDataService,
|
PoolTaskDataService,
|
||||||
BitstreamDataService,
|
BitstreamDataService,
|
||||||
|
DsDynamicTypeBindRelationService,
|
||||||
EntityTypeService,
|
EntityTypeService,
|
||||||
ContentSourceResponseParsingService,
|
ContentSourceResponseParsingService,
|
||||||
ItemTemplateDataService,
|
ItemTemplateDataService,
|
||||||
@@ -346,7 +351,8 @@ export const models =
|
|||||||
UsageReport,
|
UsageReport,
|
||||||
Root,
|
Root,
|
||||||
SearchConfig,
|
SearchConfig,
|
||||||
SubmissionAccessesModel
|
SubmissionAccessesModel,
|
||||||
|
AccessStatusObject
|
||||||
];
|
];
|
||||||
|
|
||||||
@NgModule({
|
@NgModule({
|
||||||
|
81
src/app/core/data/access-status-data.service.spec.ts
Normal file
81
src/app/core/data/access-status-data.service.spec.ts
Normal file
@@ -0,0 +1,81 @@
|
|||||||
|
import { RequestService } from './request.service';
|
||||||
|
import { getMockRequestService } from '../../shared/mocks/request.service.mock';
|
||||||
|
import { HALEndpointServiceStub } from '../../shared/testing/hal-endpoint-service.stub';
|
||||||
|
import { NotificationsServiceStub } from '../../shared/testing/notifications-service.stub';
|
||||||
|
import { fakeAsync, tick } from '@angular/core/testing';
|
||||||
|
import { GetRequest } from './request.models';
|
||||||
|
import { ObjectCacheService } from '../cache/object-cache.service';
|
||||||
|
import { RemoteDataBuildService } from '../cache/builders/remote-data-build.service';
|
||||||
|
import { createSuccessfulRemoteDataObject$ } from '../../shared/remote-data.utils';
|
||||||
|
import { Observable } from 'rxjs';
|
||||||
|
import { RemoteData } from './remote-data';
|
||||||
|
import { hasNoValue } from '../../shared/empty.util';
|
||||||
|
import { AccessStatusDataService } from './access-status-data.service';
|
||||||
|
import { Item } from '../shared/item.model';
|
||||||
|
|
||||||
|
const url = 'fake-url';
|
||||||
|
|
||||||
|
describe('AccessStatusDataService', () => {
|
||||||
|
let service: AccessStatusDataService;
|
||||||
|
let requestService: RequestService;
|
||||||
|
let notificationsService: any;
|
||||||
|
let rdbService: RemoteDataBuildService;
|
||||||
|
let objectCache: ObjectCacheService;
|
||||||
|
let halService: any;
|
||||||
|
|
||||||
|
const itemId = '8b3c613a-5a4b-438b-9686-be1d5b4a1c5a';
|
||||||
|
const mockItem: Item = Object.assign(new Item(), {
|
||||||
|
id: itemId,
|
||||||
|
name: 'test-item',
|
||||||
|
_links: {
|
||||||
|
accessStatus: {
|
||||||
|
href: `https://rest.api/items/${itemId}/accessStatus`
|
||||||
|
},
|
||||||
|
self: {
|
||||||
|
href: `https://rest.api/items/${itemId}`
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('when the requests are successful', () => {
|
||||||
|
beforeEach(() => {
|
||||||
|
createService();
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('when calling findAccessStatusFor', () => {
|
||||||
|
let contentSource$;
|
||||||
|
|
||||||
|
beforeEach(() => {
|
||||||
|
contentSource$ = service.findAccessStatusFor(mockItem);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should send a new GetRequest', fakeAsync(() => {
|
||||||
|
contentSource$.subscribe();
|
||||||
|
tick();
|
||||||
|
expect(requestService.send).toHaveBeenCalledWith(jasmine.any(GetRequest), true);
|
||||||
|
}));
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an AccessStatusDataService used for testing
|
||||||
|
* @param reponse$ Supply a RemoteData to be returned by the REST API (optional)
|
||||||
|
*/
|
||||||
|
function createService(reponse$?: Observable<RemoteData<any>>) {
|
||||||
|
requestService = getMockRequestService();
|
||||||
|
let buildResponse$ = reponse$;
|
||||||
|
if (hasNoValue(reponse$)) {
|
||||||
|
buildResponse$ = createSuccessfulRemoteDataObject$({});
|
||||||
|
}
|
||||||
|
rdbService = jasmine.createSpyObj('rdbService', {
|
||||||
|
buildFromRequestUUID: buildResponse$,
|
||||||
|
buildSingle: buildResponse$
|
||||||
|
});
|
||||||
|
objectCache = jasmine.createSpyObj('objectCache', {
|
||||||
|
remove: jasmine.createSpy('remove')
|
||||||
|
});
|
||||||
|
halService = new HALEndpointServiceStub(url);
|
||||||
|
notificationsService = new NotificationsServiceStub();
|
||||||
|
service = new AccessStatusDataService(null, halService, null, notificationsService, objectCache, rdbService, requestService, null);
|
||||||
|
}
|
||||||
|
});
|
45
src/app/core/data/access-status-data.service.ts
Normal file
45
src/app/core/data/access-status-data.service.ts
Normal file
@@ -0,0 +1,45 @@
|
|||||||
|
import { HttpClient } from '@angular/common/http';
|
||||||
|
import { Injectable } from '@angular/core';
|
||||||
|
import { Store } from '@ngrx/store';
|
||||||
|
import { NotificationsService } from '../../shared/notifications/notifications.service';
|
||||||
|
import { dataService } from '../cache/builders/build-decorators';
|
||||||
|
import { RemoteDataBuildService } from '../cache/builders/remote-data-build.service';
|
||||||
|
import { ObjectCacheService } from '../cache/object-cache.service';
|
||||||
|
import { HALEndpointService } from '../shared/hal-endpoint.service';
|
||||||
|
import { DataService } from './data.service';
|
||||||
|
import { RequestService } from './request.service';
|
||||||
|
import { DefaultChangeAnalyzer } from './default-change-analyzer.service';
|
||||||
|
import { CoreState } from '../core-state.model';
|
||||||
|
import { AccessStatusObject } from 'src/app/shared/object-list/access-status-badge/access-status.model';
|
||||||
|
import { ACCESS_STATUS } from 'src/app/shared/object-list/access-status-badge/access-status.resource-type';
|
||||||
|
import { Observable } from 'rxjs';
|
||||||
|
import { RemoteData } from './remote-data';
|
||||||
|
import { Item } from '../shared/item.model';
|
||||||
|
|
||||||
|
@Injectable()
|
||||||
|
@dataService(ACCESS_STATUS)
|
||||||
|
export class AccessStatusDataService extends DataService<AccessStatusObject> {
|
||||||
|
|
||||||
|
protected linkPath = 'accessStatus';
|
||||||
|
|
||||||
|
constructor(
|
||||||
|
protected comparator: DefaultChangeAnalyzer<AccessStatusObject>,
|
||||||
|
protected halService: HALEndpointService,
|
||||||
|
protected http: HttpClient,
|
||||||
|
protected notificationsService: NotificationsService,
|
||||||
|
protected objectCache: ObjectCacheService,
|
||||||
|
protected rdbService: RemoteDataBuildService,
|
||||||
|
protected requestService: RequestService,
|
||||||
|
protected store: Store<CoreState>,
|
||||||
|
) {
|
||||||
|
super();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns {@link RemoteData} of {@link AccessStatusObject} that is the access status of the given item
|
||||||
|
* @param item Item we want the access status of
|
||||||
|
*/
|
||||||
|
findAccessStatusFor(item: Item): Observable<RemoteData<AccessStatusObject>> {
|
||||||
|
return this.findByHref(item._links.accessStatus.href);
|
||||||
|
}
|
||||||
|
}
|
@@ -10,12 +10,13 @@ import { ObjectCacheService } from '../cache/object-cache.service';
|
|||||||
import { RestResponse } from '../cache/response.models';
|
import { RestResponse } from '../cache/response.models';
|
||||||
import { ExternalSourceEntry } from '../shared/external-source-entry.model';
|
import { ExternalSourceEntry } from '../shared/external-source-entry.model';
|
||||||
import { ItemDataService } from './item-data.service';
|
import { ItemDataService } from './item-data.service';
|
||||||
import { DeleteRequest, PostRequest } from './request.models';
|
import { DeleteRequest, GetRequest, PostRequest } from './request.models';
|
||||||
import { RequestService } from './request.service';
|
import { RequestService } from './request.service';
|
||||||
import { getMockRemoteDataBuildService } from '../../shared/mocks/remote-data-build.service.mock';
|
import { getMockRemoteDataBuildService } from '../../shared/mocks/remote-data-build.service.mock';
|
||||||
import { CoreState } from '../core-state.model';
|
import { CoreState } from '../core-state.model';
|
||||||
import { RequestEntry } from './request-entry.model';
|
import { RequestEntry } from './request-entry.model';
|
||||||
import { FindListOptions } from './find-list-options.model';
|
import { FindListOptions } from './find-list-options.model';
|
||||||
|
import { HALEndpointServiceStub } from 'src/app/shared/testing/hal-endpoint-service.stub';
|
||||||
|
|
||||||
describe('ItemDataService', () => {
|
describe('ItemDataService', () => {
|
||||||
let scheduler: TestScheduler;
|
let scheduler: TestScheduler;
|
||||||
@@ -36,13 +37,11 @@ describe('ItemDataService', () => {
|
|||||||
}) as RequestService;
|
}) as RequestService;
|
||||||
const rdbService = getMockRemoteDataBuildService();
|
const rdbService = getMockRemoteDataBuildService();
|
||||||
|
|
||||||
const itemEndpoint = 'https://rest.api/core/items';
|
const itemEndpoint = 'https://rest.api/core';
|
||||||
|
|
||||||
const store = {} as Store<CoreState>;
|
const store = {} as Store<CoreState>;
|
||||||
const objectCache = {} as ObjectCacheService;
|
const objectCache = {} as ObjectCacheService;
|
||||||
const halEndpointService = jasmine.createSpyObj('halService', {
|
const halEndpointService: any = new HALEndpointServiceStub(itemEndpoint);
|
||||||
getEndpoint: observableOf(itemEndpoint)
|
|
||||||
});
|
|
||||||
const bundleService = jasmine.createSpyObj('bundleService', {
|
const bundleService = jasmine.createSpyObj('bundleService', {
|
||||||
findByHref: {}
|
findByHref: {}
|
||||||
});
|
});
|
||||||
|
@@ -151,7 +151,7 @@ describe('VersionHistoryDataService', () => {
|
|||||||
describe('when getVersionsEndpoint is called', () => {
|
describe('when getVersionsEndpoint is called', () => {
|
||||||
it('should return the correct value', () => {
|
it('should return the correct value', () => {
|
||||||
service.getVersionsEndpoint(versionHistoryId).subscribe((res) => {
|
service.getVersionsEndpoint(versionHistoryId).subscribe((res) => {
|
||||||
expect(res).toBe(url + '/versions');
|
expect(res).toBe(url + '/versionhistories/version-history-id/versions');
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
@@ -21,6 +21,8 @@ import { Version } from './version.model';
|
|||||||
import { VERSION } from './version.resource-type';
|
import { VERSION } from './version.resource-type';
|
||||||
import { BITSTREAM } from './bitstream.resource-type';
|
import { BITSTREAM } from './bitstream.resource-type';
|
||||||
import { Bitstream } from './bitstream.model';
|
import { Bitstream } from './bitstream.model';
|
||||||
|
import { ACCESS_STATUS } from 'src/app/shared/object-list/access-status-badge/access-status.resource-type';
|
||||||
|
import { AccessStatusObject } from 'src/app/shared/object-list/access-status-badge/access-status.model';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class representing a DSpace Item
|
* Class representing a DSpace Item
|
||||||
@@ -72,6 +74,7 @@ export class Item extends DSpaceObject implements ChildHALResource {
|
|||||||
templateItemOf: HALLink;
|
templateItemOf: HALLink;
|
||||||
version: HALLink;
|
version: HALLink;
|
||||||
thumbnail: HALLink;
|
thumbnail: HALLink;
|
||||||
|
accessStatus: HALLink;
|
||||||
self: HALLink;
|
self: HALLink;
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -110,6 +113,13 @@ export class Item extends DSpaceObject implements ChildHALResource {
|
|||||||
@link(BITSTREAM, false, 'thumbnail')
|
@link(BITSTREAM, false, 'thumbnail')
|
||||||
thumbnail?: Observable<RemoteData<Bitstream>>;
|
thumbnail?: Observable<RemoteData<Bitstream>>;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The access status for this Item
|
||||||
|
* Will be undefined unless the access status {@link HALLink} has been resolved.
|
||||||
|
*/
|
||||||
|
@link(ACCESS_STATUS)
|
||||||
|
accessStatus?: Observable<RemoteData<AccessStatusObject>>;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Method that returns as which type of object this object should be rendered
|
* Method that returns as which type of object this object should be rendered
|
||||||
*/
|
*/
|
||||||
|
@@ -9,7 +9,7 @@ import {
|
|||||||
isNotEmptyOperator,
|
isNotEmptyOperator,
|
||||||
isNotNull,
|
isNotNull,
|
||||||
isNotUndefined,
|
isNotUndefined,
|
||||||
isNull,
|
isNull, isObjectEmpty,
|
||||||
isUndefined
|
isUndefined
|
||||||
} from './empty.util';
|
} from './empty.util';
|
||||||
|
|
||||||
@@ -444,6 +444,43 @@ describe('Empty Utils', () => {
|
|||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
describe('isObjectEmpty', () => {
|
||||||
|
/*
|
||||||
|
isObjectEmpty(); // true
|
||||||
|
isObjectEmpty(null); // true
|
||||||
|
isObjectEmpty(undefined); // true
|
||||||
|
isObjectEmpty(''); // true
|
||||||
|
isObjectEmpty([]); // true
|
||||||
|
isObjectEmpty({}); // true
|
||||||
|
isObjectEmpty({name: null}); // true
|
||||||
|
isObjectEmpty({ name: 'Adam Hawkins', surname : null}); // false
|
||||||
|
*/
|
||||||
|
it('should be empty if no parameter passed', () => {
|
||||||
|
expect(isObjectEmpty()).toBeTrue();
|
||||||
|
});
|
||||||
|
it('should be empty if null parameter passed', () => {
|
||||||
|
expect(isObjectEmpty(null)).toBeTrue();
|
||||||
|
});
|
||||||
|
it('should be empty if undefined parameter passed', () => {
|
||||||
|
expect(isObjectEmpty(undefined)).toBeTrue();
|
||||||
|
});
|
||||||
|
it('should be empty if empty string passed', () => {
|
||||||
|
expect(isObjectEmpty('')).toBeTrue();
|
||||||
|
});
|
||||||
|
it('should be empty if empty array passed', () => {
|
||||||
|
expect(isObjectEmpty([])).toBeTrue();
|
||||||
|
});
|
||||||
|
it('should be empty if empty object passed', () => {
|
||||||
|
expect(isObjectEmpty({})).toBeTrue();
|
||||||
|
});
|
||||||
|
it('should be empty if single key with null value passed', () => {
|
||||||
|
expect(isObjectEmpty({ name: null })).toBeTrue();
|
||||||
|
});
|
||||||
|
it('should NOT be empty if object with at least one non-null value passed', () => {
|
||||||
|
expect(isObjectEmpty({ name: 'Adam Hawkins', surname : null })).toBeFalse();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
describe('ensureArrayHasValue', () => {
|
describe('ensureArrayHasValue', () => {
|
||||||
it('should let all arrays pass unchanged, and turn everything else in to empty arrays', () => {
|
it('should let all arrays pass unchanged, and turn everything else in to empty arrays', () => {
|
||||||
const sourceData = {
|
const sourceData = {
|
||||||
|
@@ -177,3 +177,29 @@ export const isNotEmptyOperator = () =>
|
|||||||
export const ensureArrayHasValue = () =>
|
export const ensureArrayHasValue = () =>
|
||||||
<T>(source: Observable<T[]>): Observable<T[]> =>
|
<T>(source: Observable<T[]>): Observable<T[]> =>
|
||||||
source.pipe(map((arr: T[]): T[] => Array.isArray(arr) ? arr : []));
|
source.pipe(map((arr: T[]): T[] => Array.isArray(arr) ? arr : []));
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Verifies that a object keys are all empty or not.
|
||||||
|
* isObjectEmpty(); // true
|
||||||
|
* isObjectEmpty(null); // true
|
||||||
|
* isObjectEmpty(undefined); // true
|
||||||
|
* isObjectEmpty(''); // true
|
||||||
|
* isObjectEmpty([]); // true
|
||||||
|
* isObjectEmpty({}); // true
|
||||||
|
* isObjectEmpty({name: null}); // true
|
||||||
|
* isObjectEmpty({ name: 'Adam Hawkins', surname : null}); // false
|
||||||
|
*/
|
||||||
|
export function isObjectEmpty(obj?: any): boolean {
|
||||||
|
|
||||||
|
if (typeof(obj) !== 'object') {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
for (const key in obj) {
|
||||||
|
if (obj.hasOwnProperty(key) && isNotEmpty(obj[key])) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
@@ -1,4 +1,5 @@
|
|||||||
<div [class.form-group]="(model.type !== 'GROUP' && asBootstrapFormGroup) || getClass('element', 'container').includes('form-group')"
|
<div [class.form-group]="(model.type !== 'GROUP' && asBootstrapFormGroup) || getClass('element', 'container').includes('form-group')"
|
||||||
|
[class.d-none]="model.hidden"
|
||||||
[formGroup]="group"
|
[formGroup]="group"
|
||||||
[ngClass]="[getClass('element', 'container'), getClass('grid', 'container')]">
|
[ngClass]="[getClass('element', 'container'), getClass('grid', 'container')]">
|
||||||
<label *ngIf="!isCheckbox && hasLabel"
|
<label *ngIf="!isCheckbox && hasLabel"
|
||||||
@@ -6,7 +7,7 @@
|
|||||||
[for]="id"
|
[for]="id"
|
||||||
[innerHTML]="(model.required && model.label) ? (model.label | translate) + ' *' : (model.label | translate)"
|
[innerHTML]="(model.required && model.label) ? (model.label | translate) + ' *' : (model.label | translate)"
|
||||||
[ngClass]="[getClass('element', 'label'), getClass('grid', 'label')]"></label>
|
[ngClass]="[getClass('element', 'label'), getClass('grid', 'label')]"></label>
|
||||||
<ng-container *ngTemplateOutlet="startTemplate?.templateRef; context: model"></ng-container>
|
<ng-container *ngTemplateOutlet="startTemplate?.templateRef; context: { $implicit: model };"></ng-container>
|
||||||
<!-- Should be *ngIf instead of class d-none, but that breaks the #componentViewContainer reference-->
|
<!-- Should be *ngIf instead of class d-none, but that breaks the #componentViewContainer reference-->
|
||||||
<div [ngClass]="{'form-row': model.hasLanguages || isRelationship,
|
<div [ngClass]="{'form-row': model.hasLanguages || isRelationship,
|
||||||
'd-none': value?.isVirtual && (model.hasSelectableMetadata || context?.index > 0)}">
|
'd-none': value?.isVirtual && (model.hasSelectableMetadata || context?.index > 0)}">
|
||||||
|
@@ -25,7 +25,7 @@ import {
|
|||||||
DynamicSliderModel,
|
DynamicSliderModel,
|
||||||
DynamicSwitchModel,
|
DynamicSwitchModel,
|
||||||
DynamicTextAreaModel,
|
DynamicTextAreaModel,
|
||||||
DynamicTimePickerModel
|
DynamicTimePickerModel, MATCH_VISIBLE, OR_OPERATOR
|
||||||
} from '@ng-dynamic-forms/core';
|
} from '@ng-dynamic-forms/core';
|
||||||
import {
|
import {
|
||||||
DynamicNGBootstrapCalendarComponent,
|
DynamicNGBootstrapCalendarComponent,
|
||||||
@@ -65,6 +65,7 @@ import { DsDynamicFormArrayComponent } from './models/array-group/dynamic-form-a
|
|||||||
import { DsDynamicFormGroupComponent } from './models/form-group/dynamic-form-group.component';
|
import { DsDynamicFormGroupComponent } from './models/form-group/dynamic-form-group.component';
|
||||||
import { DsDynamicRelationGroupComponent } from './models/relation-group/dynamic-relation-group.components';
|
import { DsDynamicRelationGroupComponent } from './models/relation-group/dynamic-relation-group.components';
|
||||||
import { DsDatePickerInlineComponent } from './models/date-picker-inline/dynamic-date-picker-inline.component';
|
import { DsDatePickerInlineComponent } from './models/date-picker-inline/dynamic-date-picker-inline.component';
|
||||||
|
import { DsDynamicTypeBindRelationService } from './ds-dynamic-type-bind-relation.service';
|
||||||
import { RelationshipService } from '../../../../core/data/relationship.service';
|
import { RelationshipService } from '../../../../core/data/relationship.service';
|
||||||
import { SelectableListService } from '../../../object-list/selectable-list/selectable-list.service';
|
import { SelectableListService } from '../../../object-list/selectable-list/selectable-list.service';
|
||||||
import { ItemDataService } from '../../../../core/data/item-data.service';
|
import { ItemDataService } from '../../../../core/data/item-data.service';
|
||||||
@@ -79,6 +80,14 @@ import { SubmissionService } from '../../../../submission/submission.service';
|
|||||||
import { FormBuilderService } from '../form-builder.service';
|
import { FormBuilderService } from '../form-builder.service';
|
||||||
import { NgxMaskModule } from 'ngx-mask';
|
import { NgxMaskModule } from 'ngx-mask';
|
||||||
|
|
||||||
|
function getMockDsDynamicTypeBindRelationService(): DsDynamicTypeBindRelationService {
|
||||||
|
return jasmine.createSpyObj('DsDynamicTypeBindRelationService', {
|
||||||
|
getRelatedFormModel: jasmine.createSpy('getRelatedFormModel'),
|
||||||
|
matchesCondition: jasmine.createSpy('matchesCondition'),
|
||||||
|
subscribeRelations: jasmine.createSpy('subscribeRelations')
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
describe('DsDynamicFormControlContainerComponent test suite', () => {
|
describe('DsDynamicFormControlContainerComponent test suite', () => {
|
||||||
|
|
||||||
const vocabularyOptions: VocabularyOptions = {
|
const vocabularyOptions: VocabularyOptions = {
|
||||||
@@ -111,7 +120,12 @@ describe('DsDynamicFormControlContainerComponent test suite', () => {
|
|||||||
metadataFields: [],
|
metadataFields: [],
|
||||||
repeatable: false,
|
repeatable: false,
|
||||||
submissionId: '1234',
|
submissionId: '1234',
|
||||||
hasSelectableMetadata: false
|
hasSelectableMetadata: false,
|
||||||
|
typeBindRelations: [{
|
||||||
|
match: MATCH_VISIBLE,
|
||||||
|
operator: OR_OPERATOR,
|
||||||
|
when: [{id: 'dc.type', value: 'Book'}]
|
||||||
|
}]
|
||||||
}),
|
}),
|
||||||
new DynamicScrollableDropdownModel({
|
new DynamicScrollableDropdownModel({
|
||||||
id: 'scrollableDropdown',
|
id: 'scrollableDropdown',
|
||||||
@@ -200,6 +214,7 @@ describe('DsDynamicFormControlContainerComponent test suite', () => {
|
|||||||
providers: [
|
providers: [
|
||||||
DsDynamicFormControlContainerComponent,
|
DsDynamicFormControlContainerComponent,
|
||||||
DynamicFormService,
|
DynamicFormService,
|
||||||
|
{ provide: DsDynamicTypeBindRelationService, useValue: getMockDsDynamicTypeBindRelationService() },
|
||||||
{ provide: RelationshipService, useValue: {} },
|
{ provide: RelationshipService, useValue: {} },
|
||||||
{ provide: SelectableListService, useValue: {} },
|
{ provide: SelectableListService, useValue: {} },
|
||||||
{ provide: ItemDataService, useValue: {} },
|
{ provide: ItemDataService, useValue: {} },
|
||||||
@@ -231,7 +246,7 @@ describe('DsDynamicFormControlContainerComponent test suite', () => {
|
|||||||
});
|
});
|
||||||
}));
|
}));
|
||||||
|
|
||||||
beforeEach(inject([DynamicFormService], (service: DynamicFormService) => {
|
beforeEach(inject([DynamicFormService, FormBuilderService], (service: DynamicFormService, formBuilderService: FormBuilderService) => {
|
||||||
|
|
||||||
formGroup = service.createFormGroup(formModel);
|
formGroup = service.createFormGroup(formModel);
|
||||||
|
|
||||||
|
@@ -81,6 +81,7 @@ import { DYNAMIC_FORM_CONTROL_TYPE_CUSTOM_SWITCH } from './models/custom-switch/
|
|||||||
import { CustomSwitchComponent } from './models/custom-switch/custom-switch.component';
|
import { CustomSwitchComponent } from './models/custom-switch/custom-switch.component';
|
||||||
import { find, map, startWith, switchMap, take } from 'rxjs/operators';
|
import { find, map, startWith, switchMap, take } from 'rxjs/operators';
|
||||||
import { combineLatest as observableCombineLatest, Observable, Subscription } from 'rxjs';
|
import { combineLatest as observableCombineLatest, Observable, Subscription } from 'rxjs';
|
||||||
|
import { DsDynamicTypeBindRelationService } from './ds-dynamic-type-bind-relation.service';
|
||||||
import { SearchResult } from '../../../search/models/search-result.model';
|
import { SearchResult } from '../../../search/models/search-result.model';
|
||||||
import { DSpaceObject } from '../../../../core/shared/dspace-object.model';
|
import { DSpaceObject } from '../../../../core/shared/dspace-object.model';
|
||||||
import { NgbModal, NgbModalRef } from '@ng-bootstrap/ng-bootstrap';
|
import { NgbModal, NgbModalRef } from '@ng-bootstrap/ng-bootstrap';
|
||||||
@@ -194,8 +195,10 @@ export class DsDynamicFormControlContainerComponent extends DynamicFormControlCo
|
|||||||
@ContentChildren(DynamicTemplateDirective) contentTemplateList: QueryList<DynamicTemplateDirective>;
|
@ContentChildren(DynamicTemplateDirective) contentTemplateList: QueryList<DynamicTemplateDirective>;
|
||||||
// eslint-disable-next-line @angular-eslint/no-input-rename
|
// eslint-disable-next-line @angular-eslint/no-input-rename
|
||||||
@Input('templates') inputTemplateList: QueryList<DynamicTemplateDirective>;
|
@Input('templates') inputTemplateList: QueryList<DynamicTemplateDirective>;
|
||||||
|
@Input() hasMetadataModel: any;
|
||||||
@Input() formId: string;
|
@Input() formId: string;
|
||||||
|
@Input() formGroup: FormGroup;
|
||||||
|
@Input() formModel: DynamicFormControlModel[];
|
||||||
@Input() asBootstrapFormGroup = false;
|
@Input() asBootstrapFormGroup = false;
|
||||||
@Input() bindId = true;
|
@Input() bindId = true;
|
||||||
@Input() context: any | null = null;
|
@Input() context: any | null = null;
|
||||||
@@ -237,6 +240,7 @@ export class DsDynamicFormControlContainerComponent extends DynamicFormControlCo
|
|||||||
protected dynamicFormComponentService: DynamicFormComponentService,
|
protected dynamicFormComponentService: DynamicFormComponentService,
|
||||||
protected layoutService: DynamicFormLayoutService,
|
protected layoutService: DynamicFormLayoutService,
|
||||||
protected validationService: DynamicFormValidationService,
|
protected validationService: DynamicFormValidationService,
|
||||||
|
protected typeBindRelationService: DsDynamicTypeBindRelationService,
|
||||||
protected translateService: TranslateService,
|
protected translateService: TranslateService,
|
||||||
protected relationService: DynamicFormRelationService,
|
protected relationService: DynamicFormRelationService,
|
||||||
private modalService: NgbModal,
|
private modalService: NgbModal,
|
||||||
@@ -343,6 +347,9 @@ export class DsDynamicFormControlContainerComponent extends DynamicFormControlCo
|
|||||||
if (this.model && this.model.placeholder) {
|
if (this.model && this.model.placeholder) {
|
||||||
this.model.placeholder = this.translateService.instant(this.model.placeholder);
|
this.model.placeholder = this.translateService.instant(this.model.placeholder);
|
||||||
}
|
}
|
||||||
|
if (this.model.typeBindRelations && this.model.typeBindRelations.length > 0) {
|
||||||
|
this.subscriptions.push(...this.typeBindRelationService.subscribeRelations(this.model, this.control));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -357,6 +364,22 @@ export class DsDynamicFormControlContainerComponent extends DynamicFormControlCo
|
|||||||
this.showErrorMessagesPreviousStage = this.showErrorMessages;
|
this.showErrorMessagesPreviousStage = this.showErrorMessages;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
protected createFormControlComponent(): void {
|
||||||
|
super.createFormControlComponent();
|
||||||
|
if (this.componentType !== null) {
|
||||||
|
let index;
|
||||||
|
|
||||||
|
if (this.context && this.context instanceof DynamicFormArrayGroupModel) {
|
||||||
|
index = this.context.index;
|
||||||
|
}
|
||||||
|
const instance = this.dynamicFormComponentService.getFormControlRef(this.model, index);
|
||||||
|
if (instance) {
|
||||||
|
(instance as any).formModel = this.formModel;
|
||||||
|
(instance as any).formGroup = this.formGroup;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Since Form Control Components created dynamically have 'OnPush' change detection strategy,
|
* Since Form Control Components created dynamically have 'OnPush' change detection strategy,
|
||||||
* changes are not propagated. So use this method to force an update
|
* changes are not propagated. So use this method to force an update
|
||||||
|
@@ -3,6 +3,7 @@
|
|||||||
[group]="formGroup"
|
[group]="formGroup"
|
||||||
[hasErrorMessaging]="model.hasErrorMessages"
|
[hasErrorMessaging]="model.hasErrorMessages"
|
||||||
[hidden]="model.hidden"
|
[hidden]="model.hidden"
|
||||||
|
[class.d-none]="model.hidden"
|
||||||
[layout]="formLayout"
|
[layout]="formLayout"
|
||||||
[model]="model"
|
[model]="model"
|
||||||
[templates]="templates"
|
[templates]="templates"
|
||||||
|
@@ -0,0 +1,143 @@
|
|||||||
|
import {inject, TestBed} from '@angular/core/testing';
|
||||||
|
|
||||||
|
import {
|
||||||
|
DynamicFormControlRelation,
|
||||||
|
DynamicFormRelationService,
|
||||||
|
MATCH_VISIBLE,
|
||||||
|
OR_OPERATOR,
|
||||||
|
HIDDEN_MATCHER,
|
||||||
|
HIDDEN_MATCHER_PROVIDER, REQUIRED_MATCHER_PROVIDER, DISABLED_MATCHER_PROVIDER,
|
||||||
|
} from '@ng-dynamic-forms/core';
|
||||||
|
|
||||||
|
import {
|
||||||
|
mockInputWithTypeBindModel, MockRelationModel, mockDcTypeInputModel
|
||||||
|
} from '../../../mocks/form-models.mock';
|
||||||
|
import {DsDynamicTypeBindRelationService} from './ds-dynamic-type-bind-relation.service';
|
||||||
|
import {FormFieldMetadataValueObject} from '../models/form-field-metadata-value.model';
|
||||||
|
import {FormControl, ReactiveFormsModule} from '@angular/forms';
|
||||||
|
import {FormBuilderService} from '../form-builder.service';
|
||||||
|
import {getMockFormBuilderService} from '../../../mocks/form-builder-service.mock';
|
||||||
|
import {Injector} from '@angular/core';
|
||||||
|
|
||||||
|
describe('DSDynamicTypeBindRelationService test suite', () => {
|
||||||
|
let service: DsDynamicTypeBindRelationService;
|
||||||
|
let dynamicFormRelationService: DynamicFormRelationService;
|
||||||
|
let injector: Injector;
|
||||||
|
|
||||||
|
beforeEach(() => {
|
||||||
|
TestBed.configureTestingModule({
|
||||||
|
imports: [ReactiveFormsModule],
|
||||||
|
providers: [
|
||||||
|
{ provide: FormBuilderService, useValue: getMockFormBuilderService() },
|
||||||
|
{ provide: DsDynamicTypeBindRelationService, useClass: DsDynamicTypeBindRelationService },
|
||||||
|
{ provide: DynamicFormRelationService },
|
||||||
|
DISABLED_MATCHER_PROVIDER, HIDDEN_MATCHER_PROVIDER, REQUIRED_MATCHER_PROVIDER
|
||||||
|
]
|
||||||
|
}).compileComponents().then();
|
||||||
|
});
|
||||||
|
|
||||||
|
beforeEach(inject([DsDynamicTypeBindRelationService, DynamicFormRelationService],
|
||||||
|
(relationService: DsDynamicTypeBindRelationService,
|
||||||
|
formRelationService: DynamicFormRelationService,
|
||||||
|
) => {
|
||||||
|
service = relationService;
|
||||||
|
dynamicFormRelationService = formRelationService;
|
||||||
|
}));
|
||||||
|
|
||||||
|
describe('Test getTypeBindValue method', () => {
|
||||||
|
it('Should get type bind "boundType" from the given metadata object value', () => {
|
||||||
|
const mockMetadataValueObject: FormFieldMetadataValueObject = new FormFieldMetadataValueObject(
|
||||||
|
'boundType', null, null, 'Bound Type'
|
||||||
|
);
|
||||||
|
const bindType = service.getTypeBindValue(mockMetadataValueObject);
|
||||||
|
expect(bindType).toBe('boundType');
|
||||||
|
});
|
||||||
|
it('Should get type authority key "bound-auth-key" from the given metadata object value', () => {
|
||||||
|
const mockMetadataValueObject: FormFieldMetadataValueObject = new FormFieldMetadataValueObject(
|
||||||
|
'boundType', null, 'bound-auth-key', 'Bound Type'
|
||||||
|
);
|
||||||
|
const bindType = service.getTypeBindValue(mockMetadataValueObject);
|
||||||
|
expect(bindType).toBe('bound-auth-key');
|
||||||
|
});
|
||||||
|
it('Should get passed string returned directly as string passed instead of metadata', () => {
|
||||||
|
const bindType = service.getTypeBindValue('rawString');
|
||||||
|
expect(bindType).toBe('rawString');
|
||||||
|
});
|
||||||
|
it('Should get "undefined" returned directly as no object given', () => {
|
||||||
|
const bindType = service.getTypeBindValue(undefined);
|
||||||
|
expect(bindType).toBeUndefined();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('Test getRelatedFormModel method', () => {
|
||||||
|
it('Should get 0 related form models for simple type bind mock data', () => {
|
||||||
|
const testModel = MockRelationModel;
|
||||||
|
const relatedModels = service.getRelatedFormModel(testModel);
|
||||||
|
expect(relatedModels).toHaveSize(0);
|
||||||
|
});
|
||||||
|
it('Should get 1 related form models for mock relation model data', () => {
|
||||||
|
const testModel = mockInputWithTypeBindModel;
|
||||||
|
testModel.typeBindRelations = getTypeBindRelations(['boundType']);
|
||||||
|
const relatedModels = service.getRelatedFormModel(testModel);
|
||||||
|
expect(relatedModels).toHaveSize(1);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('Test matchesCondition method', () => {
|
||||||
|
it('Should receive one subscription to dc.type type binding"', () => {
|
||||||
|
const testModel = mockInputWithTypeBindModel;
|
||||||
|
testModel.typeBindRelations = getTypeBindRelations(['boundType']);
|
||||||
|
const dcTypeControl = new FormControl();
|
||||||
|
dcTypeControl.setValue('boundType');
|
||||||
|
let subscriptions = service.subscribeRelations(testModel, dcTypeControl);
|
||||||
|
expect(subscriptions).toHaveSize(1);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('Expect hasMatch to be true (ie. this should be hidden)', () => {
|
||||||
|
const testModel = mockInputWithTypeBindModel;
|
||||||
|
testModel.typeBindRelations = getTypeBindRelations(['boundType']);
|
||||||
|
const dcTypeControl = new FormControl();
|
||||||
|
dcTypeControl.setValue('boundType');
|
||||||
|
testModel.typeBindRelations[0].when[0].value = 'anotherType';
|
||||||
|
const relation = dynamicFormRelationService.findRelationByMatcher((testModel as any).typeBindRelations, HIDDEN_MATCHER);
|
||||||
|
const matcher = HIDDEN_MATCHER;
|
||||||
|
if (relation !== undefined) {
|
||||||
|
const hasMatch = service.matchesCondition(relation, matcher);
|
||||||
|
matcher.onChange(hasMatch, testModel, dcTypeControl, injector);
|
||||||
|
expect(hasMatch).toBeTruthy();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
it('Expect hasMatch to be false (ie. this should NOT be hidden)', () => {
|
||||||
|
const testModel = mockInputWithTypeBindModel;
|
||||||
|
testModel.typeBindRelations = getTypeBindRelations(['boundType']);
|
||||||
|
const dcTypeControl = new FormControl();
|
||||||
|
dcTypeControl.setValue('boundType');
|
||||||
|
testModel.typeBindRelations[0].when[0].value = 'boundType';
|
||||||
|
const relation = dynamicFormRelationService.findRelationByMatcher((testModel as any).typeBindRelations, HIDDEN_MATCHER);
|
||||||
|
const matcher = HIDDEN_MATCHER;
|
||||||
|
if (relation !== undefined) {
|
||||||
|
const hasMatch = service.matchesCondition(relation, matcher);
|
||||||
|
matcher.onChange(hasMatch, testModel, dcTypeControl, injector);
|
||||||
|
expect(hasMatch).toBeFalsy();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
|
function getTypeBindRelations(configuredTypeBindValues: string[]): DynamicFormControlRelation[] {
|
||||||
|
const bindValues = [];
|
||||||
|
configuredTypeBindValues.forEach((value) => {
|
||||||
|
bindValues.push({
|
||||||
|
id: 'dc.type',
|
||||||
|
value: value
|
||||||
|
});
|
||||||
|
});
|
||||||
|
return [{
|
||||||
|
match: MATCH_VISIBLE,
|
||||||
|
operator: OR_OPERATOR,
|
||||||
|
when: bindValues
|
||||||
|
}];
|
||||||
|
}
|
@@ -0,0 +1,230 @@
|
|||||||
|
import { Inject, Injectable, Injector, Optional } from '@angular/core';
|
||||||
|
import { FormControl } from '@angular/forms';
|
||||||
|
|
||||||
|
import { Subscription } from 'rxjs';
|
||||||
|
import { startWith } from 'rxjs/operators';
|
||||||
|
|
||||||
|
import {
|
||||||
|
AND_OPERATOR,
|
||||||
|
DYNAMIC_MATCHERS,
|
||||||
|
DynamicFormControlCondition,
|
||||||
|
DynamicFormControlMatcher,
|
||||||
|
DynamicFormControlModel,
|
||||||
|
DynamicFormControlRelation,
|
||||||
|
DynamicFormRelationService, MATCH_VISIBLE,
|
||||||
|
OR_OPERATOR
|
||||||
|
} from '@ng-dynamic-forms/core';
|
||||||
|
|
||||||
|
import {hasNoValue, hasValue} from '../../../empty.util';
|
||||||
|
import { FormBuilderService } from '../form-builder.service';
|
||||||
|
import { FormFieldMetadataValueObject } from '../models/form-field-metadata-value.model';
|
||||||
|
import { DYNAMIC_FORM_CONTROL_TYPE_RELATION_GROUP } from './ds-dynamic-form-constants';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Service to manage type binding for submission input fields
|
||||||
|
* Any form component with the typeBindRelations DynamicFormControlRelation property can be controlled this way
|
||||||
|
*/
|
||||||
|
@Injectable()
|
||||||
|
export class DsDynamicTypeBindRelationService {
|
||||||
|
|
||||||
|
constructor(@Optional() @Inject(DYNAMIC_MATCHERS) private dynamicMatchers: DynamicFormControlMatcher[],
|
||||||
|
protected dynamicFormRelationService: DynamicFormRelationService,
|
||||||
|
protected formBuilderService: FormBuilderService,
|
||||||
|
protected injector: Injector) {
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Return the string value of the type bind model
|
||||||
|
* @param bindModelValue
|
||||||
|
* @private
|
||||||
|
*/
|
||||||
|
public getTypeBindValue(bindModelValue: string | FormFieldMetadataValueObject): string {
|
||||||
|
let value;
|
||||||
|
if (hasNoValue(bindModelValue) || typeof bindModelValue === 'string') {
|
||||||
|
value = bindModelValue;
|
||||||
|
} else if (bindModelValue instanceof FormFieldMetadataValueObject
|
||||||
|
&& bindModelValue.hasAuthority()) {
|
||||||
|
value = bindModelValue.authority;
|
||||||
|
} else {
|
||||||
|
value = bindModelValue.value;
|
||||||
|
}
|
||||||
|
|
||||||
|
return value;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get models for this bind type
|
||||||
|
* @param model
|
||||||
|
*/
|
||||||
|
public getRelatedFormModel(model: DynamicFormControlModel): DynamicFormControlModel[] {
|
||||||
|
|
||||||
|
const models: DynamicFormControlModel[] = [];
|
||||||
|
|
||||||
|
(model as any).typeBindRelations.forEach((relGroup) => relGroup.when.forEach((rel) => {
|
||||||
|
|
||||||
|
if (model.id === rel.id) {
|
||||||
|
throw new Error(`FormControl ${model.id} cannot depend on itself`);
|
||||||
|
}
|
||||||
|
|
||||||
|
const bindModel: DynamicFormControlModel = this.formBuilderService.getTypeBindModel();
|
||||||
|
|
||||||
|
if (model && !models.some((modelElement) => modelElement === bindModel)) {
|
||||||
|
models.push(bindModel);
|
||||||
|
}
|
||||||
|
}));
|
||||||
|
|
||||||
|
return models;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Return false if the type bind relation (eg. {MATCH_VISIBLE, OR, ['book', 'book part']}) matches the value in
|
||||||
|
* matcher.match or true if the opposite match. Since this is called with regard to actively *hiding* a form
|
||||||
|
* component, the negation of the comparison is returned.
|
||||||
|
* @param relation type bind relation (eg. {MATCH_VISIBLE, OR, ['book', 'book part']})
|
||||||
|
* @param matcher contains 'match' value and an onChange() event listener
|
||||||
|
*/
|
||||||
|
public matchesCondition(relation: DynamicFormControlRelation, matcher: DynamicFormControlMatcher): boolean {
|
||||||
|
|
||||||
|
// Default to OR for operator (OR is explicitly set in field-parser.ts anyway)
|
||||||
|
const operator = relation.operator || OR_OPERATOR;
|
||||||
|
|
||||||
|
|
||||||
|
return relation.when.reduce((hasAlreadyMatched: boolean, condition: DynamicFormControlCondition, index: number) => {
|
||||||
|
// Get the DynamicFormControlModel (typeBindModel) from the form builder service, set in the form builder
|
||||||
|
// in the form model at init time in formBuilderService.modelFromConfiguration (called by other form components
|
||||||
|
// like relation group component and submission section form component).
|
||||||
|
// This model (DynamicRelationGroupModel) contains eg. mandatory field, formConfiguration, relationFields,
|
||||||
|
// submission scope, form/section type and other high level properties
|
||||||
|
const bindModel: any = this.formBuilderService.getTypeBindModel();
|
||||||
|
|
||||||
|
let values: string[];
|
||||||
|
let bindModelValue = bindModel.value;
|
||||||
|
|
||||||
|
// If the form type is RELATION, set bindModelValue to the mandatory field for this model, otherwise leave
|
||||||
|
// as plain value
|
||||||
|
if (bindModel.type === DYNAMIC_FORM_CONTROL_TYPE_RELATION_GROUP) {
|
||||||
|
bindModelValue = bindModel.value.map((entry) => entry[bindModel.mandatoryField]);
|
||||||
|
}
|
||||||
|
// Support multiple bind models
|
||||||
|
if (Array.isArray(bindModelValue)) {
|
||||||
|
values = [...bindModelValue.map((entry) => this.getTypeBindValue(entry))];
|
||||||
|
} else {
|
||||||
|
values = [this.getTypeBindValue(bindModelValue)];
|
||||||
|
}
|
||||||
|
|
||||||
|
// If bind model evaluates to 'true' (is not undefined, is not null, is not false etc,
|
||||||
|
// AND the relation match (type bind) is equal to the matcher match (item publication type), then the return
|
||||||
|
// value is initialised as false.
|
||||||
|
let returnValue = (!(bindModel && relation.match === matcher.match));
|
||||||
|
|
||||||
|
// Iterate the type bind values parsed and mapped from our form/relation group model
|
||||||
|
for (const value of values) {
|
||||||
|
if (bindModel && relation.match === matcher.match) {
|
||||||
|
// If we're not at the first array element, and we're using the AND operator, and we have not
|
||||||
|
// yet matched anything, return false.
|
||||||
|
if (index > 0 && operator === AND_OPERATOR && !hasAlreadyMatched) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
// If we're not at the first array element, and we're using the OR operator (almost always the case)
|
||||||
|
// and we've already matched then there is no need to continue, just return true.
|
||||||
|
if (index > 0 && operator === OR_OPERATOR && hasAlreadyMatched) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Do the actual match. Does condition.value (the item publication type) match the field model
|
||||||
|
// type bind currently being inspected?
|
||||||
|
returnValue = condition.value === value;
|
||||||
|
|
||||||
|
// If return value is already true, break.
|
||||||
|
if (returnValue) {
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Test opposingMatch (eg. if match is VISIBLE, opposingMatch will be HIDDEN)
|
||||||
|
if (bindModel && relation.match === matcher.opposingMatch) {
|
||||||
|
// If we're not at the first element, using AND, and already matched, just return true here
|
||||||
|
if (index > 0 && operator === AND_OPERATOR && hasAlreadyMatched) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
// If we're not at the first element, using OR, and we have NOT already matched, return false
|
||||||
|
if (index > 0 && operator === OR_OPERATOR && !hasAlreadyMatched) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Negated comparison for return value since this is expected to be in the context of a HIDDEN_MATCHER
|
||||||
|
returnValue = !(condition.value === value);
|
||||||
|
|
||||||
|
// Break if already false
|
||||||
|
if (!returnValue) {
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return returnValue;
|
||||||
|
}, false);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Return an array of subscriptions to a calling component
|
||||||
|
* @param model
|
||||||
|
* @param control
|
||||||
|
*/
|
||||||
|
subscribeRelations(model: DynamicFormControlModel, control: FormControl): Subscription[] {
|
||||||
|
|
||||||
|
const relatedModels = this.getRelatedFormModel(model);
|
||||||
|
const subscriptions: Subscription[] = [];
|
||||||
|
|
||||||
|
Object.values(relatedModels).forEach((relatedModel: any) => {
|
||||||
|
|
||||||
|
if (hasValue(relatedModel)) {
|
||||||
|
const initValue = (hasNoValue(relatedModel.value) || typeof relatedModel.value === 'string') ? relatedModel.value :
|
||||||
|
(Array.isArray(relatedModel.value) ? relatedModel.value : relatedModel.value.value);
|
||||||
|
|
||||||
|
const valueChanges = relatedModel.valueChanges.pipe(
|
||||||
|
startWith(initValue)
|
||||||
|
);
|
||||||
|
|
||||||
|
// Build up the subscriptions to watch for changes;
|
||||||
|
subscriptions.push(valueChanges.subscribe(() => {
|
||||||
|
// Iterate each matcher
|
||||||
|
if (hasValue(this.dynamicMatchers)) {
|
||||||
|
this.dynamicMatchers.forEach((matcher) => {
|
||||||
|
// Find the relation
|
||||||
|
const relation = this.dynamicFormRelationService.findRelationByMatcher((model as any).typeBindRelations, matcher);
|
||||||
|
// If the relation is defined, get matchesCondition result and pass it to the onChange event listener
|
||||||
|
if (relation !== undefined) {
|
||||||
|
const hasMatch = this.matchesCondition(relation, matcher);
|
||||||
|
matcher.onChange(hasMatch, model, control, this.injector);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}));
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
return subscriptions;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Helper function to construct a typeBindRelations array
|
||||||
|
* @param configuredTypeBindValues
|
||||||
|
*/
|
||||||
|
public getTypeBindRelations(configuredTypeBindValues: string[]): DynamicFormControlRelation[] {
|
||||||
|
const bindValues = [];
|
||||||
|
configuredTypeBindValues.forEach((value) => {
|
||||||
|
bindValues.push({
|
||||||
|
id: 'dc.type',
|
||||||
|
value: value
|
||||||
|
});
|
||||||
|
});
|
||||||
|
return [{
|
||||||
|
match: MATCH_VISIBLE,
|
||||||
|
operator: OR_OPERATOR,
|
||||||
|
when: bindValues
|
||||||
|
}];
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
@@ -1,6 +1,7 @@
|
|||||||
<ng-container [formGroup]="group">
|
<ng-container [formGroup]="group">
|
||||||
<div [id]="id"
|
<div [id]="id"
|
||||||
[formArrayName]="model.id"
|
[formArrayName]="model.id"
|
||||||
|
[class.d-none]="model.hidden"
|
||||||
[ngClass]="getClass('element', 'control')">
|
[ngClass]="getClass('element', 'control')">
|
||||||
|
|
||||||
<!-- Draggable Container -->
|
<!-- Draggable Container -->
|
||||||
@@ -13,7 +14,8 @@
|
|||||||
cdkDrag
|
cdkDrag
|
||||||
cdkDragHandle
|
cdkDragHandle
|
||||||
[cdkDragDisabled]="dragDisabled"
|
[cdkDragDisabled]="dragDisabled"
|
||||||
[cdkDragPreviewClass]="'ds-submission-reorder-dragging'">
|
[cdkDragPreviewClass]="'ds-submission-reorder-dragging'"
|
||||||
|
[class.grey-background]="model.isInlineGroupArray">
|
||||||
<!-- Item content -->
|
<!-- Item content -->
|
||||||
<div class="drag-handle" [class.drag-disable]="dragDisabled" tabindex="0">
|
<div class="drag-handle" [class.drag-disable]="dragDisabled" tabindex="0">
|
||||||
<i class="drag-icon fas fa-grip-vertical fa-fw" [class.drag-disable]="dragDisabled" ></i>
|
<i class="drag-icon fas fa-grip-vertical fa-fw" [class.drag-disable]="dragDisabled" ></i>
|
||||||
@@ -22,9 +24,11 @@
|
|||||||
<ds-dynamic-form-control-container *ngFor="let _model of groupModel.group"
|
<ds-dynamic-form-control-container *ngFor="let _model of groupModel.group"
|
||||||
[bindId]="false"
|
[bindId]="false"
|
||||||
[formGroup]="group"
|
[formGroup]="group"
|
||||||
|
[formModel]="formModel"
|
||||||
[context]="groupModel"
|
[context]="groupModel"
|
||||||
[group]="control.get([idx])"
|
[group]="control.get([idx])"
|
||||||
[hidden]="_model.hidden"
|
[hidden]="_model.hidden"
|
||||||
|
[class.d-none]="_model.hidden"
|
||||||
[layout]="formLayout"
|
[layout]="formLayout"
|
||||||
[model]="_model"
|
[model]="_model"
|
||||||
[templates]="templates"
|
[templates]="templates"
|
||||||
@@ -37,9 +41,6 @@
|
|||||||
<ng-container *ngTemplateOutlet="endTemplate?.templateRef; context: groupModel"></ng-container>
|
<ng-container *ngTemplateOutlet="endTemplate?.templateRef; context: groupModel"></ng-container>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</ng-container>
|
</ng-container>
|
||||||
|
@@ -6,6 +6,7 @@ import {
|
|||||||
DynamicFormControlCustomEvent,
|
DynamicFormControlCustomEvent,
|
||||||
DynamicFormControlEvent,
|
DynamicFormControlEvent,
|
||||||
DynamicFormControlLayout,
|
DynamicFormControlLayout,
|
||||||
|
DynamicFormControlModel,
|
||||||
DynamicFormLayout,
|
DynamicFormLayout,
|
||||||
DynamicFormLayoutService,
|
DynamicFormLayoutService,
|
||||||
DynamicFormValidationService,
|
DynamicFormValidationService,
|
||||||
@@ -22,6 +23,8 @@ import { DynamicRowArrayModel } from '../ds-dynamic-row-array-model';
|
|||||||
})
|
})
|
||||||
export class DsDynamicFormArrayComponent extends DynamicFormArrayComponent {
|
export class DsDynamicFormArrayComponent extends DynamicFormArrayComponent {
|
||||||
|
|
||||||
|
@Input() bindId = true;
|
||||||
|
@Input() formModel: DynamicFormControlModel[];
|
||||||
@Input() formLayout: DynamicFormLayout;
|
@Input() formLayout: DynamicFormLayout;
|
||||||
@Input() group: FormGroup;
|
@Input() group: FormGroup;
|
||||||
@Input() layout: DynamicFormControlLayout;
|
@Input() layout: DynamicFormControlLayout;
|
||||||
|
@@ -2,20 +2,29 @@ import {
|
|||||||
DynamicDateControlModel,
|
DynamicDateControlModel,
|
||||||
DynamicDatePickerModelConfig,
|
DynamicDatePickerModelConfig,
|
||||||
DynamicFormControlLayout,
|
DynamicFormControlLayout,
|
||||||
|
DynamicFormControlModel,
|
||||||
|
DynamicFormControlRelation,
|
||||||
serializable
|
serializable
|
||||||
} from '@ng-dynamic-forms/core';
|
} from '@ng-dynamic-forms/core';
|
||||||
|
import {BehaviorSubject, Subject} from 'rxjs';
|
||||||
|
import {isEmpty, isNotUndefined} from '../../../../../empty.util';
|
||||||
|
import {MetadataValue} from '../../../../../../core/shared/metadata.models';
|
||||||
|
|
||||||
export const DYNAMIC_FORM_CONTROL_TYPE_DSDATEPICKER = 'DATE';
|
export const DYNAMIC_FORM_CONTROL_TYPE_DSDATEPICKER = 'DATE';
|
||||||
|
|
||||||
export interface DynamicDsDateControlModelConfig extends DynamicDatePickerModelConfig {
|
export interface DynamicDsDateControlModelConfig extends DynamicDatePickerModelConfig {
|
||||||
legend?: string;
|
legend?: string;
|
||||||
|
typeBindRelations?: DynamicFormControlRelation[];
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Dynamic Date Picker Model class
|
* Dynamic Date Picker Model class
|
||||||
*/
|
*/
|
||||||
export class DynamicDsDatePickerModel extends DynamicDateControlModel {
|
export class DynamicDsDatePickerModel extends DynamicDateControlModel {
|
||||||
|
@serializable() hiddenUpdates: Subject<boolean>;
|
||||||
|
@serializable() typeBindRelations: DynamicFormControlRelation[];
|
||||||
@serializable() readonly type: string = DYNAMIC_FORM_CONTROL_TYPE_DSDATEPICKER;
|
@serializable() readonly type: string = DYNAMIC_FORM_CONTROL_TYPE_DSDATEPICKER;
|
||||||
|
@serializable() metadataValue: MetadataValue;
|
||||||
malformedDate: boolean;
|
malformedDate: boolean;
|
||||||
legend: string;
|
legend: string;
|
||||||
hasLanguages = false;
|
hasLanguages = false;
|
||||||
@@ -25,6 +34,23 @@ export class DynamicDsDatePickerModel extends DynamicDateControlModel {
|
|||||||
super(config, layout);
|
super(config, layout);
|
||||||
this.malformedDate = false;
|
this.malformedDate = false;
|
||||||
this.legend = config.legend;
|
this.legend = config.legend;
|
||||||
|
this.metadataValue = (config as any).metadataValue;
|
||||||
|
this.typeBindRelations = config.typeBindRelations ? config.typeBindRelations : [];
|
||||||
|
this.hiddenUpdates = new BehaviorSubject<boolean>(this.hidden);
|
||||||
|
|
||||||
|
// This was a subscription, then an async setTimeout, but it seems unnecessary
|
||||||
|
const parentModel = this.getRootParent(this);
|
||||||
|
if (parentModel && isNotUndefined(parentModel.hidden)) {
|
||||||
|
parentModel.hidden = this.hidden;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private getRootParent(model: any): DynamicFormControlModel {
|
||||||
|
if (isEmpty(model) || isEmpty(model.parent)) {
|
||||||
|
return model;
|
||||||
|
} else {
|
||||||
|
return this.getRootParent(model.parent);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@@ -1,14 +1,15 @@
|
|||||||
import {
|
import {
|
||||||
DynamicFormControlLayout,
|
DynamicFormControlLayout,
|
||||||
|
DynamicFormControlRelation,
|
||||||
DynamicInputModel,
|
DynamicInputModel,
|
||||||
DynamicInputModelConfig,
|
DynamicInputModelConfig,
|
||||||
serializable
|
serializable
|
||||||
} from '@ng-dynamic-forms/core';
|
} from '@ng-dynamic-forms/core';
|
||||||
import { Subject } from 'rxjs';
|
import {Subject} from 'rxjs';
|
||||||
|
|
||||||
import { LanguageCode } from '../../models/form-field-language-value.model';
|
import { LanguageCode } from '../../models/form-field-language-value.model';
|
||||||
import { VocabularyOptions } from '../../../../../core/submission/vocabularies/models/vocabulary-options.model';
|
import { VocabularyOptions } from '../../../../../core/submission/vocabularies/models/vocabulary-options.model';
|
||||||
import { hasValue } from '../../../../empty.util';
|
import {hasValue} from '../../../../empty.util';
|
||||||
import { FormFieldMetadataValueObject } from '../../models/form-field-metadata-value.model';
|
import { FormFieldMetadataValueObject } from '../../models/form-field-metadata-value.model';
|
||||||
import { RelationshipOptions } from '../../models/relationship-options.model';
|
import { RelationshipOptions } from '../../models/relationship-options.model';
|
||||||
|
|
||||||
@@ -18,12 +19,14 @@ export interface DsDynamicInputModelConfig extends DynamicInputModelConfig {
|
|||||||
language?: string;
|
language?: string;
|
||||||
place?: number;
|
place?: number;
|
||||||
value?: any;
|
value?: any;
|
||||||
|
typeBindRelations?: DynamicFormControlRelation[];
|
||||||
relationship?: RelationshipOptions;
|
relationship?: RelationshipOptions;
|
||||||
repeatable: boolean;
|
repeatable: boolean;
|
||||||
metadataFields: string[];
|
metadataFields: string[];
|
||||||
submissionId: string;
|
submissionId: string;
|
||||||
hasSelectableMetadata: boolean;
|
hasSelectableMetadata: boolean;
|
||||||
metadataValue?: FormFieldMetadataValueObject;
|
metadataValue?: FormFieldMetadataValueObject;
|
||||||
|
isModelOfInnerForm?: boolean;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -33,12 +36,17 @@ export class DsDynamicInputModel extends DynamicInputModel {
|
|||||||
@serializable() private _languageCodes: LanguageCode[];
|
@serializable() private _languageCodes: LanguageCode[];
|
||||||
@serializable() private _language: string;
|
@serializable() private _language: string;
|
||||||
@serializable() languageUpdates: Subject<string>;
|
@serializable() languageUpdates: Subject<string>;
|
||||||
|
@serializable() place: number;
|
||||||
|
@serializable() typeBindRelations: DynamicFormControlRelation[];
|
||||||
|
@serializable() typeBindHidden = false;
|
||||||
@serializable() relationship?: RelationshipOptions;
|
@serializable() relationship?: RelationshipOptions;
|
||||||
@serializable() repeatable?: boolean;
|
@serializable() repeatable?: boolean;
|
||||||
@serializable() metadataFields: string[];
|
@serializable() metadataFields: string[];
|
||||||
@serializable() submissionId: string;
|
@serializable() submissionId: string;
|
||||||
@serializable() hasSelectableMetadata: boolean;
|
@serializable() hasSelectableMetadata: boolean;
|
||||||
@serializable() metadataValue: FormFieldMetadataValueObject;
|
@serializable() metadataValue: FormFieldMetadataValueObject;
|
||||||
|
@serializable() isModelOfInnerForm: boolean;
|
||||||
|
|
||||||
|
|
||||||
constructor(config: DsDynamicInputModelConfig, layout?: DynamicFormControlLayout) {
|
constructor(config: DsDynamicInputModelConfig, layout?: DynamicFormControlLayout) {
|
||||||
super(config, layout);
|
super(config, layout);
|
||||||
@@ -51,6 +59,8 @@ export class DsDynamicInputModel extends DynamicInputModel {
|
|||||||
this.submissionId = config.submissionId;
|
this.submissionId = config.submissionId;
|
||||||
this.hasSelectableMetadata = config.hasSelectableMetadata;
|
this.hasSelectableMetadata = config.hasSelectableMetadata;
|
||||||
this.metadataValue = config.metadataValue;
|
this.metadataValue = config.metadataValue;
|
||||||
|
this.place = config.place;
|
||||||
|
this.isModelOfInnerForm = (hasValue(config.isModelOfInnerForm) ? config.isModelOfInnerForm : false);
|
||||||
|
|
||||||
this.language = config.language;
|
this.language = config.language;
|
||||||
if (!this.language) {
|
if (!this.language) {
|
||||||
@@ -71,6 +81,8 @@ export class DsDynamicInputModel extends DynamicInputModel {
|
|||||||
this.language = lang;
|
this.language = lang;
|
||||||
});
|
});
|
||||||
|
|
||||||
|
this.typeBindRelations = config.typeBindRelations ? config.typeBindRelations : [];
|
||||||
|
|
||||||
this.vocabularyOptions = config.vocabularyOptions;
|
this.vocabularyOptions = config.vocabularyOptions;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -1,5 +1,12 @@
|
|||||||
import { DynamicFormArrayModel, DynamicFormArrayModelConfig, DynamicFormControlLayout, serializable } from '@ng-dynamic-forms/core';
|
import {
|
||||||
|
DynamicFormArrayModel,
|
||||||
|
DynamicFormArrayModelConfig,
|
||||||
|
DynamicFormControlLayout,
|
||||||
|
DynamicFormControlRelation,
|
||||||
|
serializable
|
||||||
|
} from '@ng-dynamic-forms/core';
|
||||||
import { RelationshipOptions } from '../../models/relationship-options.model';
|
import { RelationshipOptions } from '../../models/relationship-options.model';
|
||||||
|
import { hasValue } from '../../../../empty.util';
|
||||||
|
|
||||||
export interface DynamicRowArrayModelConfig extends DynamicFormArrayModelConfig {
|
export interface DynamicRowArrayModelConfig extends DynamicFormArrayModelConfig {
|
||||||
notRepeatable: boolean;
|
notRepeatable: boolean;
|
||||||
@@ -10,6 +17,9 @@ export interface DynamicRowArrayModelConfig extends DynamicFormArrayModelConfig
|
|||||||
metadataFields: string[];
|
metadataFields: string[];
|
||||||
hasSelectableMetadata: boolean;
|
hasSelectableMetadata: boolean;
|
||||||
isDraggable: boolean;
|
isDraggable: boolean;
|
||||||
|
showButtons: boolean;
|
||||||
|
typeBindRelations?: DynamicFormControlRelation[];
|
||||||
|
isInlineGroupArray?: boolean;
|
||||||
}
|
}
|
||||||
|
|
||||||
export class DynamicRowArrayModel extends DynamicFormArrayModel {
|
export class DynamicRowArrayModel extends DynamicFormArrayModel {
|
||||||
@@ -21,17 +31,29 @@ export class DynamicRowArrayModel extends DynamicFormArrayModel {
|
|||||||
@serializable() metadataFields: string[];
|
@serializable() metadataFields: string[];
|
||||||
@serializable() hasSelectableMetadata: boolean;
|
@serializable() hasSelectableMetadata: boolean;
|
||||||
@serializable() isDraggable: boolean;
|
@serializable() isDraggable: boolean;
|
||||||
|
@serializable() showButtons = true;
|
||||||
|
@serializable() typeBindRelations: DynamicFormControlRelation[];
|
||||||
isRowArray = true;
|
isRowArray = true;
|
||||||
|
isInlineGroupArray = false;
|
||||||
|
|
||||||
constructor(config: DynamicRowArrayModelConfig, layout?: DynamicFormControlLayout) {
|
constructor(config: DynamicRowArrayModelConfig, layout?: DynamicFormControlLayout) {
|
||||||
super(config, layout);
|
super(config, layout);
|
||||||
|
if (hasValue(config.notRepeatable)) {
|
||||||
this.notRepeatable = config.notRepeatable;
|
this.notRepeatable = config.notRepeatable;
|
||||||
|
}
|
||||||
|
if (hasValue(config.required)) {
|
||||||
this.required = config.required;
|
this.required = config.required;
|
||||||
|
}
|
||||||
|
if (hasValue(config.showButtons)) {
|
||||||
|
this.showButtons = config.showButtons;
|
||||||
|
}
|
||||||
this.submissionId = config.submissionId;
|
this.submissionId = config.submissionId;
|
||||||
this.relationshipConfig = config.relationshipConfig;
|
this.relationshipConfig = config.relationshipConfig;
|
||||||
this.metadataKey = config.metadataKey;
|
this.metadataKey = config.metadataKey;
|
||||||
this.metadataFields = config.metadataFields;
|
this.metadataFields = config.metadataFields;
|
||||||
this.hasSelectableMetadata = config.hasSelectableMetadata;
|
this.hasSelectableMetadata = config.hasSelectableMetadata;
|
||||||
this.isDraggable = config.isDraggable;
|
this.isDraggable = config.isDraggable;
|
||||||
|
this.typeBindRelations = config.typeBindRelations ? config.typeBindRelations : [];
|
||||||
|
this.isInlineGroupArray = config.isInlineGroupArray ? config.isInlineGroupArray : false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -1,11 +1,17 @@
|
|||||||
|
<div style="width: 100%">
|
||||||
<ng-container [formGroup]="group">
|
<ng-container [formGroup]="group">
|
||||||
|
|
||||||
<div role="group" [formGroupName]="model.id" [id]="id" [ngClass]="getClass('element','control')">
|
<div role="group" [formGroupName]="model.id"
|
||||||
|
[id]="id"
|
||||||
|
[class.d-none]="model.hidden"
|
||||||
|
[ngClass]="getClass('element','control')">
|
||||||
<ds-dynamic-form-control-container *ngFor="let _model of model.group"
|
<ds-dynamic-form-control-container *ngFor="let _model of model.group"
|
||||||
|
[formGroup]="group"
|
||||||
|
[formModel]="formModel"
|
||||||
[group]="control"
|
[group]="control"
|
||||||
[hasErrorMessaging]="model.hasErrorMessages"
|
[hasErrorMessaging]="model.hasErrorMessages"
|
||||||
[hidden]="_model.hidden"
|
[hidden]="_model.hidden"
|
||||||
|
[class.d-none]="_model.hidden"
|
||||||
[layout]="formLayout"
|
[layout]="formLayout"
|
||||||
[model]="_model"
|
[model]="_model"
|
||||||
[templates]="templates"
|
[templates]="templates"
|
||||||
@@ -16,3 +22,4 @@
|
|||||||
(ngbEvent)="onCustomEvent($event, null, true)"></ds-dynamic-form-control-container>
|
(ngbEvent)="onCustomEvent($event, null, true)"></ds-dynamic-form-control-container>
|
||||||
</div>
|
</div>
|
||||||
</ng-container>
|
</ng-container>
|
||||||
|
</div>
|
||||||
|
@@ -5,7 +5,9 @@ import {
|
|||||||
DynamicFormControlCustomEvent,
|
DynamicFormControlCustomEvent,
|
||||||
DynamicFormControlEvent,
|
DynamicFormControlEvent,
|
||||||
DynamicFormControlLayout,
|
DynamicFormControlLayout,
|
||||||
DynamicFormGroupModel, DynamicFormLayout,
|
DynamicFormControlModel,
|
||||||
|
DynamicFormGroupModel,
|
||||||
|
DynamicFormLayout,
|
||||||
DynamicFormLayoutService,
|
DynamicFormLayoutService,
|
||||||
DynamicFormValidationService,
|
DynamicFormValidationService,
|
||||||
DynamicTemplateDirective
|
DynamicTemplateDirective
|
||||||
@@ -18,6 +20,7 @@ import {
|
|||||||
})
|
})
|
||||||
export class DsDynamicFormGroupComponent extends DynamicFormControlComponent {
|
export class DsDynamicFormGroupComponent extends DynamicFormControlComponent {
|
||||||
|
|
||||||
|
@Input() formModel: DynamicFormControlModel[];
|
||||||
@Input() formLayout: DynamicFormLayout;
|
@Input() formLayout: DynamicFormLayout;
|
||||||
@Input() group: FormGroup;
|
@Input() group: FormGroup;
|
||||||
@Input() layout: DynamicFormControlLayout;
|
@Input() layout: DynamicFormControlLayout;
|
||||||
|
@@ -26,7 +26,7 @@ import {
|
|||||||
DynamicSliderModel,
|
DynamicSliderModel,
|
||||||
DynamicSwitchModel,
|
DynamicSwitchModel,
|
||||||
DynamicTextAreaModel,
|
DynamicTextAreaModel,
|
||||||
DynamicTimePickerModel
|
DynamicTimePickerModel,
|
||||||
} from '@ng-dynamic-forms/core';
|
} from '@ng-dynamic-forms/core';
|
||||||
import { DynamicTagModel } from './ds-dynamic-form-ui/models/tag/dynamic-tag.model';
|
import { DynamicTagModel } from './ds-dynamic-form-ui/models/tag/dynamic-tag.model';
|
||||||
import { DynamicListCheckboxGroupModel } from './ds-dynamic-form-ui/models/list/dynamic-list-checkbox-group.model';
|
import { DynamicListCheckboxGroupModel } from './ds-dynamic-form-ui/models/list/dynamic-list-checkbox-group.model';
|
||||||
@@ -48,12 +48,18 @@ import { DynamicConcatModel } from './ds-dynamic-form-ui/models/ds-dynamic-conca
|
|||||||
import { DynamicLookupNameModel } from './ds-dynamic-form-ui/models/lookup/dynamic-lookup-name.model';
|
import { DynamicLookupNameModel } from './ds-dynamic-form-ui/models/lookup/dynamic-lookup-name.model';
|
||||||
import { DynamicRowArrayModel } from './ds-dynamic-form-ui/models/ds-dynamic-row-array-model';
|
import { DynamicRowArrayModel } from './ds-dynamic-form-ui/models/ds-dynamic-row-array-model';
|
||||||
import { FormRowModel } from '../../../core/config/models/config-submission-form.model';
|
import { FormRowModel } from '../../../core/config/models/config-submission-form.model';
|
||||||
|
import {ConfigurationDataService} from '../../../core/data/configuration-data.service';
|
||||||
|
import {createSuccessfulRemoteDataObject$} from '../../remote-data.utils';
|
||||||
|
import {ConfigurationProperty} from '../../../core/shared/configuration-property.model';
|
||||||
|
|
||||||
describe('FormBuilderService test suite', () => {
|
describe('FormBuilderService test suite', () => {
|
||||||
|
|
||||||
let testModel: DynamicFormControlModel[];
|
let testModel: DynamicFormControlModel[];
|
||||||
let testFormConfiguration: SubmissionFormsModel;
|
let testFormConfiguration: SubmissionFormsModel;
|
||||||
let service: FormBuilderService;
|
let service: FormBuilderService;
|
||||||
|
let configSpy: ConfigurationDataService;
|
||||||
|
const typeFieldProp = 'submit.type-bind.field';
|
||||||
|
const typeFieldTestValue = 'dc.type';
|
||||||
|
|
||||||
const submissionId = '1234';
|
const submissionId = '1234';
|
||||||
|
|
||||||
@@ -65,15 +71,24 @@ describe('FormBuilderService test suite', () => {
|
|||||||
return new Promise<boolean>((resolve) => setTimeout(() => resolve(true), 0));
|
return new Promise<boolean>((resolve) => setTimeout(() => resolve(true), 0));
|
||||||
}
|
}
|
||||||
|
|
||||||
beforeEach(() => {
|
const createConfigSuccessSpy = (...values: string[]) => jasmine.createSpyObj('configurationDataService', {
|
||||||
|
findByPropertyName: createSuccessfulRemoteDataObject$({
|
||||||
|
... new ConfigurationProperty(),
|
||||||
|
name: typeFieldProp,
|
||||||
|
values: values,
|
||||||
|
}),
|
||||||
|
});
|
||||||
|
|
||||||
|
beforeEach(() => {
|
||||||
|
configSpy = createConfigSuccessSpy(typeFieldTestValue);
|
||||||
TestBed.configureTestingModule({
|
TestBed.configureTestingModule({
|
||||||
imports: [ReactiveFormsModule],
|
imports: [ReactiveFormsModule],
|
||||||
providers: [
|
providers: [
|
||||||
{ provide: FormBuilderService, useClass: FormBuilderService },
|
{ provide: FormBuilderService, useClass: FormBuilderService },
|
||||||
{ provide: DynamicFormValidationService, useValue: {} },
|
{ provide: DynamicFormValidationService, useValue: {} },
|
||||||
{ provide: NG_VALIDATORS, useValue: testValidator, multi: true },
|
{ provide: NG_VALIDATORS, useValue: testValidator, multi: true },
|
||||||
{ provide: NG_ASYNC_VALIDATORS, useValue: testAsyncValidator, multi: true }
|
{ provide: NG_ASYNC_VALIDATORS, useValue: testAsyncValidator, multi: true },
|
||||||
|
{ provide: ConfigurationDataService, useValue: configSpy }
|
||||||
]
|
]
|
||||||
});
|
});
|
||||||
|
|
||||||
@@ -197,7 +212,7 @@ describe('FormBuilderService test suite', () => {
|
|||||||
repeatable: false,
|
repeatable: false,
|
||||||
metadataFields: [],
|
metadataFields: [],
|
||||||
submissionId: '1234',
|
submissionId: '1234',
|
||||||
hasSelectableMetadata: false
|
hasSelectableMetadata: false,
|
||||||
}),
|
}),
|
||||||
|
|
||||||
new DynamicScrollableDropdownModel({
|
new DynamicScrollableDropdownModel({
|
||||||
@@ -233,6 +248,7 @@ describe('FormBuilderService test suite', () => {
|
|||||||
hints: 'Enter the name of the author.',
|
hints: 'Enter the name of the author.',
|
||||||
input: { type: 'onebox' },
|
input: { type: 'onebox' },
|
||||||
label: 'Authors',
|
label: 'Authors',
|
||||||
|
typeBind: [],
|
||||||
languageCodes: [],
|
languageCodes: [],
|
||||||
mandatory: 'true',
|
mandatory: 'true',
|
||||||
mandatoryMessage: 'Required field!',
|
mandatoryMessage: 'Required field!',
|
||||||
@@ -304,7 +320,9 @@ describe('FormBuilderService test suite', () => {
|
|||||||
required: false,
|
required: false,
|
||||||
metadataKey: 'dc.contributor.author',
|
metadataKey: 'dc.contributor.author',
|
||||||
metadataFields: ['dc.contributor.author'],
|
metadataFields: ['dc.contributor.author'],
|
||||||
hasSelectableMetadata: true
|
hasSelectableMetadata: true,
|
||||||
|
showButtons: true,
|
||||||
|
typeBindRelations: [{ match: 'VISIBLE', operator: 'OR', when: [{id: 'dc.type', value: 'Book' }]}]
|
||||||
},
|
},
|
||||||
),
|
),
|
||||||
];
|
];
|
||||||
@@ -424,7 +442,9 @@ describe('FormBuilderService test suite', () => {
|
|||||||
} as any;
|
} as any;
|
||||||
});
|
});
|
||||||
|
|
||||||
beforeEach(inject([FormBuilderService], (formService: FormBuilderService) => service = formService));
|
beforeEach(inject([FormBuilderService], (formService: FormBuilderService) => {
|
||||||
|
service = formService;
|
||||||
|
}));
|
||||||
|
|
||||||
it('should find a dynamic form control model by id', () => {
|
it('should find a dynamic form control model by id', () => {
|
||||||
|
|
||||||
@@ -875,4 +895,12 @@ describe('FormBuilderService test suite', () => {
|
|||||||
|
|
||||||
expect(formArray.length === 0).toBe(true);
|
expect(formArray.length === 0).toBe(true);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
it(`should request the ${typeFieldProp} property and set value "dc_type"`, () => {
|
||||||
|
const typeValue = service.getTypeField();
|
||||||
|
expect(configSpy.findByPropertyName).toHaveBeenCalledTimes(1);
|
||||||
|
expect(configSpy.findByPropertyName).toHaveBeenCalledWith(typeFieldProp);
|
||||||
|
expect(typeValue).toEqual('dc_type');
|
||||||
|
});
|
||||||
|
|
||||||
});
|
});
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
import { Injectable } from '@angular/core';
|
import {Injectable, Optional} from '@angular/core';
|
||||||
import { AbstractControl, FormGroup } from '@angular/forms';
|
import { AbstractControl, FormControl, FormGroup } from '@angular/forms';
|
||||||
|
|
||||||
import {
|
import {
|
||||||
DYNAMIC_FORM_CONTROL_TYPE_ARRAY,
|
DYNAMIC_FORM_CONTROL_TYPE_ARRAY,
|
||||||
@@ -7,6 +7,7 @@ import {
|
|||||||
DYNAMIC_FORM_CONTROL_TYPE_GROUP,
|
DYNAMIC_FORM_CONTROL_TYPE_GROUP,
|
||||||
DYNAMIC_FORM_CONTROL_TYPE_INPUT,
|
DYNAMIC_FORM_CONTROL_TYPE_INPUT,
|
||||||
DYNAMIC_FORM_CONTROL_TYPE_RADIO_GROUP,
|
DYNAMIC_FORM_CONTROL_TYPE_RADIO_GROUP,
|
||||||
|
DynamicFormArrayGroupModel,
|
||||||
DynamicFormArrayModel,
|
DynamicFormArrayModel,
|
||||||
DynamicFormComponentService,
|
DynamicFormComponentService,
|
||||||
DynamicFormControlEvent,
|
DynamicFormControlEvent,
|
||||||
@@ -19,7 +20,15 @@ import {
|
|||||||
} from '@ng-dynamic-forms/core';
|
} from '@ng-dynamic-forms/core';
|
||||||
import { isObject, isString, mergeWith } from 'lodash';
|
import { isObject, isString, mergeWith } from 'lodash';
|
||||||
|
|
||||||
import { hasValue, isEmpty, isNotEmpty, isNotNull, isNotUndefined, isNull } from '../../empty.util';
|
import {
|
||||||
|
hasNoValue,
|
||||||
|
hasValue,
|
||||||
|
isEmpty,
|
||||||
|
isNotEmpty,
|
||||||
|
isNotNull,
|
||||||
|
isNotUndefined,
|
||||||
|
isNull
|
||||||
|
} from '../../empty.util';
|
||||||
import { DynamicQualdropModel } from './ds-dynamic-form-ui/models/ds-dynamic-qualdrop.model';
|
import { DynamicQualdropModel } from './ds-dynamic-form-ui/models/ds-dynamic-qualdrop.model';
|
||||||
import { SubmissionFormsModel } from '../../../core/config/models/config-submission-forms.model';
|
import { SubmissionFormsModel } from '../../../core/config/models/config-submission-forms.model';
|
||||||
import { DYNAMIC_FORM_CONTROL_TYPE_TAG } from './ds-dynamic-form-ui/models/tag/dynamic-tag.model';
|
import { DYNAMIC_FORM_CONTROL_TYPE_TAG } from './ds-dynamic-form-ui/models/tag/dynamic-tag.model';
|
||||||
@@ -32,16 +41,61 @@ import { dateToString, isNgbDateStruct } from '../../date.util';
|
|||||||
import { DYNAMIC_FORM_CONTROL_TYPE_RELATION_GROUP } from './ds-dynamic-form-ui/ds-dynamic-form-constants';
|
import { DYNAMIC_FORM_CONTROL_TYPE_RELATION_GROUP } from './ds-dynamic-form-ui/ds-dynamic-form-constants';
|
||||||
import { CONCAT_GROUP_SUFFIX, DynamicConcatModel } from './ds-dynamic-form-ui/models/ds-dynamic-concat.model';
|
import { CONCAT_GROUP_SUFFIX, DynamicConcatModel } from './ds-dynamic-form-ui/models/ds-dynamic-concat.model';
|
||||||
import { VIRTUAL_METADATA_PREFIX } from '../../../core/shared/metadata.models';
|
import { VIRTUAL_METADATA_PREFIX } from '../../../core/shared/metadata.models';
|
||||||
|
import { ConfigurationDataService } from '../../../core/data/configuration-data.service';
|
||||||
|
import { getFirstCompletedRemoteData } from '../../../core/shared/operators';
|
||||||
|
|
||||||
@Injectable()
|
@Injectable()
|
||||||
export class FormBuilderService extends DynamicFormService {
|
export class FormBuilderService extends DynamicFormService {
|
||||||
|
|
||||||
|
private typeBindModel: DynamicFormControlModel;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This map contains the active forms model
|
||||||
|
*/
|
||||||
|
private formModels: Map<string, DynamicFormControlModel[]>;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This map contains the active forms control groups
|
||||||
|
*/
|
||||||
|
private formGroups: Map<string, FormGroup>;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This is the field to use for type binding
|
||||||
|
*/
|
||||||
|
private typeField: string;
|
||||||
|
|
||||||
constructor(
|
constructor(
|
||||||
componentService: DynamicFormComponentService,
|
componentService: DynamicFormComponentService,
|
||||||
validationService: DynamicFormValidationService,
|
validationService: DynamicFormValidationService,
|
||||||
protected rowParser: RowParser
|
protected rowParser: RowParser,
|
||||||
|
@Optional() protected configService: ConfigurationDataService,
|
||||||
) {
|
) {
|
||||||
super(componentService, validationService);
|
super(componentService, validationService);
|
||||||
|
this.formModels = new Map();
|
||||||
|
this.formGroups = new Map();
|
||||||
|
// If optional config service was passed, perform an initial set of type field (default dc_type) for type binds
|
||||||
|
if (hasValue(this.configService)) {
|
||||||
|
this.setTypeBindFieldFromConfig();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
createDynamicFormControlEvent(control: FormControl, group: FormGroup, model: DynamicFormControlModel, type: string): DynamicFormControlEvent {
|
||||||
|
const $event = {
|
||||||
|
value: (model as any).value,
|
||||||
|
autoSave: false
|
||||||
|
};
|
||||||
|
const context: DynamicFormArrayGroupModel = (model?.parent instanceof DynamicFormArrayGroupModel) ? model?.parent : null;
|
||||||
|
return {$event, context, control: control, group: group, model: model, type};
|
||||||
|
}
|
||||||
|
|
||||||
|
getTypeBindModel() {
|
||||||
|
return this.typeBindModel;
|
||||||
|
}
|
||||||
|
|
||||||
|
setTypeBindModel(model: DynamicFormControlModel) {
|
||||||
|
this.typeBindModel = model;
|
||||||
}
|
}
|
||||||
|
|
||||||
findById(id: string, groupModel: DynamicFormControlModel[], arrayIndex = null): DynamicFormControlModel | null {
|
findById(id: string, groupModel: DynamicFormControlModel[], arrayIndex = null): DynamicFormControlModel | null {
|
||||||
@@ -223,13 +277,15 @@ export class FormBuilderService extends DynamicFormService {
|
|||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
modelFromConfiguration(submissionId: string, json: string | SubmissionFormsModel, scopeUUID: string, sectionData: any = {}, submissionScope?: string, readOnly = false): DynamicFormControlModel[] | never {
|
modelFromConfiguration(submissionId: string, json: string | SubmissionFormsModel, scopeUUID: string, sectionData: any = {},
|
||||||
|
submissionScope?: string, readOnly = false, typeBindModel = null,
|
||||||
|
isInnerForm = false): DynamicFormControlModel[] | never {
|
||||||
let rows: DynamicFormControlModel[] = [];
|
let rows: DynamicFormControlModel[] = [];
|
||||||
const rawData = typeof json === 'string' ? JSON.parse(json, parseReviver) : json;
|
const rawData = typeof json === 'string' ? JSON.parse(json, parseReviver) : json;
|
||||||
|
|
||||||
if (rawData.rows && !isEmpty(rawData.rows)) {
|
if (rawData.rows && !isEmpty(rawData.rows)) {
|
||||||
rawData.rows.forEach((currentRow) => {
|
rawData.rows.forEach((currentRow) => {
|
||||||
const rowParsed = this.rowParser.parse(submissionId, currentRow, scopeUUID, sectionData, submissionScope, readOnly);
|
const rowParsed = this.rowParser.parse(submissionId, currentRow, scopeUUID, sectionData, submissionScope,
|
||||||
|
readOnly, this.getTypeField());
|
||||||
if (isNotNull(rowParsed)) {
|
if (isNotNull(rowParsed)) {
|
||||||
if (Array.isArray(rowParsed)) {
|
if (Array.isArray(rowParsed)) {
|
||||||
rows = rows.concat(rowParsed);
|
rows = rows.concat(rowParsed);
|
||||||
@@ -240,6 +296,13 @@ export class FormBuilderService extends DynamicFormService {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (hasNoValue(typeBindModel)) {
|
||||||
|
typeBindModel = this.findById(this.typeField, rows);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (hasValue(typeBindModel)) {
|
||||||
|
this.setTypeBindModel(typeBindModel);
|
||||||
|
}
|
||||||
return rows;
|
return rows;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -309,6 +372,10 @@ export class FormBuilderService extends DynamicFormService {
|
|||||||
return isNotEmpty(fieldModel) ? formGroup.get(this.getPath(fieldModel)) : null;
|
return isNotEmpty(fieldModel) ? formGroup.get(this.getPath(fieldModel)) : null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
getFormControlByModel(formGroup: FormGroup, fieldModel: DynamicFormControlModel): AbstractControl {
|
||||||
|
return isNotEmpty(fieldModel) ? formGroup.get(this.getPath(fieldModel)) : null;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Note (discovered while debugging) this is not the ID as used in the form,
|
* Note (discovered while debugging) this is not the ID as used in the form,
|
||||||
* but the first part of the path needed in a patch operation:
|
* but the first part of the path needed in a patch operation:
|
||||||
@@ -328,6 +395,35 @@ export class FormBuilderService extends DynamicFormService {
|
|||||||
return (tempModel.id !== tempModel.name) ? tempModel.name : tempModel.id;
|
return (tempModel.id !== tempModel.name) ? tempModel.name : tempModel.id;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* If present, remove form model from formModels map
|
||||||
|
* @param id id of model
|
||||||
|
*/
|
||||||
|
removeFormModel(id: string): void {
|
||||||
|
if (this.formModels.has(id)) {
|
||||||
|
this.formModels.delete(id);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Add new form model to formModels map
|
||||||
|
* @param id id of model
|
||||||
|
* @param formGroup FormGroup
|
||||||
|
*/
|
||||||
|
addFormGroups(id: string, formGroup: FormGroup): void {
|
||||||
|
this.formGroups.set(id, formGroup);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* If present, remove form model from formModels map
|
||||||
|
* @param id id of model
|
||||||
|
*/
|
||||||
|
removeFormGroup(id: string): void {
|
||||||
|
if (this.formGroups.has(id)) {
|
||||||
|
this.formGroups.delete(id);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Calculate the metadata list related to the event.
|
* Calculate the metadata list related to the event.
|
||||||
* @param event
|
* @param event
|
||||||
@@ -400,4 +496,39 @@ export class FormBuilderService extends DynamicFormService {
|
|||||||
return Object.keys(result);
|
return Object.keys(result);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get the type bind field from config
|
||||||
|
*/
|
||||||
|
setTypeBindFieldFromConfig(): void {
|
||||||
|
this.configService.findByPropertyName('submit.type-bind.field').pipe(
|
||||||
|
getFirstCompletedRemoteData(),
|
||||||
|
).subscribe((remoteData: any) => {
|
||||||
|
// make sure we got a success response from the backend
|
||||||
|
if (!remoteData.hasSucceeded) {
|
||||||
|
this.typeField = 'dc_type';
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
// Read type bind value from response and set if non-empty
|
||||||
|
const typeFieldConfig = remoteData.payload.values[0];
|
||||||
|
if (isEmpty(typeFieldConfig)) {
|
||||||
|
this.typeField = 'dc_type';
|
||||||
|
} else {
|
||||||
|
this.typeField = typeFieldConfig.replace(/\./g, '_');
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get type field. If the type isn't already set, and a ConfigurationDataService is provided, set (with subscribe)
|
||||||
|
* from back end. Otherwise, get/set a default "dc_type" value
|
||||||
|
*/
|
||||||
|
getTypeField(): string {
|
||||||
|
if (hasValue(this.configService) && hasNoValue(this.typeField)) {
|
||||||
|
this.setTypeBindFieldFromConfig();
|
||||||
|
} else if (hasNoValue(this.typeField)) {
|
||||||
|
this.typeField = 'dc_type';
|
||||||
|
}
|
||||||
|
return this.typeField;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@@ -113,6 +113,12 @@ export class FormFieldModel {
|
|||||||
@autoserialize
|
@autoserialize
|
||||||
style: string;
|
style: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Containing types to bind for this field
|
||||||
|
*/
|
||||||
|
@autoserialize
|
||||||
|
typeBind: string[];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Containing the value for this metadata field
|
* Containing the value for this metadata field
|
||||||
*/
|
*/
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
import { Inject } from '@angular/core';
|
import {Inject} from '@angular/core';
|
||||||
import { FormFieldModel } from '../models/form-field.model';
|
import { FormFieldModel } from '../models/form-field.model';
|
||||||
import { FormFieldMetadataValueObject } from '../models/form-field-metadata-value.model';
|
import { FormFieldMetadataValueObject } from '../models/form-field-metadata-value.model';
|
||||||
import {
|
import {
|
||||||
|
@@ -12,7 +12,8 @@ describe('DateFieldParser test suite', () => {
|
|||||||
const parserOptions: ParserOptions = {
|
const parserOptions: ParserOptions = {
|
||||||
readOnly: false,
|
readOnly: false,
|
||||||
submissionScope: null,
|
submissionScope: null,
|
||||||
collectionUUID: null
|
collectionUUID: null,
|
||||||
|
typeField: 'dc_type'
|
||||||
};
|
};
|
||||||
|
|
||||||
beforeEach(() => {
|
beforeEach(() => {
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
import { FieldParser } from './field-parser';
|
import { FieldParser } from './field-parser';
|
||||||
import {
|
import {
|
||||||
DynamicDsDateControlModelConfig,
|
DynamicDsDatePickerModel,
|
||||||
DynamicDsDatePickerModel
|
DynamicDsDateControlModelConfig
|
||||||
} from '../ds-dynamic-form-ui/models/date-picker/date-picker.model';
|
} from '../ds-dynamic-form-ui/models/date-picker/date-picker.model';
|
||||||
import { isNotEmpty } from '../../../empty.util';
|
import { isNotEmpty } from '../../../empty.util';
|
||||||
import { DS_DATE_PICKER_SEPARATOR } from '../ds-dynamic-form-ui/models/date-picker/date-picker.component';
|
import { DS_DATE_PICKER_SEPARATOR } from '../ds-dynamic-form-ui/models/date-picker/date-picker.component';
|
||||||
@@ -13,7 +13,7 @@ export class DateFieldParser extends FieldParser {
|
|||||||
let malformedDate = false;
|
let malformedDate = false;
|
||||||
const inputDateModelConfig: DynamicDsDateControlModelConfig = this.initModel(null, false, true);
|
const inputDateModelConfig: DynamicDsDateControlModelConfig = this.initModel(null, false, true);
|
||||||
inputDateModelConfig.legend = this.configData.label;
|
inputDateModelConfig.legend = this.configData.label;
|
||||||
|
inputDateModelConfig.disabled = inputDateModelConfig.readOnly;
|
||||||
inputDateModelConfig.toggleIcon = 'fas fa-calendar';
|
inputDateModelConfig.toggleIcon = 'fas fa-calendar';
|
||||||
this.setValues(inputDateModelConfig as any, fieldValue);
|
this.setValues(inputDateModelConfig as any, fieldValue);
|
||||||
// Init Data and validity check
|
// Init Data and validity check
|
||||||
|
@@ -11,7 +11,8 @@ describe('DisabledFieldParser test suite', () => {
|
|||||||
const parserOptions: ParserOptions = {
|
const parserOptions: ParserOptions = {
|
||||||
readOnly: false,
|
readOnly: false,
|
||||||
submissionScope: null,
|
submissionScope: null,
|
||||||
collectionUUID: null
|
collectionUUID: null,
|
||||||
|
typeField: 'dc_type'
|
||||||
};
|
};
|
||||||
|
|
||||||
beforeEach(() => {
|
beforeEach(() => {
|
||||||
|
@@ -11,7 +11,8 @@ describe('DropdownFieldParser test suite', () => {
|
|||||||
const parserOptions: ParserOptions = {
|
const parserOptions: ParserOptions = {
|
||||||
readOnly: false,
|
readOnly: false,
|
||||||
submissionScope: 'testScopeUUID',
|
submissionScope: 'testScopeUUID',
|
||||||
collectionUUID: null
|
collectionUUID: null,
|
||||||
|
typeField: 'dc_type'
|
||||||
};
|
};
|
||||||
|
|
||||||
beforeEach(() => {
|
beforeEach(() => {
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
import { Inject } from '@angular/core';
|
import {Inject} from '@angular/core';
|
||||||
import { FormFieldModel } from '../models/form-field.model';
|
import { FormFieldModel } from '../models/form-field.model';
|
||||||
import {
|
import {
|
||||||
CONFIG_DATA,
|
CONFIG_DATA,
|
||||||
@@ -22,7 +22,7 @@ export class DropdownFieldParser extends FieldParser {
|
|||||||
@Inject(SUBMISSION_ID) submissionId: string,
|
@Inject(SUBMISSION_ID) submissionId: string,
|
||||||
@Inject(CONFIG_DATA) configData: FormFieldModel,
|
@Inject(CONFIG_DATA) configData: FormFieldModel,
|
||||||
@Inject(INIT_FORM_VALUES) initFormValues,
|
@Inject(INIT_FORM_VALUES) initFormValues,
|
||||||
@Inject(PARSER_OPTIONS) parserOptions: ParserOptions
|
@Inject(PARSER_OPTIONS) parserOptions: ParserOptions,
|
||||||
) {
|
) {
|
||||||
super(submissionId, configData, initFormValues, parserOptions);
|
super(submissionId, configData, initFormValues, parserOptions);
|
||||||
}
|
}
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
import { Inject, InjectionToken } from '@angular/core';
|
import {Inject, InjectionToken} from '@angular/core';
|
||||||
|
|
||||||
import { uniqueId } from 'lodash';
|
import { uniqueId } from 'lodash';
|
||||||
import { DynamicFormControlLayout } from '@ng-dynamic-forms/core';
|
import {DynamicFormControlLayout, DynamicFormControlRelation, MATCH_VISIBLE, OR_OPERATOR} from '@ng-dynamic-forms/core';
|
||||||
|
|
||||||
import { hasValue, isNotEmpty, isNotNull, isNotUndefined } from '../../../empty.util';
|
import { hasValue, isNotEmpty, isNotNull, isNotUndefined } from '../../../empty.util';
|
||||||
import { FormFieldModel } from '../models/form-field.model';
|
import { FormFieldModel } from '../models/form-field.model';
|
||||||
@@ -26,6 +26,11 @@ export const PARSER_OPTIONS: InjectionToken<ParserOptions> = new InjectionToken<
|
|||||||
export abstract class FieldParser {
|
export abstract class FieldParser {
|
||||||
|
|
||||||
protected fieldId: string;
|
protected fieldId: string;
|
||||||
|
/**
|
||||||
|
* This is the field to use for type binding
|
||||||
|
* @protected
|
||||||
|
*/
|
||||||
|
protected typeField: string;
|
||||||
|
|
||||||
constructor(
|
constructor(
|
||||||
@Inject(SUBMISSION_ID) protected submissionId: string,
|
@Inject(SUBMISSION_ID) protected submissionId: string,
|
||||||
@@ -67,6 +72,8 @@ export abstract class FieldParser {
|
|||||||
metadataFields: this.getAllFieldIds(),
|
metadataFields: this.getAllFieldIds(),
|
||||||
hasSelectableMetadata: isNotEmpty(this.configData.selectableMetadata),
|
hasSelectableMetadata: isNotEmpty(this.configData.selectableMetadata),
|
||||||
isDraggable,
|
isDraggable,
|
||||||
|
typeBindRelations: isNotEmpty(this.configData.typeBind) ? this.getTypeBindRelations(this.configData.typeBind,
|
||||||
|
this.parserOptions.typeField) : null,
|
||||||
groupFactory: () => {
|
groupFactory: () => {
|
||||||
let model;
|
let model;
|
||||||
if ((arrayCounter === 0)) {
|
if ((arrayCounter === 0)) {
|
||||||
@@ -275,7 +282,7 @@ export abstract class FieldParser {
|
|||||||
// Set label
|
// Set label
|
||||||
this.setLabel(controlModel, label);
|
this.setLabel(controlModel, label);
|
||||||
if (hint) {
|
if (hint) {
|
||||||
controlModel.hint = this.configData.hints;
|
controlModel.hint = this.configData.hints || ' ';
|
||||||
}
|
}
|
||||||
controlModel.placeholder = this.configData.label;
|
controlModel.placeholder = this.configData.label;
|
||||||
|
|
||||||
@@ -292,9 +299,46 @@ export abstract class FieldParser {
|
|||||||
(controlModel as DsDynamicInputModel).languageCodes = this.configData.languageCodes;
|
(controlModel as DsDynamicInputModel).languageCodes = this.configData.languageCodes;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// If typeBind is configured
|
||||||
|
if (isNotEmpty(this.configData.typeBind)) {
|
||||||
|
(controlModel as DsDynamicInputModel).typeBindRelations = this.getTypeBindRelations(this.configData.typeBind,
|
||||||
|
this.parserOptions.typeField);
|
||||||
|
}
|
||||||
|
|
||||||
return controlModel;
|
return controlModel;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get the type bind values from the REST data for a specific field
|
||||||
|
* The return value is any[] in the method signature but in reality it's
|
||||||
|
* returning the 'relation' that'll be used for a dynamic matcher when filtering
|
||||||
|
* fields in type bind, made up of a 'match' outcome (make this field visible), an 'operator'
|
||||||
|
* (OR) and a 'when' condition (the bindValues array).
|
||||||
|
* @param configuredTypeBindValues array of types from the submission definition (CONFIG_DATA)
|
||||||
|
* @private
|
||||||
|
* @return DynamicFormControlRelation[] array with one relation in it, for type bind matching to show a field
|
||||||
|
*/
|
||||||
|
private getTypeBindRelations(configuredTypeBindValues: string[], typeField: string): DynamicFormControlRelation[] {
|
||||||
|
const bindValues = [];
|
||||||
|
configuredTypeBindValues.forEach((value) => {
|
||||||
|
bindValues.push({
|
||||||
|
id: typeField,
|
||||||
|
value: value
|
||||||
|
});
|
||||||
|
});
|
||||||
|
// match: MATCH_VISIBLE means that if true, the field / component will be visible
|
||||||
|
// operator: OR means that all the values in the 'when' condition will be compared with OR, not AND
|
||||||
|
// when: the list of values to match against, in this case the list of strings from <type-bind>...</type-bind>
|
||||||
|
// Example: Field [x] will be VISIBLE if item type = book OR item type = book_part
|
||||||
|
//
|
||||||
|
// The opposing match value will be the dc.type for the workspace item
|
||||||
|
return [{
|
||||||
|
match: MATCH_VISIBLE,
|
||||||
|
operator: OR_OPERATOR,
|
||||||
|
when: bindValues
|
||||||
|
}];
|
||||||
|
}
|
||||||
|
|
||||||
protected hasRegex() {
|
protected hasRegex() {
|
||||||
return hasValue(this.configData.input.regex);
|
return hasValue(this.configData.input.regex);
|
||||||
}
|
}
|
||||||
|
@@ -13,7 +13,8 @@ describe('ListFieldParser test suite', () => {
|
|||||||
const parserOptions: ParserOptions = {
|
const parserOptions: ParserOptions = {
|
||||||
readOnly: false,
|
readOnly: false,
|
||||||
submissionScope: 'testScopeUUID',
|
submissionScope: 'testScopeUUID',
|
||||||
collectionUUID: null
|
collectionUUID: null,
|
||||||
|
typeField: 'dc_type'
|
||||||
};
|
};
|
||||||
|
|
||||||
beforeEach(() => {
|
beforeEach(() => {
|
||||||
|
@@ -12,7 +12,8 @@ describe('LookupFieldParser test suite', () => {
|
|||||||
const parserOptions: ParserOptions = {
|
const parserOptions: ParserOptions = {
|
||||||
readOnly: false,
|
readOnly: false,
|
||||||
submissionScope: 'testScopeUUID',
|
submissionScope: 'testScopeUUID',
|
||||||
collectionUUID: null
|
collectionUUID: null,
|
||||||
|
typeField: 'dc_type'
|
||||||
};
|
};
|
||||||
|
|
||||||
beforeEach(() => {
|
beforeEach(() => {
|
||||||
|
@@ -12,7 +12,8 @@ describe('LookupNameFieldParser test suite', () => {
|
|||||||
const parserOptions: ParserOptions = {
|
const parserOptions: ParserOptions = {
|
||||||
readOnly: false,
|
readOnly: false,
|
||||||
submissionScope: 'testScopeUUID',
|
submissionScope: 'testScopeUUID',
|
||||||
collectionUUID: null
|
collectionUUID: null,
|
||||||
|
typeField: 'dc_type'
|
||||||
};
|
};
|
||||||
|
|
||||||
beforeEach(() => {
|
beforeEach(() => {
|
||||||
|
@@ -14,7 +14,8 @@ describe('NameFieldParser test suite', () => {
|
|||||||
const parserOptions: ParserOptions = {
|
const parserOptions: ParserOptions = {
|
||||||
readOnly: false,
|
readOnly: false,
|
||||||
submissionScope: 'testScopeUUID',
|
submissionScope: 'testScopeUUID',
|
||||||
collectionUUID: null
|
collectionUUID: null,
|
||||||
|
typeField: 'dc_type'
|
||||||
};
|
};
|
||||||
|
|
||||||
beforeEach(() => {
|
beforeEach(() => {
|
||||||
|
@@ -15,7 +15,8 @@ describe('OneboxFieldParser test suite', () => {
|
|||||||
const parserOptions: ParserOptions = {
|
const parserOptions: ParserOptions = {
|
||||||
readOnly: false,
|
readOnly: false,
|
||||||
submissionScope: 'testScopeUUID',
|
submissionScope: 'testScopeUUID',
|
||||||
collectionUUID: null
|
collectionUUID: null,
|
||||||
|
typeField: 'dc_type'
|
||||||
};
|
};
|
||||||
|
|
||||||
beforeEach(() => {
|
beforeEach(() => {
|
||||||
|
@@ -2,4 +2,5 @@ export interface ParserOptions {
|
|||||||
readOnly: boolean;
|
readOnly: boolean;
|
||||||
submissionScope: string;
|
submissionScope: string;
|
||||||
collectionUUID: string;
|
collectionUUID: string;
|
||||||
|
typeField: string;
|
||||||
}
|
}
|
||||||
|
@@ -12,7 +12,8 @@ describe('RelationGroupFieldParser test suite', () => {
|
|||||||
const parserOptions: ParserOptions = {
|
const parserOptions: ParserOptions = {
|
||||||
readOnly: false,
|
readOnly: false,
|
||||||
submissionScope: 'testScopeUUID',
|
submissionScope: 'testScopeUUID',
|
||||||
collectionUUID: 'WORKSPACE'
|
collectionUUID: 'WORKSPACE',
|
||||||
|
typeField: 'dc_type'
|
||||||
};
|
};
|
||||||
|
|
||||||
beforeEach(() => {
|
beforeEach(() => {
|
||||||
|
@@ -22,6 +22,7 @@ describe('RowParser test suite', () => {
|
|||||||
const initFormValues = {};
|
const initFormValues = {};
|
||||||
const submissionScope = 'WORKSPACE';
|
const submissionScope = 'WORKSPACE';
|
||||||
const readOnly = false;
|
const readOnly = false;
|
||||||
|
const typeField = 'dc_type';
|
||||||
|
|
||||||
beforeEach(() => {
|
beforeEach(() => {
|
||||||
row1 = {
|
row1 = {
|
||||||
@@ -338,7 +339,7 @@ describe('RowParser test suite', () => {
|
|||||||
it('should return a DynamicRowGroupModel object', () => {
|
it('should return a DynamicRowGroupModel object', () => {
|
||||||
const parser = new RowParser(undefined);
|
const parser = new RowParser(undefined);
|
||||||
|
|
||||||
const rowModel = parser.parse(submissionId, row1, scopeUUID, initFormValues, submissionScope, readOnly);
|
const rowModel = parser.parse(submissionId, row1, scopeUUID, initFormValues, submissionScope, readOnly, typeField);
|
||||||
|
|
||||||
expect(rowModel instanceof DynamicRowGroupModel).toBe(true);
|
expect(rowModel instanceof DynamicRowGroupModel).toBe(true);
|
||||||
});
|
});
|
||||||
@@ -346,7 +347,7 @@ describe('RowParser test suite', () => {
|
|||||||
it('should return a row with three fields', () => {
|
it('should return a row with three fields', () => {
|
||||||
const parser = new RowParser(undefined);
|
const parser = new RowParser(undefined);
|
||||||
|
|
||||||
const rowModel = parser.parse(submissionId, row1, scopeUUID, initFormValues, submissionScope, readOnly);
|
const rowModel = parser.parse(submissionId, row1, scopeUUID, initFormValues, submissionScope, readOnly, typeField);
|
||||||
|
|
||||||
expect((rowModel as DynamicRowGroupModel).group.length).toBe(3);
|
expect((rowModel as DynamicRowGroupModel).group.length).toBe(3);
|
||||||
});
|
});
|
||||||
@@ -354,7 +355,7 @@ describe('RowParser test suite', () => {
|
|||||||
it('should return a DynamicRowArrayModel object', () => {
|
it('should return a DynamicRowArrayModel object', () => {
|
||||||
const parser = new RowParser(undefined);
|
const parser = new RowParser(undefined);
|
||||||
|
|
||||||
const rowModel = parser.parse(submissionId, row2, scopeUUID, initFormValues, submissionScope, readOnly);
|
const rowModel = parser.parse(submissionId, row2, scopeUUID, initFormValues, submissionScope, readOnly, typeField);
|
||||||
|
|
||||||
expect(rowModel instanceof DynamicRowArrayModel).toBe(true);
|
expect(rowModel instanceof DynamicRowArrayModel).toBe(true);
|
||||||
});
|
});
|
||||||
@@ -362,7 +363,7 @@ describe('RowParser test suite', () => {
|
|||||||
it('should return a row that contains only scoped fields', () => {
|
it('should return a row that contains only scoped fields', () => {
|
||||||
const parser = new RowParser(undefined);
|
const parser = new RowParser(undefined);
|
||||||
|
|
||||||
const rowModel = parser.parse(submissionId, row3, scopeUUID, initFormValues, submissionScope, readOnly);
|
const rowModel = parser.parse(submissionId, row3, scopeUUID, initFormValues, submissionScope, readOnly, typeField);
|
||||||
|
|
||||||
expect((rowModel as DynamicRowGroupModel).group.length).toBe(1);
|
expect((rowModel as DynamicRowGroupModel).group.length).toBe(1);
|
||||||
});
|
});
|
||||||
@@ -370,7 +371,7 @@ describe('RowParser test suite', () => {
|
|||||||
it('should be able to parse a dropdown combo field', () => {
|
it('should be able to parse a dropdown combo field', () => {
|
||||||
const parser = new RowParser(undefined);
|
const parser = new RowParser(undefined);
|
||||||
|
|
||||||
const rowModel = parser.parse(submissionId, row4, scopeUUID, initFormValues, submissionScope, readOnly);
|
const rowModel = parser.parse(submissionId, row4, scopeUUID, initFormValues, submissionScope, readOnly, typeField);
|
||||||
|
|
||||||
expect(rowModel).toBeDefined();
|
expect(rowModel).toBeDefined();
|
||||||
});
|
});
|
||||||
@@ -378,7 +379,7 @@ describe('RowParser test suite', () => {
|
|||||||
it('should be able to parse a lookup-name field', () => {
|
it('should be able to parse a lookup-name field', () => {
|
||||||
const parser = new RowParser(undefined);
|
const parser = new RowParser(undefined);
|
||||||
|
|
||||||
const rowModel = parser.parse(submissionId, row5, scopeUUID, initFormValues, submissionScope, readOnly);
|
const rowModel = parser.parse(submissionId, row5, scopeUUID, initFormValues, submissionScope, readOnly, typeField);
|
||||||
|
|
||||||
expect(rowModel).toBeDefined();
|
expect(rowModel).toBeDefined();
|
||||||
});
|
});
|
||||||
@@ -386,7 +387,7 @@ describe('RowParser test suite', () => {
|
|||||||
it('should be able to parse a list field', () => {
|
it('should be able to parse a list field', () => {
|
||||||
const parser = new RowParser(undefined);
|
const parser = new RowParser(undefined);
|
||||||
|
|
||||||
const rowModel = parser.parse(submissionId, row6, scopeUUID, initFormValues, submissionScope, readOnly);
|
const rowModel = parser.parse(submissionId, row6, scopeUUID, initFormValues, submissionScope, readOnly, typeField);
|
||||||
|
|
||||||
expect(rowModel).toBeDefined();
|
expect(rowModel).toBeDefined();
|
||||||
});
|
});
|
||||||
@@ -394,7 +395,7 @@ describe('RowParser test suite', () => {
|
|||||||
it('should be able to parse a date field', () => {
|
it('should be able to parse a date field', () => {
|
||||||
const parser = new RowParser(undefined);
|
const parser = new RowParser(undefined);
|
||||||
|
|
||||||
const rowModel = parser.parse(submissionId, row7, scopeUUID, initFormValues, submissionScope, readOnly);
|
const rowModel = parser.parse(submissionId, row7, scopeUUID, initFormValues, submissionScope, readOnly, typeField);
|
||||||
|
|
||||||
expect(rowModel).toBeDefined();
|
expect(rowModel).toBeDefined();
|
||||||
});
|
});
|
||||||
@@ -402,7 +403,7 @@ describe('RowParser test suite', () => {
|
|||||||
it('should be able to parse a tag field', () => {
|
it('should be able to parse a tag field', () => {
|
||||||
const parser = new RowParser(undefined);
|
const parser = new RowParser(undefined);
|
||||||
|
|
||||||
const rowModel = parser.parse(submissionId, row8, scopeUUID, initFormValues, submissionScope, readOnly);
|
const rowModel = parser.parse(submissionId, row8, scopeUUID, initFormValues, submissionScope, readOnly, typeField);
|
||||||
|
|
||||||
expect(rowModel).toBeDefined();
|
expect(rowModel).toBeDefined();
|
||||||
});
|
});
|
||||||
@@ -410,7 +411,7 @@ describe('RowParser test suite', () => {
|
|||||||
it('should be able to parse a textarea field', () => {
|
it('should be able to parse a textarea field', () => {
|
||||||
const parser = new RowParser(undefined);
|
const parser = new RowParser(undefined);
|
||||||
|
|
||||||
const rowModel = parser.parse(submissionId, row9, scopeUUID, initFormValues, submissionScope, readOnly);
|
const rowModel = parser.parse(submissionId, row9, scopeUUID, initFormValues, submissionScope, readOnly, typeField);
|
||||||
|
|
||||||
expect(rowModel).toBeDefined();
|
expect(rowModel).toBeDefined();
|
||||||
});
|
});
|
||||||
@@ -418,7 +419,7 @@ describe('RowParser test suite', () => {
|
|||||||
it('should be able to parse a group field', () => {
|
it('should be able to parse a group field', () => {
|
||||||
const parser = new RowParser(undefined);
|
const parser = new RowParser(undefined);
|
||||||
|
|
||||||
const rowModel = parser.parse(submissionId, row10, scopeUUID, initFormValues, submissionScope, readOnly);
|
const rowModel = parser.parse(submissionId, row10, scopeUUID, initFormValues, submissionScope, readOnly, typeField);
|
||||||
|
|
||||||
expect(rowModel).toBeDefined();
|
expect(rowModel).toBeDefined();
|
||||||
});
|
});
|
||||||
|
@@ -31,7 +31,8 @@ export class RowParser {
|
|||||||
scopeUUID,
|
scopeUUID,
|
||||||
initFormValues: any,
|
initFormValues: any,
|
||||||
submissionScope,
|
submissionScope,
|
||||||
readOnly: boolean): DynamicRowGroupModel {
|
readOnly: boolean,
|
||||||
|
typeField: string): DynamicRowGroupModel {
|
||||||
let fieldModel: any = null;
|
let fieldModel: any = null;
|
||||||
let parsedResult = null;
|
let parsedResult = null;
|
||||||
const config: DynamicFormGroupModelConfig = {
|
const config: DynamicFormGroupModelConfig = {
|
||||||
@@ -47,7 +48,8 @@ export class RowParser {
|
|||||||
const parserOptions: ParserOptions = {
|
const parserOptions: ParserOptions = {
|
||||||
readOnly: readOnly,
|
readOnly: readOnly,
|
||||||
submissionScope: submissionScope,
|
submissionScope: submissionScope,
|
||||||
collectionUUID: scopeUUID
|
collectionUUID: scopeUUID,
|
||||||
|
typeField: typeField
|
||||||
};
|
};
|
||||||
|
|
||||||
// Iterate over row's fields
|
// Iterate over row's fields
|
||||||
|
@@ -12,7 +12,8 @@ describe('SeriesFieldParser test suite', () => {
|
|||||||
const parserOptions: ParserOptions = {
|
const parserOptions: ParserOptions = {
|
||||||
readOnly: false,
|
readOnly: false,
|
||||||
submissionScope: 'testScopeUUID',
|
submissionScope: 'testScopeUUID',
|
||||||
collectionUUID: null
|
collectionUUID: null,
|
||||||
|
typeField: 'dc_type'
|
||||||
};
|
};
|
||||||
|
|
||||||
beforeEach(() => {
|
beforeEach(() => {
|
||||||
|
@@ -12,7 +12,8 @@ describe('TagFieldParser test suite', () => {
|
|||||||
const parserOptions: ParserOptions = {
|
const parserOptions: ParserOptions = {
|
||||||
readOnly: false,
|
readOnly: false,
|
||||||
submissionScope: 'testScopeUUID',
|
submissionScope: 'testScopeUUID',
|
||||||
collectionUUID: null
|
collectionUUID: null,
|
||||||
|
typeField: 'dc_type'
|
||||||
};
|
};
|
||||||
|
|
||||||
beforeEach(() => {
|
beforeEach(() => {
|
||||||
|
@@ -12,7 +12,8 @@ describe('TextareaFieldParser test suite', () => {
|
|||||||
const parserOptions: ParserOptions = {
|
const parserOptions: ParserOptions = {
|
||||||
readOnly: false,
|
readOnly: false,
|
||||||
submissionScope: null,
|
submissionScope: null,
|
||||||
collectionUUID: null
|
collectionUUID: null,
|
||||||
|
typeField: 'dc_type'
|
||||||
};
|
};
|
||||||
|
|
||||||
beforeEach(() => {
|
beforeEach(() => {
|
||||||
|
14
src/app/shared/mocks/find-id-config-data.service.mock.ts
Normal file
14
src/app/shared/mocks/find-id-config-data.service.mock.ts
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
import { createSuccessfulRemoteDataObject$ } from '../remote-data.utils';
|
||||||
|
import { ConfigurationProperty } from '../../core/shared/configuration-property.model';
|
||||||
|
|
||||||
|
export function getMockFindByIdDataService(propertyKey: string, ...values: string[]) {
|
||||||
|
return jasmine.createSpyObj('findByIdDataService', {
|
||||||
|
findByPropertyName: createSuccessfulRemoteDataObject$({
|
||||||
|
... new ConfigurationProperty(),
|
||||||
|
name: propertyKey,
|
||||||
|
values: values,
|
||||||
|
})
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
|
@@ -1,7 +1,9 @@
|
|||||||
import { FormBuilderService } from '../form/builder/form-builder.service';
|
import { FormBuilderService } from '../form/builder/form-builder.service';
|
||||||
import { FormControl, FormGroup } from '@angular/forms';
|
import { FormControl, FormGroup } from '@angular/forms';
|
||||||
|
import {DsDynamicInputModel} from '../form/builder/ds-dynamic-form-ui/models/ds-dynamic-input.model';
|
||||||
|
|
||||||
export function getMockFormBuilderService(): FormBuilderService {
|
export function getMockFormBuilderService(): FormBuilderService {
|
||||||
|
|
||||||
return jasmine.createSpyObj('FormBuilderService', {
|
return jasmine.createSpyObj('FormBuilderService', {
|
||||||
modelFromConfiguration: [],
|
modelFromConfiguration: [],
|
||||||
createFormGroup: new FormGroup({}),
|
createFormGroup: new FormGroup({}),
|
||||||
@@ -17,8 +19,26 @@ export function getMockFormBuilderService(): FormBuilderService {
|
|||||||
isQualdropGroup: false,
|
isQualdropGroup: false,
|
||||||
isModelInCustomGroup: true,
|
isModelInCustomGroup: true,
|
||||||
isRelationGroup: true,
|
isRelationGroup: true,
|
||||||
hasArrayGroupValue: true
|
hasArrayGroupValue: true,
|
||||||
|
getTypeBindModel: new DsDynamicInputModel({
|
||||||
|
name: 'dc.type',
|
||||||
|
id: 'dc_type',
|
||||||
|
readOnly: false,
|
||||||
|
disabled: false,
|
||||||
|
repeatable: false,
|
||||||
|
value: {
|
||||||
|
value: 'boundType',
|
||||||
|
display: 'Bound Type',
|
||||||
|
authority: 'bound-auth-key'
|
||||||
|
},
|
||||||
|
submissionId: '1234',
|
||||||
|
metadataFields: ['dc.type'],
|
||||||
|
hasSelectableMetadata: false,
|
||||||
|
typeBindRelations: [
|
||||||
|
{match: 'VISIBLE', operator: 'OR', when: [{id: 'dc.type', value: 'boundType'}]}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
)
|
||||||
});
|
});
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@@ -89,7 +89,8 @@ const rowArrayQualdropConfig = {
|
|||||||
submissionId: '1234',
|
submissionId: '1234',
|
||||||
metadataKey: 'dc.some.key',
|
metadataKey: 'dc.some.key',
|
||||||
metadataFields: ['dc.some.key'],
|
metadataFields: ['dc.some.key'],
|
||||||
hasSelectableMetadata: false
|
hasSelectableMetadata: false,
|
||||||
|
showButtons: true
|
||||||
} as DynamicRowArrayModelConfig;
|
} as DynamicRowArrayModelConfig;
|
||||||
|
|
||||||
export const MockRowArrayQualdropModel: DynamicRowArrayModel = new DynamicRowArrayModel(rowArrayQualdropConfig);
|
export const MockRowArrayQualdropModel: DynamicRowArrayModel = new DynamicRowArrayModel(rowArrayQualdropConfig);
|
||||||
@@ -305,3 +306,57 @@ export const mockFileFormEditRowGroupModel = new DynamicRowGroupModel({
|
|||||||
id: 'mockRowGroupModel',
|
id: 'mockRowGroupModel',
|
||||||
group: [mockFileFormEditInputModel]
|
group: [mockFileFormEditInputModel]
|
||||||
});
|
});
|
||||||
|
|
||||||
|
// Mock configuration and model for an input with type binding
|
||||||
|
export const inputWithTypeBindConfig = {
|
||||||
|
name: 'testWithTypeBind',
|
||||||
|
id: 'testWithTypeBind',
|
||||||
|
readOnly: false,
|
||||||
|
disabled: false,
|
||||||
|
repeatable: false,
|
||||||
|
value: {
|
||||||
|
value: 'testWithTypeBind',
|
||||||
|
display: 'testWithTypeBind',
|
||||||
|
authority: 'bound-auth-key'
|
||||||
|
},
|
||||||
|
submissionId: '1234',
|
||||||
|
metadataFields: [],
|
||||||
|
hasSelectableMetadata: false,
|
||||||
|
getTypeBindModel: new DsDynamicInputModel({
|
||||||
|
name: 'testWithTypeBind',
|
||||||
|
id: 'testWithTypeBind',
|
||||||
|
readOnly: false,
|
||||||
|
disabled: false,
|
||||||
|
repeatable: false,
|
||||||
|
value: {
|
||||||
|
value: 'testWithTypeBind',
|
||||||
|
display: 'testWithTypeBind',
|
||||||
|
authority: 'bound-auth-key'
|
||||||
|
},
|
||||||
|
submissionId: '1234',
|
||||||
|
metadataFields: [],
|
||||||
|
hasSelectableMetadata: false,
|
||||||
|
typeBindRelations: [
|
||||||
|
{match: 'VISIBLE', operator: 'OR', when: [{'id': 'dc.type', 'value': 'boundType'}]}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
)
|
||||||
|
};
|
||||||
|
|
||||||
|
export const mockInputWithTypeBindModel = new DsDynamicInputModel(inputWithAuthorityValueConfig);
|
||||||
|
|
||||||
|
export const dcTypeInputConfig = {
|
||||||
|
name: 'dc.type',
|
||||||
|
id: 'dc_type',
|
||||||
|
readOnly: false,
|
||||||
|
disabled: false,
|
||||||
|
repeatable: false,
|
||||||
|
submissionId: '1234',
|
||||||
|
metadataFields: [],
|
||||||
|
hasSelectableMetadata: false,
|
||||||
|
value: {
|
||||||
|
value: 'boundType'
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
export const mockDcTypeInputModel = new DsDynamicInputModel(dcTypeInputConfig);
|
||||||
|
@@ -18,6 +18,7 @@
|
|||||||
</span>
|
</span>
|
||||||
<div class="card-body">
|
<div class="card-body">
|
||||||
<ds-type-badge *ngIf="showLabel" [object]="dso"></ds-type-badge>
|
<ds-type-badge *ngIf="showLabel" [object]="dso"></ds-type-badge>
|
||||||
|
<ds-access-status-badge [item]="dso"></ds-access-status-badge>
|
||||||
<ds-truncatable-part [id]="dso.id" [minLines]="3" type="h4">
|
<ds-truncatable-part [id]="dso.id" [minLines]="3" type="h4">
|
||||||
<h4 class="card-title" [innerHTML]="firstMetadataValue('dc.title')"></h4>
|
<h4 class="card-title" [innerHTML]="firstMetadataValue('dc.title')"></h4>
|
||||||
</ds-truncatable-part>
|
</ds-truncatable-part>
|
||||||
|
@@ -0,0 +1,5 @@
|
|||||||
|
<ng-container *ngIf="showAccessStatus">
|
||||||
|
<div *ngIf="accessStatus$ | async as accessStatus">
|
||||||
|
<span class="badge badge-secondary">{{ accessStatus | translate }}</span>
|
||||||
|
</div>
|
||||||
|
</ng-container>
|
@@ -0,0 +1,163 @@
|
|||||||
|
import { Item } from '../../../core/shared/item.model';
|
||||||
|
import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
|
||||||
|
import { TranslateModule } from '@ngx-translate/core';
|
||||||
|
import { TruncatePipe } from '../../utils/truncate.pipe';
|
||||||
|
import { NO_ERRORS_SCHEMA } from '@angular/core';
|
||||||
|
import { AccessStatusBadgeComponent } from './access-status-badge.component';
|
||||||
|
import { createSuccessfulRemoteDataObject$ } from '../../remote-data.utils';
|
||||||
|
import { By } from '@angular/platform-browser';
|
||||||
|
import { AccessStatusObject } from './access-status.model';
|
||||||
|
import { AccessStatusDataService } from 'src/app/core/data/access-status-data.service';
|
||||||
|
import { environment } from 'src/environments/environment';
|
||||||
|
|
||||||
|
describe('ItemAccessStatusBadgeComponent', () => {
|
||||||
|
let component: AccessStatusBadgeComponent;
|
||||||
|
let fixture: ComponentFixture<AccessStatusBadgeComponent>;
|
||||||
|
|
||||||
|
let unknownStatus: AccessStatusObject;
|
||||||
|
let metadataOnlyStatus: AccessStatusObject;
|
||||||
|
let openAccessStatus: AccessStatusObject;
|
||||||
|
let embargoStatus: AccessStatusObject;
|
||||||
|
let restrictedStatus: AccessStatusObject;
|
||||||
|
|
||||||
|
let accessStatusDataService: AccessStatusDataService;
|
||||||
|
|
||||||
|
let item: Item;
|
||||||
|
|
||||||
|
function init() {
|
||||||
|
unknownStatus = Object.assign(new AccessStatusObject(), {
|
||||||
|
status: 'unknown'
|
||||||
|
});
|
||||||
|
|
||||||
|
metadataOnlyStatus = Object.assign(new AccessStatusObject(), {
|
||||||
|
status: 'metadata.only'
|
||||||
|
});
|
||||||
|
|
||||||
|
openAccessStatus = Object.assign(new AccessStatusObject(), {
|
||||||
|
status: 'open.access'
|
||||||
|
});
|
||||||
|
|
||||||
|
embargoStatus = Object.assign(new AccessStatusObject(), {
|
||||||
|
status: 'embargo'
|
||||||
|
});
|
||||||
|
|
||||||
|
restrictedStatus = Object.assign(new AccessStatusObject(), {
|
||||||
|
status: 'restricted'
|
||||||
|
});
|
||||||
|
|
||||||
|
accessStatusDataService = jasmine.createSpyObj('accessStatusDataService', {
|
||||||
|
findAccessStatusFor: createSuccessfulRemoteDataObject$(unknownStatus)
|
||||||
|
});
|
||||||
|
|
||||||
|
item = Object.assign(new Item(), {
|
||||||
|
uuid: 'item-uuid'
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function initTestBed() {
|
||||||
|
TestBed.configureTestingModule({
|
||||||
|
imports: [TranslateModule.forRoot()],
|
||||||
|
declarations: [AccessStatusBadgeComponent, TruncatePipe],
|
||||||
|
schemas: [NO_ERRORS_SCHEMA],
|
||||||
|
providers: [
|
||||||
|
{provide: AccessStatusDataService, useValue: accessStatusDataService}
|
||||||
|
]
|
||||||
|
}).compileComponents();
|
||||||
|
}
|
||||||
|
|
||||||
|
function initFixtureAndComponent() {
|
||||||
|
environment.item.showAccessStatuses = true;
|
||||||
|
fixture = TestBed.createComponent(AccessStatusBadgeComponent);
|
||||||
|
component = fixture.componentInstance;
|
||||||
|
component.item = item;
|
||||||
|
fixture.detectChanges();
|
||||||
|
environment.item.showAccessStatuses = false;
|
||||||
|
}
|
||||||
|
|
||||||
|
function lookForAccessStatusBadge(status: string) {
|
||||||
|
const badge = fixture.debugElement.query(By.css('span.badge'));
|
||||||
|
expect(badge.nativeElement.textContent).toEqual(`access-status.${status.toLowerCase()}.listelement.badge`);
|
||||||
|
}
|
||||||
|
|
||||||
|
describe('init', () => {
|
||||||
|
beforeEach(waitForAsync(() => {
|
||||||
|
init();
|
||||||
|
initTestBed();
|
||||||
|
}));
|
||||||
|
beforeEach(() => {
|
||||||
|
initFixtureAndComponent();
|
||||||
|
});
|
||||||
|
it('should init the component', () => {
|
||||||
|
expect(component).toBeTruthy();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('When the findAccessStatusFor method returns unknown', () => {
|
||||||
|
beforeEach(waitForAsync(() => {
|
||||||
|
init();
|
||||||
|
initTestBed();
|
||||||
|
}));
|
||||||
|
beforeEach(() => {
|
||||||
|
initFixtureAndComponent();
|
||||||
|
});
|
||||||
|
it('should show the unknown badge', () => {
|
||||||
|
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', () => {
|
||||||
|
lookForAccessStatusBadge('embargo');
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('When the findAccessStatusFor method returns restricted', () => {
|
||||||
|
beforeEach(waitForAsync(() => {
|
||||||
|
init();
|
||||||
|
(accessStatusDataService.findAccessStatusFor as jasmine.Spy).and.returnValue(createSuccessfulRemoteDataObject$(restrictedStatus));
|
||||||
|
initTestBed();
|
||||||
|
}));
|
||||||
|
beforeEach(() => {
|
||||||
|
initFixtureAndComponent();
|
||||||
|
});
|
||||||
|
it('should show the restricted badge', () => {
|
||||||
|
lookForAccessStatusBadge('restricted');
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
@@ -0,0 +1,57 @@
|
|||||||
|
import { Component, Input } from '@angular/core';
|
||||||
|
import { catchError, map } from 'rxjs/operators';
|
||||||
|
import { Observable, of as observableOf } from 'rxjs';
|
||||||
|
import { AccessStatusObject } from './access-status.model';
|
||||||
|
import { hasValue } from '../../empty.util';
|
||||||
|
import { environment } from 'src/environments/environment';
|
||||||
|
import { Item } from 'src/app/core/shared/item.model';
|
||||||
|
import { AccessStatusDataService } from 'src/app/core/data/access-status-data.service';
|
||||||
|
|
||||||
|
@Component({
|
||||||
|
selector: 'ds-access-status-badge',
|
||||||
|
templateUrl: './access-status-badge.component.html'
|
||||||
|
})
|
||||||
|
/**
|
||||||
|
* Component rendering the access status of an item as a badge
|
||||||
|
*/
|
||||||
|
export class AccessStatusBadgeComponent {
|
||||||
|
|
||||||
|
@Input() item: Item;
|
||||||
|
accessStatus$: Observable<string>;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Whether to show the access status badge or not
|
||||||
|
*/
|
||||||
|
showAccessStatus: boolean;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Initialize instance variables
|
||||||
|
*
|
||||||
|
* @param {AccessStatusDataService} accessStatusDataService
|
||||||
|
*/
|
||||||
|
constructor(private accessStatusDataService: AccessStatusDataService) { }
|
||||||
|
|
||||||
|
ngOnInit(): void {
|
||||||
|
this.showAccessStatus = environment.item.showAccessStatuses;
|
||||||
|
if (!this.showAccessStatus || this.item == null) {
|
||||||
|
// Do not show the badge if the feature is inactive or if the item is null.
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (this.item.accessStatus == null) {
|
||||||
|
// In case the access status has not been loaded, do it individually.
|
||||||
|
this.item.accessStatus = this.accessStatusDataService.findAccessStatusFor(this.item);
|
||||||
|
}
|
||||||
|
this.accessStatus$ = this.item.accessStatus.pipe(
|
||||||
|
map((accessStatusRD) => {
|
||||||
|
if (accessStatusRD.statusCode !== 401 && hasValue(accessStatusRD.payload)) {
|
||||||
|
return accessStatusRD.payload;
|
||||||
|
} else {
|
||||||
|
return [];
|
||||||
|
}
|
||||||
|
}),
|
||||||
|
map((accessStatus: AccessStatusObject) => hasValue(accessStatus.status) ? accessStatus.status : 'unknown'),
|
||||||
|
map((status: string) => `access-status.${status.toLowerCase()}.listelement.badge`),
|
||||||
|
catchError(() => observableOf('access-status.unknown.listelement.badge'))
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
@@ -0,0 +1,33 @@
|
|||||||
|
import { autoserialize, deserialize } from 'cerialize';
|
||||||
|
import { typedObject } from 'src/app/core/cache/builders/build-decorators';
|
||||||
|
import { CacheableObject } from 'src/app/core/cache/cacheable-object.model';
|
||||||
|
import { HALLink } from 'src/app/core/shared/hal-link.model';
|
||||||
|
import { ResourceType } from 'src/app/core/shared/resource-type';
|
||||||
|
import { excludeFromEquals } from 'src/app/core/utilities/equals.decorators';
|
||||||
|
import { ACCESS_STATUS } from './access-status.resource-type';
|
||||||
|
|
||||||
|
@typedObject
|
||||||
|
export class AccessStatusObject implements CacheableObject {
|
||||||
|
static type = ACCESS_STATUS;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The type for this AccessStatusObject
|
||||||
|
*/
|
||||||
|
@excludeFromEquals
|
||||||
|
@autoserialize
|
||||||
|
type: ResourceType;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The access status value
|
||||||
|
*/
|
||||||
|
@autoserialize
|
||||||
|
status: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The {@link HALLink}s for this AccessStatusObject
|
||||||
|
*/
|
||||||
|
@deserialize
|
||||||
|
_links: {
|
||||||
|
self: HALLink;
|
||||||
|
};
|
||||||
|
}
|
@@ -0,0 +1,9 @@
|
|||||||
|
import { ResourceType } from 'src/app/core/shared/resource-type';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The resource type for Access Status
|
||||||
|
*
|
||||||
|
* Needs to be in a separate file to prevent circular
|
||||||
|
* dependencies in webpack.
|
||||||
|
*/
|
||||||
|
export const ACCESS_STATUS = new ResourceType('accessStatus');
|
@@ -2,7 +2,10 @@
|
|||||||
<ng-container *ngIf="status">
|
<ng-container *ngIf="status">
|
||||||
<ds-mydspace-item-status [status]="status"></ds-mydspace-item-status>
|
<ds-mydspace-item-status [status]="status"></ds-mydspace-item-status>
|
||||||
</ng-container>
|
</ng-container>
|
||||||
|
<div class="d-flex">
|
||||||
<ds-type-badge [object]="item"></ds-type-badge>
|
<ds-type-badge [object]="item"></ds-type-badge>
|
||||||
|
<ds-access-status-badge [item]="item" class="pl-1"></ds-access-status-badge>
|
||||||
|
</div>
|
||||||
<ds-truncatable [id]="item.id">
|
<ds-truncatable [id]="item.id">
|
||||||
<h3 [innerHTML]="item.firstMetadataValue('dc.title') || ('mydspace.results.no-title' | translate)" [ngClass]="{'lead': true,'text-muted': !item.firstMetadataValue('dc.title')}"></h3>
|
<h3 [innerHTML]="item.firstMetadataValue('dc.title') || ('mydspace.results.no-title' | translate)" [ngClass]="{'lead': true,'text-muted': !item.firstMetadataValue('dc.title')}"></h3>
|
||||||
<div>
|
<div>
|
||||||
|
@@ -35,5 +35,4 @@ export class ItemListPreviewComponent {
|
|||||||
* A boolean representing if to show submitter information
|
* A boolean representing if to show submitter information
|
||||||
*/
|
*/
|
||||||
@Input() showSubmitter = false;
|
@Input() showSubmitter = false;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@@ -1,4 +1,7 @@
|
|||||||
<ds-type-badge *ngIf="showLabel" [object]="dso"></ds-type-badge>
|
<div class="d-flex">
|
||||||
|
<ds-type-badge *ngIf="showLabel" [object]="dso"></ds-type-badge>
|
||||||
|
<ds-access-status-badge [item]="dso" class="pl-1"></ds-access-status-badge>
|
||||||
|
</div>
|
||||||
|
|
||||||
<ds-truncatable [id]="dso.id" *ngIf="object !== undefined && object !== null">
|
<ds-truncatable [id]="dso.id" *ngIf="object !== undefined && object !== null">
|
||||||
<a *ngIf="linkType != linkTypes.None" [target]="(linkType == linkTypes.ExternalLink) ? '_blank' : '_self'" rel="noopener noreferrer"
|
<a *ngIf="linkType != linkTypes.None" [target]="(linkType == linkTypes.ExternalLink) ? '_blank' : '_self'" rel="noopener noreferrer"
|
||||||
|
@@ -31,6 +31,7 @@ import { ViewMode } from '../../core/shared/view-mode.model';
|
|||||||
import { SelectionConfig } from './search-results/search-results.component';
|
import { SelectionConfig } from './search-results/search-results.component';
|
||||||
import { ListableObject } from '../object-collection/shared/listable-object.model';
|
import { ListableObject } from '../object-collection/shared/listable-object.model';
|
||||||
import { CollectionElementLinkType } from '../object-collection/collection-element-link.type';
|
import { CollectionElementLinkType } from '../object-collection/collection-element-link.type';
|
||||||
|
import { environment } from 'src/environments/environment';
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'ds-search',
|
selector: 'ds-search',
|
||||||
@@ -355,7 +356,8 @@ export class SearchComponent implements OnInit {
|
|||||||
undefined,
|
undefined,
|
||||||
this.useCachedVersionIfAvailable,
|
this.useCachedVersionIfAvailable,
|
||||||
true,
|
true,
|
||||||
followLink<Item>('thumbnail', { isOptional: true })
|
followLink<Item>('thumbnail', { isOptional: true }),
|
||||||
|
followLink<Item>('accessStatus', { isOptional: true, shouldEmbed: environment.item.showAccessStatuses })
|
||||||
).pipe(getFirstCompletedRemoteData())
|
).pipe(getFirstCompletedRemoteData())
|
||||||
.subscribe((results: RemoteData<SearchObjects<DSpaceObject>>) => {
|
.subscribe((results: RemoteData<SearchObjects<DSpaceObject>>) => {
|
||||||
if (results.hasSucceeded && results.payload?.page?.length > 0) {
|
if (results.hasSucceeded && results.payload?.page?.length > 0) {
|
||||||
|
@@ -111,6 +111,7 @@ import { FilterInputSuggestionsComponent } from './input-suggestions/filter-sugg
|
|||||||
import { DsoInputSuggestionsComponent } from './input-suggestions/dso-input-suggestions/dso-input-suggestions.component';
|
import { DsoInputSuggestionsComponent } from './input-suggestions/dso-input-suggestions/dso-input-suggestions.component';
|
||||||
import { ItemGridElementComponent } from './object-grid/item-grid-element/item-types/item/item-grid-element.component';
|
import { ItemGridElementComponent } from './object-grid/item-grid-element/item-types/item/item-grid-element.component';
|
||||||
import { TypeBadgeComponent } from './object-list/type-badge/type-badge.component';
|
import { TypeBadgeComponent } from './object-list/type-badge/type-badge.component';
|
||||||
|
import { AccessStatusBadgeComponent } from './object-list/access-status-badge/access-status-badge.component';
|
||||||
import { MetadataRepresentationLoaderComponent } from './metadata-representation/metadata-representation-loader.component';
|
import { MetadataRepresentationLoaderComponent } from './metadata-representation/metadata-representation-loader.component';
|
||||||
import { MetadataRepresentationDirective } from './metadata-representation/metadata-representation.directive';
|
import { MetadataRepresentationDirective } from './metadata-representation/metadata-representation.directive';
|
||||||
import { ListableObjectComponentLoaderComponent } from './object-collection/shared/listable-object/listable-object-component-loader.component';
|
import { ListableObjectComponentLoaderComponent } from './object-collection/shared/listable-object/listable-object-component-loader.component';
|
||||||
@@ -293,6 +294,7 @@ const COMPONENTS = [
|
|||||||
AbstractTrackableComponent,
|
AbstractTrackableComponent,
|
||||||
ComcolMetadataComponent,
|
ComcolMetadataComponent,
|
||||||
TypeBadgeComponent,
|
TypeBadgeComponent,
|
||||||
|
AccessStatusBadgeComponent,
|
||||||
BrowseByComponent,
|
BrowseByComponent,
|
||||||
AbstractTrackableComponent,
|
AbstractTrackableComponent,
|
||||||
|
|
||||||
|
@@ -1,9 +1,13 @@
|
|||||||
import { of as observableOf } from 'rxjs';
|
import { of as observableOf } from 'rxjs';
|
||||||
|
import { hasValue } from '../empty.util';
|
||||||
|
|
||||||
export class HALEndpointServiceStub {
|
export class HALEndpointServiceStub {
|
||||||
|
|
||||||
constructor(private url: string) {}
|
constructor(private url: string) {}
|
||||||
getEndpoint(path: string) {
|
getEndpoint(path: string, startHref?: string) {
|
||||||
|
if (hasValue(startHref)) {
|
||||||
|
return observableOf(startHref + '/' + path);
|
||||||
|
}
|
||||||
return observableOf(this.url + '/' + path);
|
return observableOf(this.url + '/' + path);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -814,7 +814,9 @@ describe('SectionFormOperationsService test suite', () => {
|
|||||||
required: false,
|
required: false,
|
||||||
metadataKey: 'dc.contributor.author',
|
metadataKey: 'dc.contributor.author',
|
||||||
metadataFields: ['dc.contributor.author'],
|
metadataFields: ['dc.contributor.author'],
|
||||||
hasSelectableMetadata: true
|
hasSelectableMetadata: true,
|
||||||
|
showButtons: true,
|
||||||
|
typeBindRelations: []
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
spyOn(serviceAsAny, 'getFieldPathSegmentedFromChangeEvent').and.returnValue('path');
|
spyOn(serviceAsAny, 'getFieldPathSegmentedFromChangeEvent').and.returnValue('path');
|
||||||
|
@@ -97,7 +97,7 @@ const DECLARATIONS = [
|
|||||||
SectionsService,
|
SectionsService,
|
||||||
SubmissionUploadsConfigService,
|
SubmissionUploadsConfigService,
|
||||||
SubmissionAccessesConfigService,
|
SubmissionAccessesConfigService,
|
||||||
SectionAccessesService
|
SectionAccessesService,
|
||||||
]
|
]
|
||||||
})
|
})
|
||||||
|
|
||||||
|
@@ -27,6 +27,16 @@
|
|||||||
|
|
||||||
"404.page-not-found": "page not found",
|
"404.page-not-found": "page not found",
|
||||||
|
|
||||||
|
"access-status.embargo.listelement.badge": "Embargo",
|
||||||
|
|
||||||
|
"access-status.metadata.only.listelement.badge": "Metadata only",
|
||||||
|
|
||||||
|
"access-status.open.access.listelement.badge": "Open Access",
|
||||||
|
|
||||||
|
"access-status.restricted.listelement.badge": "Restricted",
|
||||||
|
|
||||||
|
"access-status.unknown.listelement.badge": "Unknown",
|
||||||
|
|
||||||
"admin.curation-tasks.breadcrumbs": "System curation tasks",
|
"admin.curation-tasks.breadcrumbs": "System curation tasks",
|
||||||
|
|
||||||
"admin.curation-tasks.title": "System curation tasks",
|
"admin.curation-tasks.title": "System curation tasks",
|
||||||
|
@@ -36,6 +36,21 @@
|
|||||||
// "404.page-not-found": "page not found",
|
// "404.page-not-found": "page not found",
|
||||||
"404.page-not-found": "Page introuvable",
|
"404.page-not-found": "Page introuvable",
|
||||||
|
|
||||||
|
// "access-status.embargo.listelement.badge": "Embargo",
|
||||||
|
"access-status.embargo.listelement.badge": "Restriction temporaire",
|
||||||
|
|
||||||
|
// "access-status.metadata.only.listelement.badge": "Metadata only",
|
||||||
|
"access-status.metadata.only.listelement.badge": "Métadonnées seulement",
|
||||||
|
|
||||||
|
// "access-status.open.access.listelement.badge": "Open Access",
|
||||||
|
"access-status.open.access.listelement.badge": "Accès libre",
|
||||||
|
|
||||||
|
// "access-status.restricted.listelement.badge": "Restricted",
|
||||||
|
"access-status.restricted.listelement.badge": "Restreint",
|
||||||
|
|
||||||
|
// "access-status.unknown.listelement.badge": "Unknown",
|
||||||
|
"access-status.unknown.listelement.badge": "Inconnu",
|
||||||
|
|
||||||
// "admin.curation-tasks.breadcrumbs": "System curation tasks",
|
// "admin.curation-tasks.breadcrumbs": "System curation tasks",
|
||||||
"admin.curation-tasks.breadcrumbs": "Tâches de conservation système",
|
"admin.curation-tasks.breadcrumbs": "Tâches de conservation système",
|
||||||
|
|
||||||
|
@@ -7,7 +7,7 @@ import { INotificationBoardOptions } from './notifications-config.interfaces';
|
|||||||
import { SubmissionConfig } from './submission-config.interface';
|
import { SubmissionConfig } from './submission-config.interface';
|
||||||
import { FormConfig } from './form-config.interfaces';
|
import { FormConfig } from './form-config.interfaces';
|
||||||
import { LangConfig } from './lang-config.interface';
|
import { LangConfig } from './lang-config.interface';
|
||||||
import { ItemPageConfig } from './item-page-config.interface';
|
import { ItemConfig } from './item-config.interface';
|
||||||
import { CollectionPageConfig } from './collection-page-config.interface';
|
import { CollectionPageConfig } from './collection-page-config.interface';
|
||||||
import { ThemeConfig } from './theme.model';
|
import { ThemeConfig } from './theme.model';
|
||||||
import { AuthConfig } from './auth-config.interfaces';
|
import { AuthConfig } from './auth-config.interfaces';
|
||||||
@@ -29,7 +29,7 @@ interface AppConfig extends Config {
|
|||||||
defaultLanguage: string;
|
defaultLanguage: string;
|
||||||
languages: LangConfig[];
|
languages: LangConfig[];
|
||||||
browseBy: BrowseByConfig;
|
browseBy: BrowseByConfig;
|
||||||
item: ItemPageConfig;
|
item: ItemConfig;
|
||||||
collection: CollectionPageConfig;
|
collection: CollectionPageConfig;
|
||||||
themes: ThemeConfig[];
|
themes: ThemeConfig[];
|
||||||
mediaViewer: MediaViewerConfig;
|
mediaViewer: MediaViewerConfig;
|
||||||
|
@@ -6,7 +6,7 @@ import { BrowseByConfig } from './browse-by-config.interface';
|
|||||||
import { CacheConfig } from './cache-config.interface';
|
import { CacheConfig } from './cache-config.interface';
|
||||||
import { CollectionPageConfig } from './collection-page-config.interface';
|
import { CollectionPageConfig } from './collection-page-config.interface';
|
||||||
import { FormConfig } from './form-config.interfaces';
|
import { FormConfig } from './form-config.interfaces';
|
||||||
import { ItemPageConfig } from './item-page-config.interface';
|
import { ItemConfig } from './item-config.interface';
|
||||||
import { LangConfig } from './lang-config.interface';
|
import { LangConfig } from './lang-config.interface';
|
||||||
import { MediaViewerConfig } from './media-viewer-config.interface';
|
import { MediaViewerConfig } from './media-viewer-config.interface';
|
||||||
import { INotificationBoardOptions } from './notifications-config.interfaces';
|
import { INotificationBoardOptions } from './notifications-config.interfaces';
|
||||||
@@ -111,6 +111,9 @@ export class DefaultAppConfig implements AppConfig {
|
|||||||
*/
|
*/
|
||||||
timer: 0
|
timer: 0
|
||||||
},
|
},
|
||||||
|
typeBind: {
|
||||||
|
field: 'dc.type'
|
||||||
|
},
|
||||||
icons: {
|
icons: {
|
||||||
metadata: [
|
metadata: [
|
||||||
/**
|
/**
|
||||||
@@ -198,11 +201,13 @@ export class DefaultAppConfig implements AppConfig {
|
|||||||
defaultLowerLimit: 1900
|
defaultLowerLimit: 1900
|
||||||
};
|
};
|
||||||
|
|
||||||
// Item Page Config
|
// Item Config
|
||||||
item: ItemPageConfig = {
|
item: ItemConfig = {
|
||||||
edit: {
|
edit: {
|
||||||
undoTimeout: 10000 // 10 seconds
|
undoTimeout: 10000 // 10 seconds
|
||||||
}
|
},
|
||||||
|
// Show the item access status label in items lists
|
||||||
|
showAccessStatuses: false
|
||||||
};
|
};
|
||||||
|
|
||||||
// Collection Page Config
|
// Collection Page Config
|
||||||
|
9
src/config/item-config.interface.ts
Normal file
9
src/config/item-config.interface.ts
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
import { Config } from './config.interface';
|
||||||
|
|
||||||
|
export interface ItemConfig extends Config {
|
||||||
|
edit: {
|
||||||
|
undoTimeout: number;
|
||||||
|
};
|
||||||
|
// This is used to show the access status label of items in results lists
|
||||||
|
showAccessStatuses: boolean;
|
||||||
|
}
|
@@ -1,7 +0,0 @@
|
|||||||
import { Config } from './config.interface';
|
|
||||||
|
|
||||||
export interface ItemPageConfig extends Config {
|
|
||||||
edit: {
|
|
||||||
undoTimeout: number;
|
|
||||||
};
|
|
||||||
}
|
|
@@ -5,6 +5,10 @@ interface AutosaveConfig extends Config {
|
|||||||
timer: number;
|
timer: number;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
interface TypeBindConfig extends Config {
|
||||||
|
field: string;
|
||||||
|
}
|
||||||
|
|
||||||
interface IconsConfig extends Config {
|
interface IconsConfig extends Config {
|
||||||
metadata: MetadataIconConfig[];
|
metadata: MetadataIconConfig[];
|
||||||
authority: {
|
authority: {
|
||||||
@@ -24,5 +28,6 @@ export interface ConfidenceIconConfig extends Config {
|
|||||||
|
|
||||||
export interface SubmissionConfig extends Config {
|
export interface SubmissionConfig extends Config {
|
||||||
autosave: AutosaveConfig;
|
autosave: AutosaveConfig;
|
||||||
|
typeBind: TypeBindConfig;
|
||||||
icons: IconsConfig;
|
icons: IconsConfig;
|
||||||
}
|
}
|
||||||
|
@@ -100,6 +100,9 @@ export const environment: BuildConfig = {
|
|||||||
// NOTE: every how many minutes submission is saved automatically
|
// NOTE: every how many minutes submission is saved automatically
|
||||||
timer: 5
|
timer: 5
|
||||||
},
|
},
|
||||||
|
typeBind: {
|
||||||
|
field: 'dc.type'
|
||||||
|
},
|
||||||
icons: {
|
icons: {
|
||||||
metadata: [
|
metadata: [
|
||||||
{
|
{
|
||||||
@@ -196,7 +199,9 @@ export const environment: BuildConfig = {
|
|||||||
item: {
|
item: {
|
||||||
edit: {
|
edit: {
|
||||||
undoTimeout: 10000 // 10 seconds
|
undoTimeout: 10000 // 10 seconds
|
||||||
}
|
},
|
||||||
|
// Show the item access status label in items lists
|
||||||
|
showAccessStatuses: false
|
||||||
},
|
},
|
||||||
collection: {
|
collection: {
|
||||||
edit: {
|
edit: {
|
||||||
|
@@ -108,3 +108,10 @@ ngb-modal-backdrop {
|
|||||||
.ml-gap {
|
.ml-gap {
|
||||||
margin-left: var(--ds-gap);
|
margin-left: var(--ds-gap);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ds-dynamic-form-control-container.d-none {
|
||||||
|
/* Ensures that form-control containers hidden and disabled by type binding collapse and let other fields in
|
||||||
|
the same row expand accordingly
|
||||||
|
*/
|
||||||
|
visibility: collapse;
|
||||||
|
}
|
||||||
|
Reference in New Issue
Block a user