X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/ad5208965b91e020b431cd9d2c1d15ff4b856450..676a8457983ed1660493f747cc4bb506c8ddbe9c:/src/views-components/form-fields/search-bar-form-fields.tsx?ds=sidebyside 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 da0b12b5..2eea38c4 100644 --- a/src/views-components/form-fields/search-bar-form-fields.tsx +++ b/src/views-components/form-fields/search-bar-form-fields.tsx @@ -8,12 +8,15 @@ 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 { 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 = () => { 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 = () => const ProjectsPicker = (props: WrappedFieldProps) =>
) => { props.input.onChange(id); } - }/> + } />
; export const SearchBarTrashField = () => @@ -59,6 +71,12 @@ export const SearchBarTrashField = () => component={CheckboxField} label="In trash" />; +export const SearchBarPastVersionsField = () => + ; + export const SearchBarDateFromField = () => component={SearchBarAdvancedPropertiesView} />; export const SearchBarKeyField = () => - ; + ; export const SearchBarValueField = () => - ; + ; export const SearchBarSaveSearchField = () =>