mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
limit the frontend algo select too
This commit is contained in:
parent
dbe58672ed
commit
71fdc2a36d
@ -21,7 +21,7 @@ import {
|
|||||||
CustomFieldDataType,
|
CustomFieldDataType,
|
||||||
DATA_TYPE_LABELS,
|
DATA_TYPE_LABELS,
|
||||||
} from 'src/app/data/custom-field'
|
} 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 { CustomFieldsService } from 'src/app/services/rest/custom-fields.service'
|
||||||
import { UserService } from 'src/app/services/rest/user.service'
|
import { UserService } from 'src/app/services/rest/user.service'
|
||||||
import { SettingsService } from 'src/app/services/settings.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 { TextComponent } from '../../input/text/text.component'
|
||||||
import { EditDialogComponent, EditDialogMode } from '../edit-dialog.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({
|
@Component({
|
||||||
selector: 'pngx-custom-field-edit-dialog',
|
selector: 'pngx-custom-field-edit-dialog',
|
||||||
templateUrl: './custom-field-edit-dialog.component.html',
|
templateUrl: './custom-field-edit-dialog.component.html',
|
||||||
@ -131,4 +152,15 @@ export class CustomFieldEditDialogComponent
|
|||||||
public removeSelectOption(index: number) {
|
public removeSelectOption(index: number) {
|
||||||
this.selectOptions.removeAt(index)
|
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
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user