30 lines
1.2 KiB
JavaScript
30 lines
1.2 KiB
JavaScript
import { connect } from 'react-redux';
|
|
import SettingsCreatorPage from './view';
|
|
import {
|
|
doCommentBlockWords,
|
|
doCommentUnblockWords,
|
|
doFetchCreatorSettings,
|
|
doUpdateCreatorSettings,
|
|
} from 'redux/actions/comments';
|
|
import { selectActiveChannelClaim } from 'redux/selectors/app';
|
|
import {
|
|
selectSettingsByChannelId,
|
|
selectFetchingCreatorSettings,
|
|
selectFetchingBlockedWords,
|
|
} from 'redux/selectors/comments';
|
|
|
|
const select = (state) => ({
|
|
activeChannelClaim: selectActiveChannelClaim(state),
|
|
settingsByChannelId: selectSettingsByChannelId(state),
|
|
fetchingCreatorSettings: selectFetchingCreatorSettings(state),
|
|
fetchingBlockedWords: selectFetchingBlockedWords(state),
|
|
});
|
|
|
|
const perform = (dispatch) => ({
|
|
commentBlockWords: (channelClaim, words) => dispatch(doCommentBlockWords(channelClaim, words)),
|
|
commentUnblockWords: (channelClaim, words) => dispatch(doCommentUnblockWords(channelClaim, words)),
|
|
fetchCreatorSettings: (channelClaimIds) => dispatch(doFetchCreatorSettings(channelClaimIds)),
|
|
updateCreatorSettings: (channelClaim, settings) => dispatch(doUpdateCreatorSettings(channelClaim, settings)),
|
|
});
|
|
|
|
export default connect(select, perform)(SettingsCreatorPage);
|