Extract property-field-common module
[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 } 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 = ({ input, meta, vocabulary, propertyKey }: WrappedFieldProps & PropertyValueFieldProps) =>
35     <Autocomplete
36         value={input.value}
37         onChange={input.onChange}
38         label='Value'
39         suggestions={getSuggestions(input.value, propertyKey, vocabulary)}
40         items={ITEMS_PLACEHOLDER}
41         onSelect={input.onChange}
42         renderSuggestion={identity}
43         error={meta.invalid}
44         helperText={meta.error}
45     />;
46
47 const getValidation = (props: PropertyValueFieldProps) =>
48     isStrictTag(props.propertyKey, props.vocabulary)
49         ? [require, matchTagValues(props)]
50         : [require];
51
52 const matchTagValues = ({ vocabulary, propertyKey }: PropertyValueFieldProps) =>
53     (value: string) =>
54         getTagValues(propertyKey, vocabulary).find(v => v.includes(value))
55             ? undefined
56             : 'Incorrect value';
57
58 const getSuggestions = (value: string, tagName: string, vocabulary: Vocabulary) =>
59     getTagValues(tagName, vocabulary).filter(v => v.includes(value) && v !== value);
60
61 const isStrictTag = (tagName: string, vocabulary: Vocabulary) => {
62     const tag = vocabulary.tags[tagName];
63     return tag ? tag.strict : false;
64 };
65
66 const getTagValues = (tagName: string, vocabulary: Vocabulary) => {
67     const tag = vocabulary.tags[tagName];
68     return tag && tag.values ? tag.values : [];
69 };