2017-06-06 23:19:12 +02:00
|
|
|
import React from "react";
|
|
|
|
import { connect } from "react-redux";
|
2017-05-05 10:01:16 +02:00
|
|
|
import {
|
|
|
|
selectIsSearching,
|
2017-05-11 02:59:47 +02:00
|
|
|
selectSearchQuery,
|
2017-05-05 10:01:16 +02:00
|
|
|
selectCurrentSearchResults,
|
2017-06-06 23:19:12 +02:00
|
|
|
} 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 => ({
|
2017-05-05 10:01:16 +02:00
|
|
|
isSearching: selectIsSearching(state),
|
2017-06-06 23:19:12 +02:00
|
|
|
query: selectSearchQuery(state),
|
2017-06-06 06:21:55 +02:00
|
|
|
});
|
2017-05-05 10:01:16 +02:00
|
|
|
|
2017-06-06 06:21:55 +02:00
|
|
|
const perform = dispatch => ({
|
2017-06-06 23:19:12 +02:00
|
|
|
navigate: path => dispatch(doNavigate(path)),
|
2017-06-06 06:21:55 +02:00
|
|
|
});
|
2017-05-05 10:01:16 +02:00
|
|
|
|
2017-06-06 06:21:55 +02:00
|
|
|
export default connect(select, perform)(SearchPage);
|