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

17 lines
467 B
JavaScript
Raw Normal View History

2017-06-06 17:19:12 -04:00
import React from "react";
import { connect } from "react-redux";
import { selectIsSearching, selectSearchQuery } from "selectors/search";
import { doNavigate } from "actions/navigation";
2017-06-06 17:19:12 -04:00
import SearchPage from "./view";
2017-05-05 15:01:16 +07:00
2017-06-05 21:21:55 -07:00
const select = state => ({
2017-05-05 15:01:16 +07:00
isSearching: selectIsSearching(state),
2017-06-06 17:19:12 -04:00
query: selectSearchQuery(state),
2017-06-05 21:21:55 -07:00
});
2017-05-05 15:01:16 +07:00
2017-06-05 21:21:55 -07:00
const perform = dispatch => ({
2017-06-06 17:19:12 -04:00
navigate: path => dispatch(doNavigate(path)),
2017-06-05 21:21:55 -07:00
});
2017-05-05 15:01:16 +07:00
2017-06-05 21:21:55 -07:00
export default connect(select, perform)(SearchPage);