X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/92b4ae921e7393c504d846c6476766aec57da313..95bba613751af0c9371e15dc8d2d1612079a6fe5:/src/views-components/resource-properties-form/property-value-field.tsx diff --git a/src/views-components/resource-properties-form/property-value-field.tsx b/src/views-components/resource-properties-form/property-value-field.tsx index 9ce9d521..b8e525bf 100644 --- a/src/views-components/resource-properties-form/property-value-field.tsx +++ b/src/views-components/resource-properties-form/property-value-field.tsx @@ -2,15 +2,23 @@ // // SPDX-License-Identifier: AGPL-3.0 -import * as React from 'react'; -import { WrappedFieldProps, Field, formValues, FormName } from 'redux-form'; +import React from 'react'; +import { WrappedFieldProps, Field, formValues, FormName, WrappedFieldInputProps, WrappedFieldMetaProps, change } from 'redux-form'; import { compose } from 'redux'; -import { Autocomplete } from '~/components/autocomplete/autocomplete'; -import { Vocabulary, isStrictTag, getTagValues, getTagValueID } from '~/models/vocabulary'; -import { PROPERTY_KEY_FIELD_ID, PROPERTY_KEY_FIELD_NAME } from '~/views-components/resource-properties-form/property-key-field'; -import { handleSelect, handleBlur, VocabularyProp, ValidationProp, connectVocabulary, buildProps, handleChange } from '~/views-components/resource-properties-form/property-field-common'; -import { TAG_VALUE_VALIDATION } from '~/validators/validators'; -import { escapeRegExp } from '~/common/regexp.ts'; +import { Autocomplete } from 'components/autocomplete/autocomplete'; +import { Vocabulary, isStrictTag, getTagValues, getTagValueID, getTagValueLabel, PropFieldSuggestion, getPreferredTagValues } from 'models/vocabulary'; +import { PROPERTY_KEY_FIELD_ID, PROPERTY_KEY_FIELD_NAME } from 'views-components/resource-properties-form/property-key-field'; +import { + handleSelect, + handleBlur, + VocabularyProp, + ValidationProp, + connectVocabulary, + buildProps +} from 'views-components/resource-properties-form/property-field-common'; +import { TAG_VALUE_VALIDATION } from 'validators/validators'; +import { escapeRegExp } from 'common/regexp'; +import { ChangeEvent } from 'react'; interface PropertyKeyProp { propertyKeyId: string; @@ -48,13 +56,29 @@ export const PropertyValueField = connectVocabularyAndPropertyKey( const PropertyValueInput = ({ vocabulary, propertyKeyId, propertyKeyName, ...props }: WrappedFieldProps & PropertyValueFieldProps) => ( s.synonyms && s.synonyms.length > 0 + ? `${s.label} (${s.synonyms.join('; ')})` + : s.label + } onSelect={handleSelect(PROPERTY_VALUE_FIELD_ID, data.form, props.input, props.meta)} - onBlur={handleBlur(PROPERTY_VALUE_FIELD_ID, data.form, props.meta, props.input, getTagValueID(propertyKeyId, props.input.value, vocabulary))} - onChange={handleChange(PROPERTY_VALUE_FIELD_ID, data.form, props.input, props.meta)} - {...buildProps(props)} + onBlur={() => { + // Case-insensitive search for the value in the vocabulary + const foundValueID = getTagValueID(propertyKeyId, props.input.value, vocabulary); + if (foundValueID !== '') { + props.input.value = getTagValueLabel(propertyKeyId, foundValueID, vocabulary); + } + handleBlur(PROPERTY_VALUE_FIELD_ID, data.form, props.meta, props.input, foundValueID)(); + }} + onChange={(e: ChangeEvent) => { + const newValue = e.currentTarget.value; + const tagValueID = getTagValueID(propertyKeyId, newValue, vocabulary); + handleChange(data.form, tagValueID, props.input, props.meta, newValue); + }} /> )} />; @@ -71,5 +95,18 @@ const matchTagValues = ({ vocabulary, propertyKeyId }: PropertyValueFieldProps) const getSuggestions = (value: string, tagName: string, vocabulary: Vocabulary) => { const re = new RegExp(escapeRegExp(value), "i"); - return getTagValues(tagName, vocabulary).filter(v => re.test(v.label) && v.label !== value); + return getPreferredTagValues(tagName, vocabulary, value).filter( + val => (val.label !== value && re.test(val.label)) || + (val.synonyms && val.synonyms.some(s => re.test(s)))); }; + +const handleChange = ( + formName: string, + tagValueID: string, + { onChange }: WrappedFieldInputProps, + { dispatch }: WrappedFieldMetaProps, + value: string) => { + onChange(value); + dispatch(change(formName, PROPERTY_VALUE_FIELD_NAME, value)); + dispatch(change(formName, PROPERTY_VALUE_FIELD_ID, tagValueID)); + }; \ No newline at end of file