lbry-desktop/ui/component/blockButton/index.js
2020-06-23 16:01:20 -04:00

22 lines
716 B
JavaScript

import { connect } from 'react-redux';
import {
selectChannelIsBlocked,
makeSelectClaimIsMine,
makeSelectShortUrlForUri,
makeSelectPermanentUrlForUri,
} from 'lbry-redux';
import { doToggleBlockChannel } from 'redux/actions/blocked';
import { doToast } from 'redux/actions/notifications';
import BlockButton from './view';
const select = (state, props) => ({
channelIsBlocked: selectChannelIsBlocked(props.uri)(state),
claimIsMine: makeSelectClaimIsMine(props.uri)(state),
shortUrl: makeSelectShortUrlForUri(props.uri)(state),
permanentUrl: makeSelectPermanentUrlForUri(props.uri)(state),
});
export default connect(select, {
toggleBlockChannel: doToggleBlockChannel,
doToast,
})(BlockButton);