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

19 lines
513 B
JavaScript
Raw Normal View History

import { connect } from 'react-redux';
2019-05-07 17:38:29 -04:00
import { normalizeURI, doResolveUri, makeSelectIsUriResolving, makeSelectClaimForUri } from 'lbry-redux';
import UriIndicator from './view';
2017-05-02 12:25:31 +07:00
2017-09-07 23:15:05 -04:00
const select = (state, props) => ({
claim: makeSelectClaimForUri(props.uri)(state),
isResolvingUri: makeSelectIsUriResolving(props.uri)(state),
uri: normalizeURI(props.uri),
2017-09-07 23:15:05 -04:00
});
2017-05-02 12:25:31 +07:00
2017-06-05 21:21:55 -07:00
const perform = dispatch => ({
2017-06-06 17:19:12 -04:00
resolveUri: uri => dispatch(doResolveUri(uri)),
2017-06-05 21:21:55 -07:00
});
2017-05-21 10:42:34 -04:00
2018-10-31 17:49:11 +01:00
export default connect(
select,
perform
)(UriIndicator);