X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/f4e410a5984226818301332c25ac178403c2e0e9..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 85abbe19..8de48ea7 100644 --- a/src/views-components/form-fields/search-bar-form-fields.tsx +++ b/src/views-components/form-fields/search-bar-form-fields.tsx @@ -8,7 +8,6 @@ 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'; @@ -18,6 +17,8 @@ import { PropertyKeyInput } from '~/views-components/resource-properties-form/pr 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 = () => { 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) => ; + items={props.clusters}/> + ); export const SearchBarProjectField = () =>