adds blocked channel count

This commit is contained in:
jessop 2019-07-28 23:24:31 -04:00
parent 8406e8c25e
commit d41a2a8a30
3 changed files with 7 additions and 3 deletions

View file

@ -273,4 +273,4 @@ export {
export { selectFollowedTags, selectUnfollowedTags } from 'redux/selectors/tags';
export { selectBlockedChannels, selectChannelIsBlocked } from 'redux/selectors/blocked';
export { selectBlockedChannels, selectChannelIsBlocked, selectBlockedChannelsCount } from 'redux/selectors/blocked';

View file

@ -11,7 +11,6 @@ export const blockChannelReducer = handleActions(
[ACTIONS.TOGGLE_BLOCK_CHANNEL]: (state: BlocklistState, action: BlocklistAction): BlocklistState => {
const { blockedChannels } = state;
const { uri } = action.data;
console.log('test', uri)
let newBlockedChannels = blockedChannels.slice();
if (newBlockedChannels.includes(uri)) {

View file

@ -5,7 +5,12 @@ const selectState = (state: { blockedChannels: BlocklistState }) => state.blocke
export const selectBlockedChannels = createSelector(
selectState,
(state: BlocklistState) => state
(state: BlocklistState) => state.blockedChannels
);
export const selectBlockedChannelsCount = createSelector(
selectState,
(state: BlocklistState) => state.blockedChannels.length
);
export const selectChannelIsBlocked = (uri: string) => createSelector(