2020-01-20 11:47:03 -05:00
|
|
|
import { connect } from 'react-redux';
|
2021-04-28 17:53:04 +08:00
|
|
|
import {
|
|
|
|
doClaimSearch,
|
|
|
|
selectClaimSearchByQuery,
|
|
|
|
selectFetchingClaimSearchByQuery,
|
|
|
|
SETTINGS,
|
|
|
|
selectClaimsByUri,
|
|
|
|
} from 'lbry-redux';
|
2020-03-09 19:46:37 -04:00
|
|
|
import { doToggleTagFollowDesktop } from 'redux/actions/tags';
|
2021-03-31 16:55:26 -04:00
|
|
|
import { makeSelectClientSetting, selectShowMatureContent } from 'redux/selectors/settings';
|
2021-04-24 00:44:42 -04:00
|
|
|
import { selectModerationBlockList } from 'redux/selectors/comments';
|
|
|
|
import { selectMutedChannels } from 'redux/selectors/blocked';
|
2020-01-20 11:47:03 -05:00
|
|
|
import ClaimListDiscover from './view';
|
|
|
|
|
2021-03-03 13:50:16 -05:00
|
|
|
const select = (state) => ({
|
2020-01-20 11:47:03 -05:00
|
|
|
claimSearchByQuery: selectClaimSearchByQuery(state),
|
2021-04-28 17:53:04 +08:00
|
|
|
claimsByUri: selectClaimsByUri(state),
|
2020-09-11 15:48:23 -04:00
|
|
|
fetchingClaimSearchByQuery: selectFetchingClaimSearchByQuery(state),
|
2021-03-31 16:55:26 -04:00
|
|
|
showNsfw: selectShowMatureContent(state),
|
2020-04-15 12:43:22 -04:00
|
|
|
hideReposts: makeSelectClientSetting(SETTINGS.HIDE_REPOSTS)(state),
|
2021-04-24 00:44:42 -04:00
|
|
|
mutedUris: selectMutedChannels(state),
|
|
|
|
blockedUris: selectModerationBlockList(state),
|
2020-01-20 11:47:03 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
const perform = {
|
|
|
|
doClaimSearch,
|
2020-03-09 19:46:37 -04:00
|
|
|
doToggleTagFollowDesktop,
|
2020-01-20 11:47:03 -05:00
|
|
|
};
|
|
|
|
|
2020-04-15 12:43:22 -04:00
|
|
|
export default connect(select, perform)(ClaimListDiscover);
|