21 lines
725 B
JavaScript
21 lines
725 B
JavaScript
import { connect } from 'react-redux';
|
|
import { selectSearchOptions, doUpdateSearchOptions, makeSelectQueryWithOptions } from 'lbry-redux';
|
|
import { doToggleSearchExpanded } from 'redux/actions/app';
|
|
import { selectSearchOptionsExpanded } from 'redux/selectors/app';
|
|
import SearchOptions from './view';
|
|
|
|
const select = state => ({
|
|
options: selectSearchOptions(state),
|
|
expanded: selectSearchOptionsExpanded(state),
|
|
query: makeSelectQueryWithOptions()(state),
|
|
});
|
|
|
|
const perform = dispatch => ({
|
|
setSearchOption: (option, value) => dispatch(doUpdateSearchOptions({ [option]: value })),
|
|
toggleSearchExpanded: () => dispatch(doToggleSearchExpanded()),
|
|
});
|
|
|
|
export default connect(
|
|
select,
|
|
perform
|
|
)(SearchOptions);
|