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

32 lines
728 B
JavaScript
Raw Normal View History

2017-05-02 07:25:31 +02:00
import React from 'react'
2017-05-21 16:42:34 +02:00
import lbryuri from 'lbryuri';
2017-05-02 07:25:31 +02:00
import {
connect,
} from 'react-redux'
2017-05-21 16:42:34 +02:00
import {
makeSelectIsResolvingForUri
} from 'selectors/content'
2017-05-02 07:25:31 +02:00
import {
makeSelectClaimForUri,
} from 'selectors/claims'
import UriIndicator from './view'
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-05-02 07:25:31 +02:00
})
return select
}
2017-05-21 16:42:34 +02:00
const perform = (dispatch) => ({
resolveUri: (uri) => dispatch(doResolveUri(uri))
})
export default connect(makeSelect, perform)(UriIndicator)