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
15 lines
622 B
JavaScript
15 lines
622 B
JavaScript
import { connect } from 'react-redux';
|
|
import { selectFollowedTags } from 'redux/selectors/tags';
|
|
import { selectMutedChannels } from 'redux/selectors/blocked';
|
|
import { selectSubscriptions } from 'redux/selectors/subscriptions';
|
|
import { selectHomepageData } from 'redux/selectors/settings';
|
|
import ChannelsFollowingManagePage from './view';
|
|
|
|
const select = (state) => ({
|
|
followedTags: selectFollowedTags(state),
|
|
subscribedChannels: selectSubscriptions(state),
|
|
blockedChannels: selectMutedChannels(state),
|
|
homepageData: selectHomepageData(state),
|
|
});
|
|
|
|
export default connect(select)(ChannelsFollowingManagePage);
|