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

26 lines
712 B
JavaScript
Raw Normal View History

2017-06-06 06:21:55 +02:00
import React from 'react';
2017-05-21 16:42:34 +02:00
import lbryuri from 'lbryuri';
2017-06-06 06:21:55 +02:00
import { connect } from 'react-redux';
import { makeSelectIsResolvingForUri } from 'selectors/content';
import { makeSelectClaimForUri } from 'selectors/claims';
import UriIndicator from './view';
2017-05-02 07:25:31 +02:00
const makeSelect = () => {
2017-06-06 06:21:55 +02:00
const selectClaim = makeSelectClaimForUri(),
selectIsResolving = makeSelectIsResolvingForUri();
2017-05-02 07:25:31 +02:00
2017-06-06 06:21:55 +02:00
const select = (state, props) => ({
claim: selectClaim(state, props),
isResolvingUri: selectIsResolving(state, props),
uri: lbryuri.normalize(props.uri)
});
2017-05-02 07:25:31 +02:00
2017-06-06 06:21:55 +02:00
return select;
};
2017-05-02 07:25:31 +02:00
2017-06-06 06:21:55 +02:00
const perform = dispatch => ({
resolveUri: uri => dispatch(doResolveUri(uri))
});
2017-05-21 16:42:34 +02:00
2017-06-06 06:21:55 +02:00
export default connect(makeSelect, perform)(UriIndicator);