X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/83df67242fa95dd321a19189e68e3ce82f1a0837..c4cc8cb078eeed7aba167f5263d65bae3bf6e115:/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 c2474735..b023e412 100644 --- a/src/views-components/resource-properties-form/property-value-field.tsx +++ b/src/views-components/resource-properties-form/property-value-field.tsx @@ -2,55 +2,89 @@ // // SPDX-License-Identifier: AGPL-3.0 -import * as React from 'react'; -import { change, WrappedFieldProps, WrappedFieldMetaProps, WrappedFieldInputProps, Field, formValues } 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, getTagValueID, isStrictTag, getTagValues, PropFieldSuggestion } from '~/models/vocabulary'; -import { PROPERTY_KEY_FIELD_ID } from '~/views-components/resource-properties-form/property-key-field'; -import { VocabularyProp, connectVocabulary, buildProps } from '~/views-components/resource-properties-form/property-field-common'; -import { TAG_VALUE_VALIDATION } from '~/validators/validators'; -import { COLLECTION_TAG_FORM_NAME } from '~/store/collection-panel/collection-panel-action'; -import { escapeRegExp } from '~/common/regexp.ts'; +import { Autocomplete } from 'components/autocomplete/autocomplete'; +import { Vocabulary, isStrictTag, getTagValues, getTagValueID, getTagValueLabel } 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 { - propertyKey: string; + propertyKeyId: string; + propertyKeyName: string; +} + +interface PropertyValueInputProp { + disabled: boolean; } -export type PropertyValueFieldProps = VocabularyProp & PropertyKeyProp; +type PropertyValueFieldProps = VocabularyProp & PropertyKeyProp & ValidationProp & PropertyValueInputProp; export const PROPERTY_VALUE_FIELD_NAME = 'value'; export const PROPERTY_VALUE_FIELD_ID = 'valueID'; -export const PropertyValueField = compose( +const connectVocabularyAndPropertyKey = compose( connectVocabulary, - formValues({ propertyKey: PROPERTY_KEY_FIELD_ID }) -)( - (props: PropertyValueFieldProps) => + formValues({ + propertyKeyId: PROPERTY_KEY_FIELD_ID, + propertyKeyName: PROPERTY_KEY_FIELD_NAME, + }), +); + +export const PropertyValueField = connectVocabularyAndPropertyKey( + ({ skipValidation, ...props }: PropertyValueFieldProps) => + + validate={skipValidation ? undefined : getValidation(props)} + {...{...props, disabled: !props.propertyKeyName}} /> + ); -export const PropertyValueInput = ({ vocabulary, propertyKey, ...props }: WrappedFieldProps & PropertyValueFieldProps) => - ; +const PropertyValueInput = ({ vocabulary, propertyKeyId, propertyKeyName, ...props }: WrappedFieldProps & PropertyValueFieldProps) => + ( + { + // 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); + }} + {...buildProps(props)} + /> + )} />; const getValidation = (props: PropertyValueFieldProps) => - isStrictTag(props.propertyKey, props.vocabulary) + isStrictTag(props.propertyKeyId, props.vocabulary) ? [...TAG_VALUE_VALIDATION, matchTagValues(props)] : TAG_VALUE_VALIDATION; -const matchTagValues = ({ vocabulary, propertyKey }: PropertyValueFieldProps) => +const matchTagValues = ({ vocabulary, propertyKeyId }: PropertyValueFieldProps) => (value: string) => - getTagValues(propertyKey, vocabulary).find(v => v.label === value) + getTagValues(propertyKeyId, vocabulary).find(v => v.label === value) ? undefined : 'Incorrect value'; @@ -59,24 +93,13 @@ const getSuggestions = (value: string, tagName: string, vocabulary: Vocabulary) return getTagValues(tagName, vocabulary).filter(v => re.test(v.label) && v.label !== value); }; -// Attempts to match a manually typed value label with a value ID, when the user -// doesn't select the value from the suggestions list. -const handleBlur = ( - { dispatch }: WrappedFieldMetaProps, - { onBlur, value }: WrappedFieldInputProps, - vocabulary: Vocabulary, - tagKeyID: string) => - () => { - dispatch(change(COLLECTION_TAG_FORM_NAME, PROPERTY_VALUE_FIELD_ID, getTagValueID(tagKeyID, value, vocabulary))); - onBlur(value); - }; - -// When selecting a property value, save its ID for later usage. -const handleSelect = ( +const handleChange = ( + formName: string, + tagValueID: string, { onChange }: WrappedFieldInputProps, - { dispatch }: WrappedFieldMetaProps) => { - return (item:PropFieldSuggestion) => { - onChange(item.label); - dispatch(change(COLLECTION_TAG_FORM_NAME, PROPERTY_VALUE_FIELD_ID, item.id)); - }; -}; + { 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