X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/b6ac7fe88d347582d39fffa002e300af222c578f..2a7fd99c212c33a1ec9911f8529fa5afc59a7bb2:/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 777fa824df..47633a0b12 100644 --- a/src/views-components/form-fields/search-bar-form-fields.tsx +++ b/src/views-components/form-fields/search-bar-form-fields.tsx @@ -3,20 +3,17 @@ // SPDX-License-Identifier: AGPL-3.0 import React from "react"; -import { Field, WrappedFieldProps, FieldArray } from 'redux-form'; +import { Field, 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"; +import { ProjectInput, ProjectCommandInputParameter } from 'views/run-process-panel/inputs/project-input'; export const SearchBarTypeField = () => ({ - clusters: [{key: '', value: 'Any'}].concat( + clusters: [{ key: '', value: 'Any' }].concat( state.auth.sessions .filter(s => s.loggedIn) .map(s => ({ @@ -46,24 +43,15 @@ export const SearchBarClusterField = connect( }))((props: SearchBarClusterFieldProps) => + items={props.clusters} /> ); export const SearchBarProjectField = () => - ; - -const ProjectsPicker = (props: WrappedFieldProps) => -
- ) => { - props.input.onChange(id); - } - } /> -
; + export const SearchBarTrashField = () =>