From 71fdc2a36daab9db8188948a6d894f38b8959b7a Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Thu, 20 Mar 2025 23:17:38 -0700 Subject: [PATCH] limit the frontend algo select too --- .../custom-field-edit-dialog.component.ts | 34 ++++++++++++++++++- 1 file changed, 33 insertions(+), 1 deletion(-) diff --git a/src-ui/src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.ts b/src-ui/src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.ts index fada6c53e..ace0db2e3 100644 --- a/src-ui/src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.ts +++ b/src-ui/src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.ts @@ -21,7 +21,7 @@ import { CustomFieldDataType, DATA_TYPE_LABELS, } from 'src/app/data/custom-field' -import { MATCH_NONE } from 'src/app/data/matching-model' +import { MATCH_NONE, MATCHING_ALGORITHMS } from 'src/app/data/matching-model' import { CustomFieldsService } from 'src/app/services/rest/custom-fields.service' import { UserService } from 'src/app/services/rest/user.service' import { SettingsService } from 'src/app/services/settings.service' @@ -29,6 +29,27 @@ import { SelectComponent } from '../../input/select/select.component' import { TextComponent } from '../../input/text/text.component' import { EditDialogComponent, EditDialogMode } from '../edit-dialog.component' +const FIELDS_WITH_DISCRETE_MATCHING = [ + CustomFieldDataType.Boolean, + CustomFieldDataType.Select, +] + +const MATCHING_ALGORITHMS_FOR_ALL_FIELDS = [ + // MATCH_NONE + MATCHING_ALGORITHMS[6], + // MATCH_REGEX + MATCHING_ALGORITHMS[4], +] + +const MATCHING_ALGORITHMS_FOR_DISCRETE_FIELDS = [ + // MATCH_NONE + MATCHING_ALGORITHMS[6], + // MATCH_AUTO + MATCHING_ALGORITHMS[0], + // MATCH_REGEX + MATCHING_ALGORITHMS[4], +] + @Component({ selector: 'pngx-custom-field-edit-dialog', templateUrl: './custom-field-edit-dialog.component.html', @@ -131,4 +152,15 @@ export class CustomFieldEditDialogComponent public removeSelectOption(index: number) { this.selectOptions.removeAt(index) } + + public getMatchingAlgorithms() { + if ( + FIELDS_WITH_DISCRETE_MATCHING.includes(this.getForm().value.data_type) || + FIELDS_WITH_DISCRETE_MATCHING.includes(this.object?.data_type) + ) { + return MATCHING_ALGORITHMS_FOR_DISCRETE_FIELDS + } else { + return MATCHING_ALGORITHMS_FOR_ALL_FIELDS + } + } }