lbry-desktop/ui/js/component/wunderbar/index.js

20 lines
609 B
JavaScript
Raw Normal View History

2017-06-06 17:19:12 -04:00
import React from "react";
import { connect } from "react-redux";
import lbryuri from "lbryuri.js";
import { selectWunderBarAddress, selectWunderBarIcon } from "selectors/search";
import { doNavigate } from "actions/app";
import Wunderbar from "./view";
2017-05-03 23:44:08 -04:00
2017-06-05 21:21:55 -07:00
const select = state => ({
2017-05-03 23:44:08 -04:00
address: selectWunderBarAddress(state),
2017-06-06 17:19:12 -04:00
icon: selectWunderBarIcon(state),
2017-06-05 21:21:55 -07:00
});
2017-05-03 23:44:08 -04:00
2017-06-05 21:21:55 -07:00
const perform = dispatch => ({
2017-06-06 17:19:12 -04:00
onSearch: query => dispatch(doNavigate("/search", { query })),
onSubmit: query =>
dispatch(doNavigate("/show", { uri: lbryuri.normalize(query) })),
2017-06-05 21:21:55 -07:00
});
2017-05-03 23:44:08 -04:00
2017-06-05 21:21:55 -07:00
export default connect(select, perform)(Wunderbar);