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

19 lines
513 B
JavaScript
Raw Normal View History

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