// Copyright (C) The Arvados Authors. All rights reserved. // // SPDX-License-Identifier: AGPL-3.0 import { connect } from 'react-redux'; import { RootState } from '~/store/store'; import { Dispatch } from 'redux'; import { goToView, searchData, searchBarActions } from '~/store/search-bar/search-bar-actions'; import { SearchBarView } from '~/views-components/search-bar/search-bar-view'; import { saveRecentQuery, loadRecentQueries } from '~/store/search-bar/search-bar-actions'; const mapStateToProps = ({ searchBar }: RootState) => { return { searchValue: searchBar.searchValue, currentView: searchBar.currentView, open: searchBar.open, searchResults: searchBar.searchResults }; }; const mapDispatchToProps = (dispatch: Dispatch) => ({ onSearch: (valueSearch: string) => dispatch(searchData(valueSearch)), onSetView: (currentView: string) => dispatch(goToView(currentView)), openView: () => dispatch(searchBarActions.OPEN_SEARCH_VIEW()), closeView: () => dispatch(searchBarActions.CLOSE_SEARCH_VIEW()), saveQuery: (query: string) => dispatch(saveRecentQuery(query)), loadQueries: () => dispatch(loadRecentQueries()) }); export const SearchBar = connect(mapStateToProps, mapDispatchToProps)(SearchBarView);