X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/bc311e9eb8d6b0e4850823d4a9acd29d6176d06b..45ee419ff7952fc722a139666c327a321a92cc81:/src/views-components/form-fields/search-bar-form-fields.tsx diff --git a/src/views-components/form-fields/search-bar-form-fields.tsx b/src/views-components/form-fields/search-bar-form-fields.tsx index 210affcf..8de48ea7 100644 --- a/src/views-components/form-fields/search-bar-form-fields.tsx +++ b/src/views-components/form-fields/search-bar-form-fields.tsx @@ -3,66 +3,116 @@ // SPDX-License-Identifier: AGPL-3.0 import * as React from "react"; -import { Field } from 'redux-form'; -import { TextField } from "~/components/text-field/text-field"; +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 { 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'; +import { connect } from "react-redux"; +import { RootState } from "~/store/store"; export const SearchBarTypeField = () => ; + component={NativeSelectField} + items={[ + { key: '', value: 'Any' }, + { key: ResourceKind.COLLECTION, value: 'Collection' }, + { key: ResourceKind.PROJECT, value: 'Project' }, + { key: ResourceKind.PROCESS, value: 'Process' } + ]} />; -export const SearchBarClusterField = () => - ({ + clusters: [{key: '', value: 'Any'}].concat( + state.auth.sessions + .filter(s => s.loggedIn) + .map(s => ({ + key: s.clusterId, + value: s.clusterId + }))) + }))((props: SearchBarClusterFieldProps) => ; + component={NativeSelectField} + items={props.clusters}/> + ); -export const SearchBarProjectField = () => +export const SearchBarProjectField = () => ; + name='projectUuid' + component={ProjectsPicker} />; + +const ProjectsPicker = (props: WrappedFieldProps) => +
+ ) => { + props.input.onChange(id); + } + } /> +
; -export const SearchBarTrashField = () => +export const SearchBarTrashField = () => ; -export const SearchBarDataFromField = () => +export const SearchBarDateFromField = () => ; + name='dateFrom' + component={DateTextField} />; -export const SearchBarDataToField = () => +export const SearchBarDateToField = () => ; + name='dateTo' + component={DateTextField} />; -export const SearchBarKeyField = () => - ; +export const SearchBarPropertiesField = () => + ; -export const SearchBarValueField = () => - ; +export const SearchBarKeyField = connectVocabulary( + ({ vocabulary }: VocabularyProp) => + ); + +export const SearchBarValueField = compose( + connectVocabulary, + formValues({ propertyKey: 'key' }) +)( + (props: PropertyValueFieldProps) => + ); -export const SearchBarSaveSearchField = () => +export const SearchBarSaveSearchField = () => ; + label="Save query" />; -export const SearchBarQuerySearchField = () => +export const SearchBarQuerySearchField = () => ; \ No newline at end of file + label="Query name" />;