X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/1830df4301d5e1dda4ac4ffde1eb65df6039d180..c44f9aa1e0b36cac00eca89d694876d40d427615:/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 67e27ce06f..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,39 +3,38 @@ // SPDX-License-Identifier: AGPL-3.0 import * as React from 'react'; -import { change, WrappedFieldProps, WrappedFieldMetaProps, WrappedFieldInputProps, 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, PropFieldSuggestion } 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 { COLLECTION_TAG_FORM_NAME } from '~/store/collection-panel/collection-panel-action'; +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) => - ; +const PropertyKeyInput = ({ vocabulary, ...props }: WrappedFieldProps & VocabularyProp) => + ( + + )} />; const getValidation = memoize( (vocabulary: Vocabulary) => @@ -45,28 +44,11 @@ const getValidation = memoize( const matchTags = (vocabulary: Vocabulary) => (value: string) => - getTagsList(vocabulary).find(tag => tag.label === value) + getTags(vocabulary).find(tag => tag.label === value) ? undefined : 'Incorrect key'; -const getSuggestions = (value: string, vocabulary: Vocabulary) => - getTagsList(vocabulary).filter(tag => tag.label.toLowerCase().includes(value.toLowerCase())); - -const getTagsList = ({ tags }: Vocabulary) => { - const ret = tags && Object.keys(tags) - ? Object.keys(tags).map( - tagID => tags[tagID].labels - ? {"id": tagID, "label": tags[tagID].labels[0].label} - : {"id": tagID, "label": tagID}) - : []; - return ret; -}; - -const handleSelect = ( - { onChange }: WrappedFieldInputProps, - { dispatch }: WrappedFieldMetaProps) => { - return (item:PropFieldSuggestion) => { - onChange(item.label); - dispatch(change(COLLECTION_TAG_FORM_NAME, PROPERTY_KEY_FIELD_ID, item.id)); - }; +const getSuggestions = (value: string, vocabulary: Vocabulary) => { + const re = new RegExp(escapeRegExp(value), "i"); + return getTags(vocabulary).filter(tag => re.test(tag.label) && tag.label !== value); };