16 lines
563 B
JavaScript
16 lines
563 B
JavaScript
|
import { connect } from 'react-redux';
|
||
|
import { makeSelectIsUriResolving, doResolveUri } from 'lbry-redux';
|
||
|
import { makeSelectWinningUriForQuery } from 'redux/selectors/search';
|
||
|
import ChannelMentionTopSuggestion from './view';
|
||
|
|
||
|
const select = (state, props) => {
|
||
|
const uriFromQuery = `lbry://${props.query}`;
|
||
|
return {
|
||
|
uriFromQuery,
|
||
|
isResolvingUri: makeSelectIsUriResolving(uriFromQuery)(state),
|
||
|
winningUri: makeSelectWinningUriForQuery(props.query)(state),
|
||
|
};
|
||
|
};
|
||
|
|
||
|
export default connect(select, { doResolveUri })(ChannelMentionTopSuggestion);
|