X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/e5696ae072134453e8a0845a4cc58288e3b3163c..2ab43f230662c3f5d7d7ff75c08bdab0c66b22b0:/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 26911321..777fa824 100644 --- a/src/views-components/form-fields/search-bar-form-fields.tsx +++ b/src/views-components/form-fields/search-bar-form-fields.tsx @@ -2,77 +2,110 @@ // // 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 { Checkbox, FormControlLabel } from '@material-ui/core'; +import React from "react"; +import { Field, WrappedFieldProps, FieldArray } 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_ADVANCED_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 { PropertyKeyField, } from 'views-components/resource-properties-form/property-key-field'; +import { PropertyValueField } from 'views-components/resource-properties-form/property-value-field'; +import { connect } from "react-redux"; +import { RootState } from "store/store"; export const SearchBarTypeField = () => ; + component={NativeSelectField as any} + 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 as any} + items={props.clusters}/> + ); + +export const SearchBarProjectField = () => + ; -export const SearchBarProjectField = () => +const ProjectsPicker = (props: WrappedFieldProps) => +
+ ) => { + props.input.onChange(id); + } + } /> +
; + +export const SearchBarTrashField = () => ; - -export const SearchBarTrashField = () => - - } + name='inTrash' + component={CheckboxField} label="In trash" />; -export const SearchBarDataFromField = () => +export const SearchBarPastVersionsField = () => ; + name='pastVersions' + component={CheckboxField} + label="Past versions" />; -export const SearchBarDataToField = () => +export const SearchBarDateFromField = () => ; + name='dateFrom' + component={DateTextField as any} />; -export const SearchBarKeyField = () => +export const SearchBarDateToField = () => ; + name='dateTo' + component={DateTextField as any} />; + +export const SearchBarPropertiesField = () => + ; + +export const SearchBarKeyField = () => + ; -export const SearchBarValueField = () => +export const SearchBarValueField = () => + ; + +export const SearchBarSaveSearchField = () => ; - -export const SearchBarSaveSearchField = () => - - } - label="Save search query" />; - -export const SearchBarQuerySearchField = () => + name='saveQuery' + component={CheckboxField} + label="Save query" />; + +export const SearchBarQuerySearchField = () => ; \ No newline at end of file + name='queryName' + component={TextField as any} + label="Query name" />;