ea74a66dbd
* initial support for block/mute * hide blocked + muted content everywhere * add info message for blocked/muted characteristics * sort blocked list by most recent block first * add 'blocked' message on channel page for channels that you have blocked * cleanup * delete unused files * always pass mute/block list to claim_search on homepage * PR cleanup
20 lines
824 B
JavaScript
20 lines
824 B
JavaScript
import { connect } from 'react-redux';
|
|
import { makeSelectClaimForUri, makeSelectClaimIsMine } from 'lbry-redux';
|
|
import { makeSelectChannelIsMuted } from 'redux/selectors/blocked';
|
|
import { doToggleMuteChannel } from 'redux/actions/blocked';
|
|
import { doCommentModBlock, doCommentModUnBlock } from 'redux/actions/comments';
|
|
import { makeSelectChannelIsBlocked } from 'redux/selectors/comments';
|
|
import ClaimPreview from './view';
|
|
|
|
const select = (state, props) => ({
|
|
claim: makeSelectClaimForUri(props.uri)(state),
|
|
claimIsMine: makeSelectClaimIsMine(props.uri)(state),
|
|
channelIsMuted: makeSelectChannelIsMuted(props.uri)(state),
|
|
channelIsBlocked: makeSelectChannelIsBlocked(props.uri)(state),
|
|
});
|
|
|
|
export default connect(select, {
|
|
doToggleMuteChannel,
|
|
doCommentModBlock,
|
|
doCommentModUnBlock,
|
|
})(ClaimPreview);
|