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

26 lines
727 B
JavaScript
Raw Normal View History

2017-06-06 17:19:12 -04:00
import React from "react";
import lbryuri from "lbryuri";
import { connect } from "react-redux";
import { makeSelectIsResolvingForUri } from "selectors/content";
import { makeSelectClaimForUri } from "selectors/claims";
import UriIndicator from "./view";
2017-05-02 12:25:31 +07:00
const makeSelect = () => {
2017-05-21 10:42:34 -04:00
const selectClaim = makeSelectClaimForUri(),
selectIsResolving = makeSelectIsResolvingForUri();
2017-05-02 12:25:31 +07:00
const select = (state, props) => ({
2017-05-21 10:42:34 -04:00
claim: selectClaim(state, props),
isResolvingUri: selectIsResolving(state, props),
uri: lbryuri.normalize(props.uri),
2017-06-06 17:19:12 -04:00
});
2017-05-02 12:25:31 +07:00
2017-06-06 17:19:12 -04:00
return select;
2017-06-05 21:21:55 -07: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
2017-06-05 21:21:55 -07:00
export default connect(makeSelect, perform)(UriIndicator);