X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/563d8f1121c966ca15f4b2b2751ba4e8978bb16e..6ad3586e61737306f61a330eca545ca494f16304:/src/views-components/resource-properties-form/property-key-field.tsx diff --git a/src/views-components/resource-properties-form/property-key-field.tsx b/src/views-components/resource-properties-form/property-key-field.tsx index 686c858ec7..d17f50d465 100644 --- a/src/views-components/resource-properties-form/property-key-field.tsx +++ b/src/views-components/resource-properties-form/property-key-field.tsx @@ -3,47 +3,52 @@ // SPDX-License-Identifier: AGPL-3.0 import * as React from 'react'; -import { WrappedFieldProps, Field } from 'redux-form'; +import { WrappedFieldProps, Field, FormName } from 'redux-form'; import { memoize } from 'lodash'; import { Autocomplete } from '~/components/autocomplete/autocomplete'; -import { Vocabulary } from '~/models/vocabulary'; -import { connectVocabulary, VocabularyProp, buildProps } from '~/views-components/resource-properties-form/property-field-common'; +import { Vocabulary, getTags, getTagKeyID } from '~/models/vocabulary'; +import { handleSelect, handleBlur, connectVocabulary, VocabularyProp, ValidationProp, buildProps } from '~/views-components/resource-properties-form/property-field-common'; import { TAG_KEY_VALIDATION } from '~/validators/validators'; import { escapeRegExp } from '~/common/regexp.ts'; export const PROPERTY_KEY_FIELD_NAME = 'key'; +export const PROPERTY_KEY_FIELD_ID = 'keyID'; export const PropertyKeyField = connectVocabulary( - ({ vocabulary }: VocabularyProp) => + ({ vocabulary, skipValidation }: VocabularyProp & ValidationProp) => + ); - -export const PropertyKeyInput = ({ vocabulary, ...props }: WrappedFieldProps & VocabularyProp) => - ; + validate={skipValidation ? undefined : getValidation(vocabulary)} /> + +); + +const PropertyKeyInput = ({ vocabulary, ...props }: WrappedFieldProps & VocabularyProp) => + ( + + )} />; const getValidation = memoize( (vocabulary: Vocabulary) => - vocabulary.strict + vocabulary.strict_tags ? [...TAG_KEY_VALIDATION, matchTags(vocabulary)] : TAG_KEY_VALIDATION); const matchTags = (vocabulary: Vocabulary) => (value: string) => - getTagsList(vocabulary).find(tag => tag.includes(value)) + getTags(vocabulary).find(tag => tag.label === value) ? undefined : 'Incorrect key'; const getSuggestions = (value: string, vocabulary: Vocabulary) => { const re = new RegExp(escapeRegExp(value), "i"); - return getTagsList(vocabulary).filter(tag => re.test(tag) && tag !== value); + return getTags(vocabulary).filter(tag => re.test(tag.label) && tag.label !== value); }; - -const getTagsList = ({ tags }: Vocabulary) => - Object.keys(tags);