lbry-desktop/ui/js/page/search/index.js

21 lines
486 B
JavaScript
Raw Normal View History

2017-06-06 06:21:55 +02:00
import React from 'react';
import { connect } from 'react-redux';
2017-05-05 10:01:16 +02:00
import {
2017-06-06 06:21:55 +02:00
selectIsSearching,
selectSearchQuery,
selectCurrentSearchResults
} from 'selectors/search';
import { doNavigate } from 'actions/app';
import SearchPage from './view';
2017-05-05 10:01:16 +02:00
2017-06-06 06:21:55 +02:00
const select = state => ({
isSearching: selectIsSearching(state),
query: selectSearchQuery(state)
});
2017-05-05 10:01:16 +02:00
2017-06-06 06:21:55 +02:00
const perform = dispatch => ({
navigate: path => dispatch(doNavigate(path))
});
2017-05-05 10:01:16 +02:00
2017-06-06 06:21:55 +02:00
export default connect(select, perform)(SearchPage);