Replace advanced search properties fields with ones supporting vocablary
[arvados-workbench2.git] / src / views-components / form-fields / search-bar-form-fields.tsx
index 4a7c4b11f5bdce86940fc7820abfd498b3ea778f..85abbe19f3f266769bb70b9f1da0e03d847399f1 100644 (file)
@@ -3,23 +3,32 @@
 // SPDX-License-Identifier: AGPL-3.0
 
 import * as React from "react";
-import { Field } from 'redux-form';
+import { Field, WrappedFieldProps, FieldArray, formValues } from 'redux-form';
 import { TextField, DateTextField } from "~/components/text-field/text-field";
 import { CheckboxField } from '~/components/checkbox-field/checkbox-field';
 import { NativeSelectField } from '~/components/select-field/select-field';
 import { ResourceKind } from '~/models/resource';
 import { ClusterObjectType } from '~/models/search-bar';
+import { HomeTreePicker } from '~/views-components/projects-tree-picker/home-tree-picker';
+import { SEARCH_BAR_ADVANCE_FORM_PICKER_ID } from '~/store/search-bar/search-bar-actions';
+import { SearchBarAdvancedPropertiesView } from '~/views-components/search-bar/search-bar-advanced-properties-view';
+import { TreeItem } from "~/components/tree/tree";
+import { ProjectsTreePickerItem } from "~/views-components/projects-tree-picker/generic-projects-tree-picker";
+import { PropertyKeyInput } from '~/views-components/resource-properties-form/property-key-field';
+import { PropertyValueInput, PropertyValueFieldProps } from '~/views-components/resource-properties-form/property-value-field';
+import { VocabularyProp, connectVocabulary } from '~/views-components/resource-properties-form/property-field-common';
+import { compose } from 'redux';
 
 export const SearchBarTypeField = () =>
     <Field
         name='type'
         component={NativeSelectField}
         items={[
-            { key: '', value: 'Any'},
-            { key: ResourceKind.COLLECTION, value: 'Collection'},
+            { key: '', value: 'Any' },
+            { key: ResourceKind.COLLECTION, value: 'Collection' },
             { key: ResourceKind.PROJECT, value: 'Project' },
             { key: ResourceKind.PROCESS, value: 'Process' }
-        ]}/>;
+        ]} />;
 
 export const SearchBarClusterField = () =>
     <Field
@@ -32,45 +41,68 @@ export const SearchBarClusterField = () =>
             { key: ClusterObjectType.PENZBERG, value: 'Penzberg' }
         ]} />;
 
-export const SearchBarProjectField = () => 
-    <div>Box</div>;
+export const SearchBarProjectField = () =>
+    <Field
+        name='projectUuid'
+        component={ProjectsPicker} />;
 
-export const SearchBarTrashField = () => 
+const ProjectsPicker = (props: WrappedFieldProps) =>
+    <div style={{ height: '100px', display: 'flex', flexDirection: 'column', overflow: 'overlay' }}>
+        <HomeTreePicker
+            pickerId={SEARCH_BAR_ADVANCE_FORM_PICKER_ID}
+            toggleItemActive={
+                (_: any, { id }: TreeItem<ProjectsTreePickerItem>) => {
+                    props.input.onChange(id);
+                }
+            } />
+    </div>;
+
+export const SearchBarTrashField = () =>
     <Field
         name='inTrash'
         component={CheckboxField}
         label="In trash" />;
 
-export const SearchBarDataFromField = () => 
+export const SearchBarDateFromField = () =>
     <Field
         name='dateFrom'
         component={DateTextField} />;
 
-export const SearchBarDataToField = () =>
+export const SearchBarDateToField = () =>
     <Field
         name='dateTo'
         component={DateTextField} />;
 
-export const SearchBarKeyField = () => 
-    <Field
-        name='key'
-        component={TextField}
-        label="Key" />;
+export const SearchBarPropertiesField = () =>
+    <FieldArray
+        name="properties"
+        component={SearchBarAdvancedPropertiesView} />;
 
-export const SearchBarValueField = () => 
-    <Field
-        name='value'
-        component={TextField}
-        label="Value" />;
+export const SearchBarKeyField = connectVocabulary(
+    ({ vocabulary }: VocabularyProp) =>
+        <Field
+            name='key'
+            component={PropertyKeyInput}
+            vocabulary={vocabulary} />);
+
+export const SearchBarValueField = compose(
+    connectVocabulary,
+    formValues({ propertyKey: 'key' })
+)(
+    (props: PropertyValueFieldProps) =>
+        <Field
+            name='value'
+            component={PropertyValueInput}
+            {...props} />);
 
-export const SearchBarSaveSearchField = () => 
+export const SearchBarSaveSearchField = () =>
     <Field
         name='saveQuery'
         component={CheckboxField}
-        label="Save search query" />;
+        label="Save query" />;
 
-export const SearchBarQuerySearchField = () => 
+export const SearchBarQuerySearchField = () =>
     <Field
-        name='searchQuery'
+        name='queryName'
         component={TextField}
-        label="Search query name" />;
\ No newline at end of file
+        label="Query name" />;