description fixes
This commit is contained in:
parent
a6b1a371a1
commit
02fc5b7bea
|
@ -9,14 +9,7 @@ import { ReloadHelperComponent } from './ui/misc/reload-helper/reload-helper.com
|
||||||
const appRoutes: Routes = [
|
const appRoutes: Routes = [
|
||||||
{
|
{
|
||||||
path: '',
|
path: '',
|
||||||
component: AppComponent,
|
redirectTo:'home',
|
||||||
data: {
|
|
||||||
breadcrumbs: false,
|
|
||||||
title: 'GENERAL.TITLES.GENERAL',
|
|
||||||
...BreadcrumbService.generateRouteDataConfiguration({
|
|
||||||
title: 'BREADCRUMBS.HOME'
|
|
||||||
})
|
|
||||||
},
|
|
||||||
pathMatch: 'full'
|
pathMatch: 'full'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
|
@ -78,7 +78,6 @@ export interface DescriptionPersist extends BaseEntityPersist {
|
||||||
description: string;
|
description: string;
|
||||||
properties: DescriptionPropertyDefinitionPersist;
|
properties: DescriptionPropertyDefinitionPersist;
|
||||||
tags: string[];
|
tags: string[];
|
||||||
references: DescriptionReferencePersist[];
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface DescriptionPropertyDefinitionPersist {
|
export interface DescriptionPropertyDefinitionPersist {
|
||||||
|
|
|
@ -122,11 +122,11 @@ export class ReferenceService {
|
||||||
return {
|
return {
|
||||||
initialItems: (data?: any) => this.searchWithDefinition(this.buildAutocompleteSearchLookup(typeId)).pipe(map(x => x)),
|
initialItems: (data?: any) => this.searchWithDefinition(this.buildAutocompleteSearchLookup(typeId)).pipe(map(x => x)),
|
||||||
filterFn: (searchQuery: string, data?: any) => this.searchWithDefinition(this.buildAutocompleteSearchLookup(typeId, searchQuery)).pipe(map(x => x)),
|
filterFn: (searchQuery: string, data?: any) => this.searchWithDefinition(this.buildAutocompleteSearchLookup(typeId, searchQuery)).pipe(map(x => x)),
|
||||||
getSelectedItem: (selectedItem: any) => this.query(this.buildAutocompleteSearchSelectedItemsLookup([typeId], null, null, null, [selectedItem])).pipe(map(x => x.items[0])),
|
|
||||||
displayFn: (item: Reference) => item.label,
|
displayFn: (item: Reference) => item.label,
|
||||||
subtitleFn: (item: Reference) => item?.sourceType === ReferenceSourceType.External ? this.language.instant('REFERENCE-FIELD-COMPONENT.EXTERNAL-SOURCE') + ': ' + item.source : this.language.instant('REFERENCE-FIELD-COMPONENT.INTERNAL-SOURCE'),
|
subtitleFn: (item: Reference) => item?.sourceType === ReferenceSourceType.External ? this.language.instant('REFERENCE-FIELD-COMPONENT.EXTERNAL-SOURCE') + ': ' + item.source : this.language.instant('REFERENCE-FIELD-COMPONENT.INTERNAL-SOURCE'),
|
||||||
titleFn: (item: Reference) => item.label,
|
titleFn: (item: Reference) => item.label,
|
||||||
valueAssign: (item: Reference) => item,
|
valueAssign: (item: Reference) => item,
|
||||||
|
uniqueAssign: (item: Reference) => item.source + '_' + item.reference,
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -134,7 +134,6 @@ export class ReferenceService {
|
||||||
return {
|
return {
|
||||||
initialItems: (excludedItems: any[], data?: any) => this.searchWithDefinition(this.buildAutocompleteSearchLookup(typeId, null)).pipe(map(x => x)),
|
initialItems: (excludedItems: any[], data?: any) => this.searchWithDefinition(this.buildAutocompleteSearchLookup(typeId, null)).pipe(map(x => x)),
|
||||||
filterFn: (searchQuery: string, excludedItems: any[]) => this.searchWithDefinition(this.buildAutocompleteSearchLookup(typeId, searchQuery)).pipe(map(x => x)),
|
filterFn: (searchQuery: string, excludedItems: any[]) => this.searchWithDefinition(this.buildAutocompleteSearchLookup(typeId, searchQuery)).pipe(map(x => x)),
|
||||||
getSelectedItems: (selectedItems: any[]) => this.query(this.buildAutocompleteSearchSelectedItemsLookup([typeId], null, null, null, selectedItems?.map(x => x.id))).pipe(map(x => x.items)),
|
|
||||||
displayFn: (item: Reference) => item.label,
|
displayFn: (item: Reference) => item.label,
|
||||||
titleFn: (item: Reference) => item.label,
|
titleFn: (item: Reference) => item.label,
|
||||||
subtitleFn: (item: Reference) => item?.sourceType === ReferenceSourceType.External ? this.language.instant('REFERENCE-FIELD-COMPONENT.EXTERNAL-SOURCE') + ': ' + item.source : this.language.instant('REFERENCE-FIELD-COMPONENT.INTERNAL-SOURCE'),
|
subtitleFn: (item: Reference) => item?.sourceType === ReferenceSourceType.External ? this.language.instant('REFERENCE-FIELD-COMPONENT.EXTERNAL-SOURCE') + ': ' + item.source : this.language.instant('REFERENCE-FIELD-COMPONENT.INTERNAL-SOURCE'),
|
||||||
|
|
|
@ -28,7 +28,7 @@ export interface MultipleAutoCompleteConfiguration {
|
||||||
extraData?: any;
|
extraData?: any;
|
||||||
// Callback to intercept value assignment based on item selection
|
// Callback to intercept value assignment based on item selection
|
||||||
valueAssign?: (selectedItem: any) => any;
|
valueAssign?: (selectedItem: any) => any;
|
||||||
// Callback to intercept value assignment based on item selection
|
// Callback to provide equals function betwen the values
|
||||||
uniqueAssign?: (selectedItem: any) => any;
|
uniqueAssign?: (selectedItem: any) => any;
|
||||||
// Property formating template
|
// Property formating template
|
||||||
optionTemplate?: TemplateRef<any>;
|
optionTemplate?: TemplateRef<any>;
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
}" />
|
}" />
|
||||||
<span *ngIf="!_selectedValueTemplate(selectedItem)" class="chip-text" [title]="_displayFn(selectedItem)">{{_displayFn(selectedItem)}}</span>
|
<span *ngIf="!_selectedValueTemplate(selectedItem)" class="chip-text" [title]="_displayFn(selectedItem)">{{_displayFn(selectedItem)}}</span>
|
||||||
</ng-container>
|
</ng-container>
|
||||||
<button matChipRemove *ngIf="!disabled && removable" (click)="_removeSelectedItem(_selectedItems.get(stringify(value)), $event)">
|
<button matChipRemove *ngIf="!disabled && removable" (click)="_removeSelectedItem(getSelectedItem(value), $event)">
|
||||||
<mat-icon>cancel</mat-icon>
|
<mat-icon>cancel</mat-icon>
|
||||||
</button>
|
</button>
|
||||||
</mat-chip-row>
|
</mat-chip-row>
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import { FocusMonitor } from '@angular/cdk/a11y';
|
import { FocusMonitor } from '@angular/cdk/a11y';
|
||||||
import { BACKSPACE, ENTER } from '@angular/cdk/keycodes';
|
import { ENTER } from '@angular/cdk/keycodes';
|
||||||
import {
|
import {
|
||||||
Component,
|
Component,
|
||||||
DoCheck,
|
DoCheck,
|
||||||
|
@ -27,9 +27,8 @@ import {
|
||||||
MultipleAutoCompleteConfiguration
|
MultipleAutoCompleteConfiguration
|
||||||
} from '@app/library/auto-complete/multiple/multiple-auto-complete-configuration';
|
} from '@app/library/auto-complete/multiple/multiple-auto-complete-configuration';
|
||||||
import { BaseComponent } from '@common/base/base.component';
|
import { BaseComponent } from '@common/base/base.component';
|
||||||
import { isNullOrUndefined } from '@swimlane/ngx-datatable';
|
import { BehaviorSubject, Observable, Subject, interval, of as observableOf, of } from 'rxjs';
|
||||||
import { BehaviorSubject, Observable, Subject, Subscription, combineLatest, interval, of as observableOf, of } from 'rxjs';
|
import { catchError, debounceTime, delayWhen, distinctUntilChanged, map, mergeMap, startWith, switchMap, take, takeUntil } from 'rxjs/operators';
|
||||||
import { catchError, debounceTime, delayWhen, distinctUntilChanged, map, mergeMap, startWith, switchMap, take, takeUntil, tap } from 'rxjs/operators';
|
|
||||||
|
|
||||||
export class CustomComponentBase extends BaseComponent {
|
export class CustomComponentBase extends BaseComponent {
|
||||||
constructor(
|
constructor(
|
||||||
|
|
|
@ -27,6 +27,8 @@ export interface SingleAutoCompleteConfiguration {
|
||||||
extraData?: any;
|
extraData?: any;
|
||||||
// Callback to intercept value assignment based on item selection
|
// Callback to intercept value assignment based on item selection
|
||||||
valueAssign?: (selectedItem: any) => any;
|
valueAssign?: (selectedItem: any) => any;
|
||||||
|
// Callback to provide equals function betwen the values
|
||||||
|
uniqueAssign?: (selectedItem: any) => any;
|
||||||
// Property formating template
|
// Property formating template
|
||||||
optionTemplate?: TemplateRef<any>;
|
optionTemplate?: TemplateRef<any>;
|
||||||
// Selected value formating template
|
// Selected value formating template
|
||||||
|
@ -38,4 +40,5 @@ export interface SingleAutoCompleteConfiguration {
|
||||||
// forceFocus?: boolean;
|
// forceFocus?: boolean;
|
||||||
|
|
||||||
autoSelectFirstOptionOnBlur?: boolean;
|
autoSelectFirstOptionOnBlur?: boolean;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -136,7 +136,7 @@ export class SingleAutoCompleteComponent extends _CustomComponentMixinBase imple
|
||||||
|
|
||||||
ngOnChanges(changes: SimpleChanges) {
|
ngOnChanges(changes: SimpleChanges) {
|
||||||
if (changes['initialSelectedData'] && changes['initialSelectedData'].currentValue && changes['initialSelectedData'].isFirstChange && this.configuration != null) {
|
if (changes['initialSelectedData'] && changes['initialSelectedData'].currentValue && changes['initialSelectedData'].isFirstChange && this.configuration != null) {
|
||||||
this._selectedItems.set(JSON.stringify(this.configuration.valueAssign != null ? this.configuration.valueAssign(this.initialSelectedData) : this.initialSelectedData), this.initialSelectedData);
|
this._selectedItems.set(this.selectedItemKey(this.initialSelectedData), this.initialSelectedData);
|
||||||
this.inputValue = this._displayFn(this.initialSelectedData);
|
this.inputValue = this._displayFn(this.initialSelectedData);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -150,16 +150,16 @@ export class SingleAutoCompleteComponent extends _CustomComponentMixinBase imple
|
||||||
}
|
}
|
||||||
|
|
||||||
getSelectedItems(value: any) {
|
getSelectedItems(value: any) {
|
||||||
if (value != null && !this._selectedItems.has(JSON.stringify(value)) && this.configuration) {
|
if (value != null && !this._selectedItems.has(this.selectedItemKey(value)) && this.configuration) {
|
||||||
if (this.configuration.getSelectedItem != null) {
|
if (this.configuration.getSelectedItem != null) {
|
||||||
this.configuration.getSelectedItem(value).pipe(takeUntil(this._destroyed)).subscribe(x => {
|
this.configuration.getSelectedItem(value).pipe(takeUntil(this._destroyed)).subscribe(x => {
|
||||||
if (x != null) {
|
if (x != null) {
|
||||||
this._selectedItems.set(JSON.stringify(this.configuration.valueAssign != null ? this.configuration.valueAssign(x) : x), x);
|
this._selectedItems.set(this.selectedItemKey(x), x);
|
||||||
this.inputValue = this._displayFn(x);
|
this.inputValue = this._displayFn(x);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
this._selectedItems.set(JSON.stringify(this.configuration.valueAssign != null ? this.configuration.valueAssign(value) : value), value);
|
this._selectedItems.set(this.selectedItemKey(value), value);
|
||||||
this.inputValue = this._displayFn(value);
|
this.inputValue = this._displayFn(value);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -204,7 +204,7 @@ export class SingleAutoCompleteComponent extends _CustomComponentMixinBase imple
|
||||||
const newValue = this._valueToAssign(item);
|
const newValue = this._valueToAssign(item);
|
||||||
|
|
||||||
//Update selected items
|
//Update selected items
|
||||||
this._selectedItems.set(JSON.stringify(newValue), item);
|
this._selectedItems.set(JSON.stringify(this.configuration.uniqueAssign != null ? this.configuration.uniqueAssign(newValue) : newValue), item);
|
||||||
|
|
||||||
this._setValue(newValue);
|
this._setValue(newValue);
|
||||||
|
|
||||||
|
@ -244,7 +244,7 @@ export class SingleAutoCompleteComponent extends _CustomComponentMixinBase imple
|
||||||
public onBlur($event: MouseEvent) {
|
public onBlur($event: MouseEvent) {
|
||||||
if (this.value != null) {
|
if (this.value != null) {
|
||||||
const inputLabel = this.inputValue;
|
const inputLabel = this.inputValue;
|
||||||
const selectedLabel = this._displayFn(this._selectedItems.get(JSON.stringify(this.value)));
|
const selectedLabel = this._displayFn(this._selectedItems.get(this.selectedItemKey(this.value)));
|
||||||
if (inputLabel && selectedLabel !== inputLabel) {
|
if (inputLabel && selectedLabel !== inputLabel) {
|
||||||
this.inputValue = selectedLabel;
|
this.inputValue = selectedLabel;
|
||||||
}
|
}
|
||||||
|
@ -343,6 +343,12 @@ export class SingleAutoCompleteComponent extends _CustomComponentMixinBase imple
|
||||||
return this.configuration.popupItemActionIcon != null ? this.configuration.popupItemActionIcon : '';
|
return this.configuration.popupItemActionIcon != null ? this.configuration.popupItemActionIcon : '';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private selectedItemKey(item: any) {
|
||||||
|
return JSON.stringify(
|
||||||
|
this.configuration.uniqueAssign != null ? this.configuration.uniqueAssign(item) :
|
||||||
|
this.configuration.valueAssign != null ? this.configuration.valueAssign(item) : item
|
||||||
|
)
|
||||||
|
}
|
||||||
// get forceFocus(): boolean {
|
// get forceFocus(): boolean {
|
||||||
// return this.configuration.forceFocus != null ? this.configuration.forceFocus : false;
|
// return this.configuration.forceFocus != null ? this.configuration.forceFocus : false;
|
||||||
// }
|
// }
|
||||||
|
|
|
@ -31,17 +31,15 @@ export class LoginComponent extends BaseComponent implements OnInit {
|
||||||
ngOnInit(): void {
|
ngOnInit(): void {
|
||||||
this.returnUrl = this.route.snapshot.queryParamMap.get('returnUrl') || '/';
|
this.returnUrl = this.route.snapshot.queryParamMap.get('returnUrl') || '/';
|
||||||
if (!this.keycloakService.isLoggedIn()) {
|
if (!this.keycloakService.isLoggedIn()) {
|
||||||
this.authService.authenticate('/');
|
this.authService.authenticate(this.returnUrl);
|
||||||
} else {
|
} else {
|
||||||
|
if (!this.authService.selectedTenant()) {
|
||||||
|
this.authService.selectedTenant('default');
|
||||||
|
}
|
||||||
this.authService.prepareAuthRequest(from(this.keycloakService.getToken())).pipe(takeUntil(this._destroyed)).subscribe(
|
this.authService.prepareAuthRequest(from(this.keycloakService.getToken())).pipe(takeUntil(this._destroyed)).subscribe(
|
||||||
() => {
|
() => {
|
||||||
let returnUrL = this.returnUrl;
|
let returnUrL = this.returnUrl;
|
||||||
let queryParams: Params = {};
|
let queryParams: Params = {};
|
||||||
if (!this.authService.selectedTenant()) {
|
|
||||||
this.authService.selectedTenant('default');
|
|
||||||
// returnUrL = '/login/post';
|
|
||||||
// queryParams.returnUrl = this.returnUrl;
|
|
||||||
}
|
|
||||||
this.zone.run(() => this.router.navigate([returnUrL], { queryParams }));
|
this.zone.run(() => this.router.navigate([returnUrL], { queryParams }));
|
||||||
},
|
},
|
||||||
(error) => this.authService.authenticate('/'));
|
(error) => this.authService.authenticate('/'));
|
||||||
|
|
|
@ -19,7 +19,6 @@ export class DescriptionEditorModel extends BaseEditorModel implements Descripti
|
||||||
description: string;
|
description: string;
|
||||||
properties: DescriptionPropertyDefinitionEditorModel = new DescriptionPropertyDefinitionEditorModel(this.validationErrorModel);
|
properties: DescriptionPropertyDefinitionEditorModel = new DescriptionPropertyDefinitionEditorModel(this.validationErrorModel);
|
||||||
tags: string[] = [];
|
tags: string[] = [];
|
||||||
references: DescriptionReferenceEditorModel[];
|
|
||||||
permissions: string[];
|
permissions: string[];
|
||||||
|
|
||||||
public validationErrorModel: ValidationErrorModel = new ValidationErrorModel();
|
public validationErrorModel: ValidationErrorModel = new ValidationErrorModel();
|
||||||
|
@ -38,7 +37,6 @@ export class DescriptionEditorModel extends BaseEditorModel implements Descripti
|
||||||
this.description = item.description;
|
this.description = item.description;
|
||||||
this.tags = item.descriptionTags?.map(x => x.tag?.label);
|
this.tags = item.descriptionTags?.map(x => x.tag?.label);
|
||||||
this.properties = new DescriptionPropertyDefinitionEditorModel(this.validationErrorModel).fromModel(item.properties, descriptionTemplate, item.descriptionReferences);
|
this.properties = new DescriptionPropertyDefinitionEditorModel(this.validationErrorModel).fromModel(item.properties, descriptionTemplate, item.descriptionReferences);
|
||||||
//if (item.references) { item.references.map(x => this.references.push(new DescriptionReferenceEditorModel().fromModel(x))); }
|
|
||||||
}
|
}
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
@ -430,34 +428,30 @@ export class DescriptionFieldEditorModel implements DescriptionFieldPersist {
|
||||||
this.textListValue = item.textListValue;
|
this.textListValue = item.textListValue;
|
||||||
this.dateValue = item.dateValue;
|
this.dateValue = item.dateValue;
|
||||||
|
|
||||||
this.reference = descriptionReferences?.filter(x => descriptionTemplateField.data.multipleSelect == false && x.data?.fieldId == descriptionTemplateField?.id && x.isActive == IsActive.Active).map(x => {
|
const references = descriptionReferences?.filter(x => x.data?.fieldId == descriptionTemplateField?.id && x.isActive == IsActive.Active).map(x => {
|
||||||
return {
|
return {
|
||||||
id: x.reference.id,
|
id: x.reference.id,
|
||||||
label: x.reference.label,
|
label: x.reference.label,
|
||||||
reference: x.reference.reference,
|
reference: x.reference.reference,
|
||||||
source: x.reference.source,
|
source: x.reference.source,
|
||||||
typeId: x.reference.type.id,
|
typeId: x.reference.type.id,
|
||||||
description: x.reference.source,
|
description: x.reference.source,
|
||||||
definition: x.reference.definition,
|
definition: x.reference.definition,
|
||||||
abbreviation: x.reference.abbreviation,
|
abbreviation: x.reference.abbreviation,
|
||||||
sourceType: x.reference.sourceType
|
sourceType: x.reference.sourceType
|
||||||
}
|
}
|
||||||
})[0];
|
});
|
||||||
|
if (descriptionTemplateField.data.multipleSelect == true) {
|
||||||
|
this.references = references;
|
||||||
|
} else {
|
||||||
|
if (references?.length == 1) this.reference = references[0];
|
||||||
|
if (references?.length > 1) {
|
||||||
|
console.error("multiple references on single reference field: " + references);
|
||||||
|
this.reference = references[0];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
this.references = descriptionReferences?.filter(x => x.data?.fieldId == descriptionTemplateField?.id && x.isActive == IsActive.Active).map(x => {
|
|
||||||
return {
|
|
||||||
id: x.reference.id,
|
|
||||||
label: x.reference.label,
|
|
||||||
reference: x.reference.reference,
|
|
||||||
source: x.reference.source,
|
|
||||||
typeId: x.reference.type.id,
|
|
||||||
description: x.reference.source,
|
|
||||||
definition: x.reference.definition,
|
|
||||||
abbreviation: x.reference.abbreviation,
|
|
||||||
sourceType: x.reference.sourceType
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
this.externalIdentifier = new DescriptionExternalIdentifierEditorModel(this.validationErrorModel).fromModel(item.externalIdentifier);
|
this.externalIdentifier = new DescriptionExternalIdentifierEditorModel(this.validationErrorModel).fromModel(item.externalIdentifier);
|
||||||
}
|
}
|
||||||
return this;
|
return this;
|
||||||
|
|
|
@ -6,7 +6,6 @@ import { MatDialog } from "@angular/material/dialog";
|
||||||
import { DescriptionTemplateFieldType } from '@app/core/common/enum/description-template-field-type';
|
import { DescriptionTemplateFieldType } from '@app/core/common/enum/description-template-field-type';
|
||||||
import { DescriptionTemplateFieldValidationType } from '@app/core/common/enum/description-template-field-validation-type';
|
import { DescriptionTemplateFieldValidationType } from '@app/core/common/enum/description-template-field-validation-type';
|
||||||
import { DescriptionTemplateField, DescriptionTemplateFieldSet, DescriptionTemplateLabelAndMultiplicityData, DescriptionTemplateUploadData } from '@app/core/model/description-template/description-template';
|
import { DescriptionTemplateField, DescriptionTemplateFieldSet, DescriptionTemplateLabelAndMultiplicityData, DescriptionTemplateUploadData } from '@app/core/model/description-template/description-template';
|
||||||
import { FetcherReference } from '@app/core/model/reference/reference';
|
|
||||||
import { DmpService } from '@app/core/services/dmp/dmp.service';
|
import { DmpService } from '@app/core/services/dmp/dmp.service';
|
||||||
import { SnackBarNotificationLevel, UiNotificationService } from "@app/core/services/notification/ui-notification-service";
|
import { SnackBarNotificationLevel, UiNotificationService } from "@app/core/services/notification/ui-notification-service";
|
||||||
import { ReferenceService } from '@app/core/services/reference/reference.service';
|
import { ReferenceService } from '@app/core/services/reference/reference.service';
|
||||||
|
@ -33,17 +32,10 @@ export class DescriptionFormFieldComponent extends BaseComponent implements OnIn
|
||||||
@Input() visibilityRulesService: VisibilityRulesService;
|
@Input() visibilityRulesService: VisibilityRulesService;
|
||||||
isRequired: boolean = false;
|
isRequired: boolean = false;
|
||||||
|
|
||||||
|
|
||||||
// @Input() field: Field;
|
|
||||||
// @Input() form: UntypedFormGroup;
|
|
||||||
@Input() datasetProfileId: any;
|
@Input() datasetProfileId: any;
|
||||||
@Input() isChild: Boolean = false;
|
@Input() isChild: Boolean = false;
|
||||||
|
|
||||||
visible: boolean = true;
|
visible: boolean = true;
|
||||||
|
|
||||||
// change: Subscription;
|
|
||||||
// trackByFn = (index, item) => item ? item['id'] : null;
|
|
||||||
|
|
||||||
descriptionTemplateFieldTypeEnum = DescriptionTemplateFieldType;
|
descriptionTemplateFieldTypeEnum = DescriptionTemplateFieldType;
|
||||||
|
|
||||||
|
|
||||||
|
@ -57,8 +49,6 @@ export class DescriptionFormFieldComponent extends BaseComponent implements OnIn
|
||||||
|
|
||||||
readonly separatorKeysCodes: number[] = [ENTER, COMMA];
|
readonly separatorKeysCodes: number[] = [ENTER, COMMA];
|
||||||
|
|
||||||
// tags: ExternalTagEditorModel[] = [];
|
|
||||||
|
|
||||||
datasetIdInitialized: boolean = false;
|
datasetIdInitialized: boolean = false;
|
||||||
|
|
||||||
validationIcon;
|
validationIcon;
|
||||||
|
@ -97,49 +87,8 @@ export class DescriptionFormFieldComponent extends BaseComponent implements OnIn
|
||||||
|
|
||||||
ngOnInit() {
|
ngOnInit() {
|
||||||
|
|
||||||
// this.visibilityRulesService.getElementVisibilityMapObservable().pipe(takeUntil(this._destroyed)).subscribe(x => {
|
|
||||||
// // console.log('getElementVisibilityMapObservable form field set');
|
|
||||||
|
|
||||||
// if (x[this.field.id]) {
|
|
||||||
// this.visible = x[this.field.id];
|
|
||||||
// } else {
|
|
||||||
// this.visible = true;
|
|
||||||
// }
|
|
||||||
// });
|
|
||||||
|
|
||||||
//TODO: validate that this logic is correct. Validation contenxt path might need to be fixed.
|
|
||||||
// if (this.propertiesFormGroup.get(this.field.id).get('value') == null) {
|
|
||||||
// const item: DescriptionFieldEditorModel = new DescriptionFieldEditorModel();
|
|
||||||
// item.key = this.field.id;
|
|
||||||
// this.propertiesFormGroup.addControl(this.field.id, item.buildForm());
|
|
||||||
// }
|
|
||||||
|
|
||||||
// if (this.propertiesFormGroup.get(this.field.id).get('value').value) {
|
|
||||||
// this.visibilityRulesService.updateValueAndVisibility(this.field?.id, this.propertiesFormGroup.get(this.field.id).get('value').value);
|
|
||||||
// }
|
|
||||||
|
|
||||||
this.isRequired = this.field.validations?.includes(DescriptionTemplateFieldValidationType.Required);
|
this.isRequired = this.field.validations?.includes(DescriptionTemplateFieldValidationType.Required);
|
||||||
|
|
||||||
//TODO: refactor
|
|
||||||
// if (this.field?.data?.fieldType === DescriptionTemplateFieldType.SELECT) {
|
|
||||||
// if ((this.field.data as DescriptionTemplateSelectData).multipleSelect) {
|
|
||||||
// const originalValue = <string>this.propertiesFormGroup.get(this.field.id).get('value').value;
|
|
||||||
// if (originalValue !== null && typeof originalValue === 'string') {
|
|
||||||
// let values = (<string>this.propertiesFormGroup.get(this.field.id).get('value').value).slice(1, -1).split(', ').filter((value) => !value.includes('"'));
|
|
||||||
// let specialValue = (<string>this.propertiesFormGroup.get(this.field.id).get('value').value).split('"').filter((value) => !value.startsWith('[') && !value.endsWith(']') && !values.includes(value) && value !== ', ');
|
|
||||||
// specialValue.forEach(value => values.push(value));
|
|
||||||
// if (!originalValue.startsWith('[') && !originalValue.endsWith(']')) {
|
|
||||||
// values = undefined;
|
|
||||||
// values = [originalValue];
|
|
||||||
// }
|
|
||||||
// this.propertiesFormGroup.get(this.field.id).get('value').patchValue(values);
|
|
||||||
// values.forEach(element => {
|
|
||||||
// this.visibilityRulesService.updateValueAndVisibility(this.field?.id, element);
|
|
||||||
// });
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
|
|
||||||
switch (this.field?.data?.fieldType) {
|
switch (this.field?.data?.fieldType) {
|
||||||
case DescriptionTemplateFieldType.EXTERNAL_DATASETS:
|
case DescriptionTemplateFieldType.EXTERNAL_DATASETS:
|
||||||
//TODO: refactor
|
//TODO: refactor
|
||||||
|
@ -214,61 +163,6 @@ export class DescriptionFormFieldComponent extends BaseComponent implements OnIn
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
// _optionRemove(event) {
|
|
||||||
// const array = JSON.parse(this.propertiesFormGroup.get(this.field.id).get('value').value);
|
|
||||||
// if (array) {
|
|
||||||
// const index = array.map(x => x.id).indexOf(event.id);
|
|
||||||
// if (index >= 0) {
|
|
||||||
// array.splice(index, 1);
|
|
||||||
// }
|
|
||||||
// this.propertiesFormGroup.get(this.field.id).get('value').patchValue(JSON.stringify(array));
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
|
|
||||||
searchFromAutocomplete(query: string) {
|
|
||||||
|
|
||||||
//TODO refactor
|
|
||||||
return null;
|
|
||||||
// if (this.autocompleteOptions) {
|
|
||||||
// const autocompleteRequestItem: RequestItem<DatasetExternalAutocompleteOptionsCriteria> = new RequestItem();
|
|
||||||
// autocompleteRequestItem.criteria = new DatasetExternalAutocompleteOptionsCriteria();
|
|
||||||
// //TODO: refactor this
|
|
||||||
// //autocompleteRequestItem.criteria.sources = this.autocompleteOptions;
|
|
||||||
// // autocompleteRequestItem.criteria.like = query;
|
|
||||||
// // return this.datasetExternalAutocompleteService.queryApi(autocompleteRequestItem);
|
|
||||||
// return null;
|
|
||||||
// }
|
|
||||||
// else {
|
|
||||||
// const autocompleteRequestItem: RequestItem<DatasetExternalAutocompleteCriteria> = new RequestItem();
|
|
||||||
// autocompleteRequestItem.criteria = new DatasetExternalAutocompleteCriteria();
|
|
||||||
// let parseIdArray: string[] = this.field?.id.split('_');
|
|
||||||
// if (parseIdArray.length > 1) {
|
|
||||||
// autocompleteRequestItem.criteria.fieldID = parseIdArray[parseIdArray.length - 1];
|
|
||||||
// } else {
|
|
||||||
// autocompleteRequestItem.criteria.fieldID = this.field?.id;
|
|
||||||
// }
|
|
||||||
// if (typeof this.datasetProfileId === 'string') {
|
|
||||||
// autocompleteRequestItem.criteria.profileID = this.datasetProfileId;
|
|
||||||
// }
|
|
||||||
// else if (this.datasetProfileId != null) {
|
|
||||||
// autocompleteRequestItem.criteria.profileID = this.datasetProfileId.id;
|
|
||||||
// }
|
|
||||||
// autocompleteRequestItem.criteria.like = query;
|
|
||||||
// //TODO: refactor this
|
|
||||||
// // return this.datasetExternalAutocompleteService.queryAutocomplete(autocompleteRequestItem);
|
|
||||||
// return null;
|
|
||||||
// }
|
|
||||||
}
|
|
||||||
|
|
||||||
searchResearchers(query: string) {
|
|
||||||
//TODO refactor
|
|
||||||
return null;
|
|
||||||
// const reasearcherAutocompleteRequestItem: RequestItem<ResearcherCriteria> = new RequestItem();
|
|
||||||
// reasearcherAutocompleteRequestItem.criteria = new ResearcherCriteria;
|
|
||||||
// reasearcherAutocompleteRequestItem.criteria.name = query;
|
|
||||||
// return this.externalSourcesService.searchDMPResearchers(reasearcherAutocompleteRequestItem);
|
|
||||||
}
|
|
||||||
|
|
||||||
searchDatasets(query: string) {
|
searchDatasets(query: string) {
|
||||||
//TODO refactor
|
//TODO refactor
|
||||||
return null;
|
return null;
|
||||||
|
@ -314,36 +208,6 @@ export class DescriptionFormFieldComponent extends BaseComponent implements OnIn
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
searchDatasetExternalRegistries(query: string): Observable<FetcherReference[]> {
|
|
||||||
//TODO refactor
|
|
||||||
return null;
|
|
||||||
// const requestItem: RequestItem<RegistryCriteria> = new RequestItem();
|
|
||||||
// requestItem.criteria = new RegistryCriteria();
|
|
||||||
// requestItem.criteria.like = query;
|
|
||||||
// requestItem.criteria.type = '';
|
|
||||||
// return this.externalSourcesService.listExternal(ReferenceType.Registries, requestItem.criteria.like, requestItem.criteria.type);
|
|
||||||
}
|
|
||||||
|
|
||||||
searchDatasetExternalServices(query: string): Observable<FetcherReference[]> {
|
|
||||||
//TODO refactor
|
|
||||||
return null;
|
|
||||||
// const requestItem: RequestItem<ServiceCriteria> = new RequestItem();
|
|
||||||
// requestItem.criteria = new ServiceCriteria();
|
|
||||||
// requestItem.criteria.like = query;
|
|
||||||
// requestItem.criteria.type = '';
|
|
||||||
// return this.externalSourcesService.listExternal(ReferenceType.Services, requestItem.criteria.like, requestItem.criteria.type);
|
|
||||||
}
|
|
||||||
|
|
||||||
searchDatasetTags(query: string): Observable<any[]> {
|
|
||||||
//TODO refactor
|
|
||||||
return null;
|
|
||||||
// const requestItem: RequestItem<TagCriteria> = new RequestItem();
|
|
||||||
// requestItem.criteria = new TagCriteria();
|
|
||||||
// requestItem.criteria.like = query;
|
|
||||||
// requestItem.criteria.type = '';
|
|
||||||
// return this.externalSourcesService.searchDatasetTags(requestItem);
|
|
||||||
}
|
|
||||||
|
|
||||||
parseTags() {
|
parseTags() {
|
||||||
try {
|
try {
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue