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

26 lines
727 B
JavaScript
Raw Normal View History

2017-06-06 23:19:12 +02: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 07:25:31 +02:00
const makeSelect = () => {
2017-05-21 16:42:34 +02:00
const selectClaim = makeSelectClaimForUri(),
selectIsResolving = makeSelectIsResolvingForUri();
2017-05-02 07:25:31 +02:00
const select = (state, props) => ({
2017-05-21 16:42:34 +02:00
claim: selectClaim(state, props),
isResolvingUri: selectIsResolving(state, props),
uri: lbryuri.normalize(props.uri),
2017-06-06 23:19:12 +02:00
});
2017-05-02 07:25:31 +02:00
2017-06-06 23:19:12 +02:00
return select;
2017-06-06 06:21:55 +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
2017-06-06 06:21:55 +02:00
export default connect(makeSelect, perform)(UriIndicator);