mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 10:04:11 +00:00
374 lines
13 KiB
TypeScript
374 lines
13 KiB
TypeScript
import { ChangeDetectorRef, Component, Input, OnChanges, ViewChild } from '@angular/core';
|
|
import { FormControl } from '@angular/forms';
|
|
|
|
import {
|
|
DYNAMIC_FORM_CONTROL_TYPE_DATEPICKER,
|
|
DynamicDateControlModel,
|
|
DynamicDatePickerModel,
|
|
DynamicFormArrayGroupModel,
|
|
DynamicFormArrayModel,
|
|
DynamicFormControlEvent,
|
|
DynamicFormControlModel,
|
|
DynamicFormGroupModel,
|
|
DynamicSelectModel
|
|
} from '@ng-dynamic-forms/core';
|
|
|
|
import { WorkspaceitemSectionUploadFileObject } from '../../../../../core/submission/models/workspaceitem-section-upload-file.model';
|
|
import { FormBuilderService } from '../../../../../shared/form/builder/form-builder.service';
|
|
import {
|
|
BITSTREAM_ACCESS_CONDITIONS_FORM_ARRAY_CONFIG,
|
|
BITSTREAM_ACCESS_CONDITIONS_FORM_ARRAY_LAYOUT,
|
|
BITSTREAM_FORM_ACCESS_CONDITION_END_DATE_CONFIG,
|
|
BITSTREAM_FORM_ACCESS_CONDITION_END_DATE_LAYOUT,
|
|
BITSTREAM_FORM_ACCESS_CONDITION_GROUPS_CONFIG,
|
|
BITSTREAM_FORM_ACCESS_CONDITION_GROUPS_LAYOUT,
|
|
BITSTREAM_FORM_ACCESS_CONDITION_START_DATE_CONFIG,
|
|
BITSTREAM_FORM_ACCESS_CONDITION_START_DATE_LAYOUT,
|
|
BITSTREAM_FORM_ACCESS_CONDITION_TYPE_CONFIG,
|
|
BITSTREAM_FORM_ACCESS_CONDITION_TYPE_LAYOUT,
|
|
BITSTREAM_METADATA_FORM_GROUP_CONFIG,
|
|
BITSTREAM_METADATA_FORM_GROUP_LAYOUT
|
|
} from './section-upload-file-edit.model';
|
|
import { POLICY_DEFAULT_WITH_LIST } from '../../section-upload.component';
|
|
import { isNotEmpty, isNotUndefined } from '../../../../../shared/empty.util';
|
|
import { SubmissionFormsModel } from '../../../../../core/config/models/config-submission-forms.model';
|
|
import { FormFieldModel } from '../../../../../shared/form/builder/models/form-field.model';
|
|
import { AccessConditionOption } from '../../../../../core/config/models/config-access-condition-option.model';
|
|
import { SubmissionService } from '../../../../submission.service';
|
|
import { FormService } from '../../../../../shared/form/form.service';
|
|
import { FormComponent } from '../../../../../shared/form/form.component';
|
|
import { Group } from '../../../../../core/eperson/models/group.model';
|
|
|
|
/**
|
|
* This component represents the edit form for bitstream
|
|
*/
|
|
@Component({
|
|
selector: 'ds-submission-section-upload-file-edit',
|
|
templateUrl: './section-upload-file-edit.component.html',
|
|
})
|
|
export class SubmissionSectionUploadFileEditComponent implements OnChanges {
|
|
|
|
/**
|
|
* The list of available access condition
|
|
* @type {Array}
|
|
*/
|
|
@Input() availableAccessConditionOptions: any[];
|
|
|
|
/**
|
|
* The list of available groups for an access condition
|
|
* @type {Array}
|
|
*/
|
|
@Input() availableAccessConditionGroups: Map<string, Group[]>;
|
|
|
|
/**
|
|
* The submission id
|
|
* @type {string}
|
|
*/
|
|
@Input() collectionId: string;
|
|
|
|
/**
|
|
* Define if collection access conditions policy type :
|
|
* POLICY_DEFAULT_NO_LIST : is not possible to define additional access group/s for the single file
|
|
* POLICY_DEFAULT_WITH_LIST : is possible to define additional access group/s for the single file
|
|
* @type {number}
|
|
*/
|
|
@Input() collectionPolicyType: number;
|
|
|
|
/**
|
|
* The configuration for the bitstream's metadata form
|
|
* @type {SubmissionFormsModel}
|
|
*/
|
|
@Input() configMetadataForm: SubmissionFormsModel;
|
|
|
|
/**
|
|
* The bitstream's metadata data
|
|
* @type {WorkspaceitemSectionUploadFileObject}
|
|
*/
|
|
@Input() fileData: WorkspaceitemSectionUploadFileObject;
|
|
|
|
/**
|
|
* The bitstream id
|
|
* @type {string}
|
|
*/
|
|
@Input() fileId: string;
|
|
|
|
/**
|
|
* The bitstream array key
|
|
* @type {string}
|
|
*/
|
|
@Input() fileIndex: string;
|
|
|
|
/**
|
|
* The form id
|
|
* @type {string}
|
|
*/
|
|
@Input() formId: string;
|
|
|
|
/**
|
|
* The section id
|
|
* @type {string}
|
|
*/
|
|
@Input() sectionId: string;
|
|
|
|
/**
|
|
* The submission id
|
|
* @type {string}
|
|
*/
|
|
@Input() submissionId: string;
|
|
|
|
/**
|
|
* The form model
|
|
* @type {DynamicFormControlModel[]}
|
|
*/
|
|
public formModel: DynamicFormControlModel[];
|
|
|
|
/**
|
|
* The FormComponent reference
|
|
*/
|
|
@ViewChild('formRef') public formRef: FormComponent;
|
|
|
|
/**
|
|
* Initialize instance variables
|
|
*
|
|
* @param {ChangeDetectorRef} cdr
|
|
* @param {FormBuilderService} formBuilderService
|
|
* @param {FormService} formService
|
|
* @param {SubmissionService} submissionService
|
|
*/
|
|
constructor(private cdr: ChangeDetectorRef,
|
|
private formBuilderService: FormBuilderService,
|
|
private formService: FormService,
|
|
private submissionService: SubmissionService) {
|
|
}
|
|
|
|
/**
|
|
* Dispatch form model init
|
|
*/
|
|
ngOnChanges() {
|
|
if (this.fileData && this.formId) {
|
|
this.formModel = this.buildFileEditForm();
|
|
this.cdr.detectChanges();
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Initialize form model
|
|
*/
|
|
protected buildFileEditForm() {
|
|
const configDescr: FormFieldModel = Object.assign({}, this.configMetadataForm.rows[0].fields[0]);
|
|
configDescr.repeatable = false;
|
|
const configForm = Object.assign({}, this.configMetadataForm, {
|
|
fields: Object.assign([], this.configMetadataForm.rows[0].fields[0], [
|
|
this.configMetadataForm.rows[0].fields[0],
|
|
configDescr
|
|
])
|
|
});
|
|
const formModel: DynamicFormControlModel[] = [];
|
|
const metadataGroupModelConfig = Object.assign({}, BITSTREAM_METADATA_FORM_GROUP_CONFIG);
|
|
metadataGroupModelConfig.group = this.formBuilderService.modelFromConfiguration(
|
|
configForm,
|
|
this.collectionId,
|
|
this.fileData.metadata,
|
|
undefined,
|
|
this.submissionService.getSubmissionScope()
|
|
);
|
|
formModel.push(new DynamicFormGroupModel(metadataGroupModelConfig, BITSTREAM_METADATA_FORM_GROUP_LAYOUT));
|
|
const accessConditionTypeModelConfig = Object.assign({}, BITSTREAM_FORM_ACCESS_CONDITION_TYPE_CONFIG);
|
|
const accessConditionsArrayConfig = Object.assign({}, BITSTREAM_ACCESS_CONDITIONS_FORM_ARRAY_CONFIG);
|
|
const accessConditionTypeOptions = [];
|
|
|
|
if (this.collectionPolicyType === POLICY_DEFAULT_WITH_LIST) {
|
|
for (const accessCondition of this.availableAccessConditionOptions) {
|
|
accessConditionTypeOptions.push(
|
|
{
|
|
label: accessCondition.name,
|
|
value: accessCondition.name
|
|
}
|
|
);
|
|
}
|
|
accessConditionTypeModelConfig.options = accessConditionTypeOptions;
|
|
|
|
// Dynamically assign of relation in config. For startdate, endDate, groups.
|
|
const hasStart = [];
|
|
const hasEnd = [];
|
|
const hasGroups = [];
|
|
this.availableAccessConditionOptions.forEach((condition) => {
|
|
const showStart: boolean = condition.hasStartDate === true;
|
|
const showEnd: boolean = condition.hasEndDate === true;
|
|
const showGroups: boolean = showStart || showEnd;
|
|
if (showStart) {
|
|
hasStart.push({ id: 'name', value: condition.name });
|
|
}
|
|
if (showEnd) {
|
|
hasEnd.push({ id: 'name', value: condition.name });
|
|
}
|
|
if (showGroups) {
|
|
hasGroups.push({ id: 'name', value: condition.name });
|
|
}
|
|
});
|
|
const confStart = { relation: [{ action: 'ENABLE', connective: 'OR', when: hasStart }] };
|
|
const confEnd = { relation: [{ action: 'ENABLE', connective: 'OR', when: hasEnd }] };
|
|
const confGroup = { relation: [{ action: 'ENABLE', connective: 'OR', when: hasGroups }] };
|
|
|
|
accessConditionsArrayConfig.groupFactory = () => {
|
|
const type = new DynamicSelectModel(accessConditionTypeModelConfig, BITSTREAM_FORM_ACCESS_CONDITION_TYPE_LAYOUT);
|
|
const startDateConfig = Object.assign({}, BITSTREAM_FORM_ACCESS_CONDITION_START_DATE_CONFIG, confStart);
|
|
const endDateConfig = Object.assign({}, BITSTREAM_FORM_ACCESS_CONDITION_END_DATE_CONFIG, confEnd);
|
|
const groupsConfig = Object.assign({}, BITSTREAM_FORM_ACCESS_CONDITION_GROUPS_CONFIG, confGroup);
|
|
|
|
const startDate = new DynamicDatePickerModel(startDateConfig, BITSTREAM_FORM_ACCESS_CONDITION_START_DATE_LAYOUT);
|
|
const endDate = new DynamicDatePickerModel(endDateConfig, BITSTREAM_FORM_ACCESS_CONDITION_END_DATE_LAYOUT);
|
|
const groups = new DynamicSelectModel(groupsConfig, BITSTREAM_FORM_ACCESS_CONDITION_GROUPS_LAYOUT);
|
|
|
|
return [type, startDate, endDate, groups];
|
|
};
|
|
|
|
// Number of access conditions blocks in form
|
|
accessConditionsArrayConfig.initialCount = isNotEmpty(this.fileData.accessConditions) ? this.fileData.accessConditions.length : 1;
|
|
formModel.push(
|
|
new DynamicFormArrayModel(accessConditionsArrayConfig, BITSTREAM_ACCESS_CONDITIONS_FORM_ARRAY_LAYOUT)
|
|
);
|
|
|
|
}
|
|
this.initModelData(formModel);
|
|
return formModel;
|
|
}
|
|
|
|
/**
|
|
* Initialize form model values
|
|
*
|
|
* @param formModel
|
|
* The form model
|
|
*/
|
|
public initModelData(formModel: DynamicFormControlModel[]) {
|
|
this.fileData.accessConditions.forEach((accessCondition, index) => {
|
|
Array.of('name', 'groupUUID', 'startDate', 'endDate')
|
|
.filter((key) => accessCondition.hasOwnProperty(key))
|
|
.forEach((key) => {
|
|
const metadataModel: any = this.formBuilderService.findById(key, formModel, index);
|
|
if (metadataModel) {
|
|
if (key === 'groupUUID' && this.availableAccessConditionGroups.get(accessCondition.name)) {
|
|
this.availableAccessConditionGroups.get(accessCondition.name).forEach((group) => {
|
|
metadataModel.options.push({
|
|
label: group.name,
|
|
value: group.uuid
|
|
})
|
|
});
|
|
}
|
|
if (metadataModel.type === DYNAMIC_FORM_CONTROL_TYPE_DATEPICKER) {
|
|
const date = new Date(accessCondition[key]);
|
|
metadataModel.value = {
|
|
year: date.getFullYear(),
|
|
month: date.getMonth() + 1,
|
|
day: date.getDate()
|
|
}
|
|
} else {
|
|
metadataModel.value = accessCondition[key];
|
|
}
|
|
}
|
|
});
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Dispatch form model update when changing an access condition
|
|
*
|
|
* @param event
|
|
* The event emitted
|
|
*/
|
|
public onChange(event: DynamicFormControlEvent) {
|
|
if (event.model.id === 'name') {
|
|
this.setOptions(event.model, event.control);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Update `startDate`, 'groupUUID' and 'endDate' model
|
|
*
|
|
* @param model
|
|
* The [[DynamicFormControlModel]] object
|
|
* @param control
|
|
* The [[FormControl]] object
|
|
*/
|
|
public setOptions(model: DynamicFormControlModel, control: FormControl) {
|
|
let accessCondition: AccessConditionOption = null;
|
|
this.availableAccessConditionOptions.filter((element) => element.name === control.value)
|
|
.forEach((element) => accessCondition = element);
|
|
if (isNotEmpty(accessCondition)) {
|
|
const showGroups: boolean = accessCondition.hasStartDate === true || accessCondition.hasEndDate === true;
|
|
|
|
const groupControl: FormControl = control.parent.get('groupUUID') as FormControl;
|
|
const startDateControl: FormControl = control.parent.get('startDate') as FormControl;
|
|
const endDateControl: FormControl = control.parent.get('endDate') as FormControl;
|
|
|
|
// Clear previous state
|
|
groupControl.markAsUntouched();
|
|
startDateControl.markAsUntouched();
|
|
endDateControl.markAsUntouched();
|
|
|
|
// Clear previous values
|
|
if (showGroups) {
|
|
groupControl.setValue(null);
|
|
} else {
|
|
groupControl.clearValidators();
|
|
groupControl.setValue(accessCondition.groupUUID);
|
|
}
|
|
startDateControl.setValue(null);
|
|
control.parent.markAsDirty();
|
|
endDateControl.setValue(null);
|
|
|
|
if (showGroups) {
|
|
if (isNotUndefined(accessCondition.groupUUID) || isNotUndefined(accessCondition.selectGroupUUID)) {
|
|
|
|
const groupOptions = [];
|
|
if (isNotUndefined(this.availableAccessConditionGroups.get(accessCondition.name))) {
|
|
const groupModel = this.formBuilderService.findById(
|
|
'groupUUID',
|
|
(model.parent as DynamicFormArrayGroupModel).group) as DynamicSelectModel<any>;
|
|
|
|
this.availableAccessConditionGroups.get(accessCondition.name).forEach((group) => {
|
|
groupOptions.push({
|
|
label: group.name,
|
|
value: group.uuid
|
|
})
|
|
});
|
|
|
|
// Due to a bug can't dynamically change the select options, so replace the model with a new one
|
|
const confGroup = { relation: groupModel.relation };
|
|
const groupsConfig = Object.assign({}, BITSTREAM_FORM_ACCESS_CONDITION_GROUPS_CONFIG, confGroup);
|
|
groupsConfig.options = groupOptions;
|
|
(model.parent as DynamicFormGroupModel).group.pop();
|
|
(model.parent as DynamicFormGroupModel).group.push(new DynamicSelectModel(groupsConfig, BITSTREAM_FORM_ACCESS_CONDITION_GROUPS_LAYOUT));
|
|
}
|
|
|
|
}
|
|
if (accessCondition.hasStartDate) {
|
|
const startDateModel = this.formBuilderService.findById(
|
|
'startDate',
|
|
(model.parent as DynamicFormArrayGroupModel).group) as DynamicDateControlModel;
|
|
|
|
const min = new Date(accessCondition.maxStartDate);
|
|
startDateModel.max = {
|
|
year: min.getFullYear(),
|
|
month: min.getMonth() + 1,
|
|
day: min.getDate()
|
|
};
|
|
}
|
|
if (accessCondition.hasEndDate) {
|
|
const endDateModel = this.formBuilderService.findById(
|
|
'endDate',
|
|
(model.parent as DynamicFormArrayGroupModel).group) as DynamicDateControlModel;
|
|
|
|
const max = new Date(accessCondition.maxEndDate);
|
|
endDateModel.max = {
|
|
year: max.getFullYear(),
|
|
month: max.getMonth() + 1,
|
|
day: max.getDate()
|
|
};
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|