2019-07-08 22:54:58 +02:00
|
|
|
import { connect } from 'react-redux';
|
2019-08-16 19:01:01 +02:00
|
|
|
import {
|
|
|
|
selectChannelIsBlocked,
|
|
|
|
doToggleBlockChannel,
|
|
|
|
doToast,
|
|
|
|
makeSelectClaimIsMine,
|
|
|
|
makeSelectShortUrlForUri,
|
2019-09-04 06:22:31 +02:00
|
|
|
makeSelectPermanentUrlForUri,
|
2019-08-16 19:01:01 +02:00
|
|
|
} from 'lbry-redux';
|
2019-07-08 22:54:58 +02:00
|
|
|
import BlockButton from './view';
|
|
|
|
|
|
|
|
const select = (state, props) => ({
|
|
|
|
channelIsBlocked: selectChannelIsBlocked(props.uri)(state),
|
2019-08-16 19:01:01 +02:00
|
|
|
claimIsMine: makeSelectClaimIsMine(props.uri)(state),
|
2019-08-02 17:11:31 +02:00
|
|
|
shortUrl: makeSelectShortUrlForUri(props.uri)(state),
|
2019-09-04 06:22:31 +02:00
|
|
|
permanentUrl: makeSelectPermanentUrlForUri(props.uri)(state),
|
2019-07-08 22:54:58 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
export default connect(
|
|
|
|
select,
|
|
|
|
{
|
|
|
|
toggleBlockChannel: doToggleBlockChannel,
|
|
|
|
doToast,
|
|
|
|
}
|
|
|
|
)(BlockButton);
|