X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/b0bc9cddda159681f28384374be59335efda5f20..5d163fb5e5eb04ace4c67112d20fd34f1b0f5e7b:/src/views-components/resource-properties-form/property-value-field.tsx?ds=inline 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 99745199..d0044e18 100644 --- a/src/views-components/resource-properties-form/property-value-field.tsx +++ b/src/views-components/resource-properties-form/property-value-field.tsx @@ -3,57 +3,81 @@ // SPDX-License-Identifier: AGPL-3.0 import * as React from 'react'; -import { WrappedFieldProps, Field, formValues, FormName } from 'redux-form'; +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 } 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 { 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.ts'; +import { ChangeEvent } from 'react'; interface PropertyKeyProp { - propertyKey: string; + propertyKeyId: string; + propertyKeyName: string; +} + +interface PropertyValueInputProp { + disabled: boolean; } -type PropertyValueFieldProps = VocabularyProp & PropertyKeyProp & ValidationProp; +type PropertyValueFieldProps = VocabularyProp & PropertyKeyProp & ValidationProp & PropertyValueInputProp; export const PROPERTY_VALUE_FIELD_NAME = 'value'; export const PROPERTY_VALUE_FIELD_ID = 'valueID'; const connectVocabularyAndPropertyKey = compose( connectVocabulary, - formValues({ propertyKey: PROPERTY_KEY_FIELD_ID }), + formValues({ + propertyKeyId: PROPERTY_KEY_FIELD_ID, + propertyKeyName: PROPERTY_KEY_FIELD_NAME, + }), ); export const PropertyValueField = connectVocabularyAndPropertyKey( ({ skipValidation, ...props }: PropertyValueFieldProps) => + + {...{...props, disabled: !props.propertyKeyName}} /> + ); -const PropertyValueInput = ({ vocabulary, propertyKey, ...props }: WrappedFieldProps & PropertyValueFieldProps) => +const PropertyValueInput = ({ vocabulary, propertyKeyId, propertyKeyName, ...props }: WrappedFieldProps & PropertyValueFieldProps) => ( ) => { + 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'; @@ -61,3 +85,14 @@ 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); }; + +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