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

26 lines
646 B
JavaScript
Raw Normal View History

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