X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/78224728bc808a560718e934ef124afa77b81834..be7d8afed27347d0b55818e64fce3e036e5300d8:/src/views-components/search-bar/search-bar-view.tsx diff --git a/src/views-components/search-bar/search-bar-view.tsx b/src/views-components/search-bar/search-bar-view.tsx index 6251308d..28408347 100644 --- a/src/views-components/search-bar/search-bar-view.tsx +++ b/src/views-components/search-bar/search-bar-view.tsx @@ -2,7 +2,8 @@ // // SPDX-License-Identifier: AGPL-3.0 -import * as React from 'react'; +import React from 'react'; +import { compose } from 'redux'; import { IconButton, Paper, @@ -14,24 +15,27 @@ import { } from '@material-ui/core'; import SearchIcon from '@material-ui/icons/Search'; import ArrowDropDownIcon from '@material-ui/icons/ArrowDropDown'; -import { ArvadosTheme } from '~/common/custom-theme'; -import { SearchView } from '~/store/search-bar/search-bar-reducer'; +import { ArvadosTheme } from 'common/custom-theme'; +import { SearchView } from 'store/search-bar/search-bar-reducer'; import { SearchBarBasicView, SearchBarBasicViewDataProps, SearchBarBasicViewActionProps -} from '~/views-components/search-bar/search-bar-basic-view'; +} from 'views-components/search-bar/search-bar-basic-view'; import { SearchBarAutocompleteView, SearchBarAutocompleteViewDataProps, SearchBarAutocompleteViewActionProps -} from '~/views-components/search-bar/search-bar-autocomplete-view'; +} from 'views-components/search-bar/search-bar-autocomplete-view'; import { SearchBarAdvancedView, SearchBarAdvancedViewDataProps, SearchBarAdvancedViewActionProps -} from '~/views-components/search-bar/search-bar-advanced-view'; -import { KEY_CODE_DOWN, KEY_CODE_ESC, KEY_CODE_UP, KEY_ENTER } from "~/common/codes"; +} from 'views-components/search-bar/search-bar-advanced-view'; +import { KEY_CODE_DOWN, KEY_CODE_ESC, KEY_CODE_UP, KEY_ENTER } from "common/codes"; +import { debounce } from 'debounce'; +import { Vocabulary } from 'models/vocabulary'; +import { connectVocabulary } from '../resource-properties-form/property-field-common'; type CssRules = 'container' | 'containerSearchViewOpened' | 'input' | 'view'; @@ -71,6 +75,7 @@ interface SearchBarViewDataProps { currentView: string; isPopoverOpen: boolean; debounce?: number; + vocabulary?: Vocabulary; } export type SearchBarActionProps = SearchBarViewActionProps @@ -87,7 +92,7 @@ interface SearchBarViewActionProps { loadRecentQueries: () => string[]; moveUp: () => void; moveDown: () => void; - setAdvancedDataFromSearchValue: (search: string) => void; + setAdvancedDataFromSearchValue: (search: string, vocabulary?: Vocabulary) => void; } type SearchBarViewProps = SearchBarDataProps & SearchBarActionProps & WithStyles; @@ -123,74 +128,91 @@ const handleKeyDown = (e: React.KeyboardEvent, props: SearchBarViewProps) => { const handleInputClick = (e: React.MouseEvent, props: SearchBarViewProps) => { if (props.searchValue) { props.onSetView(SearchView.AUTOCOMPLETE); - props.openSearchView(); } else { - props.closeView(); + props.onSetView(SearchView.BASIC); } + props.openSearchView(); }; const handleDropdownClick = (e: React.MouseEvent, props: SearchBarViewProps) => { e.stopPropagation(); - if (props.isPopoverOpen) { - if (props.currentView === SearchView.ADVANCED) { - props.closeView(); - } else { - props.setAdvancedDataFromSearchValue(props.searchValue); - props.onSetView(SearchView.ADVANCED); - } + if (props.isPopoverOpen && props.currentView === SearchView.ADVANCED) { + props.closeView(); } else { - props.setAdvancedDataFromSearchValue(props.searchValue); + props.setAdvancedDataFromSearchValue(props.searchValue, props.vocabulary); props.onSetView(SearchView.ADVANCED); } }; -export const SearchBarView = withStyles(styles)( - (props: SearchBarViewProps) => { - const { classes, isPopoverOpen } = props; - return ( - <> - - {isPopoverOpen && - } - - -
- handleInputClick(e, props)} - onKeyDown={e => handleKeyDown(e, props)} - startAdornment={ - - - - - - - - } - endAdornment={ - - - handleDropdownClick(e, props)}> - - - - - } /> -
-
- {isPopoverOpen && getView({ ...props })} -
-
- - ); - } -); +export const SearchBarView = compose(connectVocabulary, withStyles(styles))( + class extends React.Component { + + debouncedSearch = debounce(() => { + this.props.onSearch(this.props.searchValue); + }, 1000); + + handleChange = (event: React.ChangeEvent) => { + this.debouncedSearch(); + this.props.onChange(event); + } + + handleSubmit = (event: React.FormEvent) => { + this.debouncedSearch.clear(); + this.props.onSubmit(event); + } + + componentWillUnmount() { + this.debouncedSearch.clear(); + } + + render() { + const { children, ...props } = this.props; + const { classes, isPopoverOpen } = this.props; + return ( + <> + + {isPopoverOpen && + } + + +
+ handleInputClick(e, props)} + onKeyDown={e => handleKeyDown(e, props)} + startAdornment={ + + + + + + + + } + endAdornment={ + + + handleDropdownClick(e, props)}> + + + + + } /> +
+
+ {isPopoverOpen && getView({ ...props })} +
+
+ + ); + } + }); const getView = (props: SearchBarViewProps) => { switch (props.currentView) {