Extract property field props builder
[arvados-workbench2.git] / src / views-components / resource-properties-form / property-value-field.tsx
1 // Copyright (C) The Arvados Authors. All rights reserved.
2 //
3 // SPDX-License-Identifier: AGPL-3.0
4
5 import * as React from 'react';
6 import { WrappedFieldProps, Field, formValues } from 'redux-form';
7 import { identity } from 'lodash';
8 import { compose } from 'redux';
9 import { Autocomplete } from '~/components/autocomplete/autocomplete';
10 import { Vocabulary } from '~/models/vocabulary';
11 import { require } from '~/validators/require';
12 import { PROPERTY_KEY_FIELD_NAME } from '~/views-components/resource-properties-form/property-key-field';
13 import { ITEMS_PLACEHOLDER, VocabularyProp, connectVocabulary, hasError, getErrorMsg, handleBlur, buildProps } from '~/views-components/resource-properties-form/property-field-common';
14
15 interface PropertyKeyProp {
16     propertyKey: string;
17 }
18
19 type PropertyValueFieldProps = VocabularyProp & PropertyKeyProp;
20
21 export const PROPERTY_VALUE_FIELD_NAME = 'value';
22
23 export const PropertyValueField = compose(
24     connectVocabulary,
25     formValues({ propertyKey: PROPERTY_KEY_FIELD_NAME })
26 )(
27     (props: PropertyValueFieldProps) =>
28         <Field
29             name={PROPERTY_VALUE_FIELD_NAME}
30             component={PropertyValueInput}
31             validate={getValidation(props)}
32             {...props} />);
33
34 const PropertyValueInput = ({ vocabulary, propertyKey, ...props }: WrappedFieldProps & PropertyValueFieldProps) =>
35     <Autocomplete
36         label='Value'
37         suggestions={getSuggestions(props.input.value, propertyKey, vocabulary)}
38         {...buildProps(props)}
39     />;
40
41 const getValidation = (props: PropertyValueFieldProps) =>
42     isStrictTag(props.propertyKey, props.vocabulary)
43         ? [require, matchTagValues(props)]
44         : [require];
45
46 const matchTagValues = ({ vocabulary, propertyKey }: PropertyValueFieldProps) =>
47     (value: string) =>
48         getTagValues(propertyKey, vocabulary).find(v => v.includes(value))
49             ? undefined
50             : 'Incorrect value';
51
52 const getSuggestions = (value: string, tagName: string, vocabulary: Vocabulary) =>
53     getTagValues(tagName, vocabulary).filter(v => v.includes(value) && v !== value);
54
55 const isStrictTag = (tagName: string, vocabulary: Vocabulary) => {
56     const tag = vocabulary.tags[tagName];
57     return tag ? tag.strict : false;
58 };
59
60 const getTagValues = (tagName: string, vocabulary: Vocabulary) => {
61     const tag = vocabulary.tags[tagName];
62     return tag && tag.values ? tag.values : [];
63 };