2020-01-20 11:47:03 -05:00
|
|
|
import { connect } from 'react-redux';
|
2020-09-11 15:48:23 -04:00
|
|
|
import { doClaimSearch, selectClaimSearchByQuery, selectFetchingClaimSearchByQuery, SETTINGS } 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';
|
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),
|
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),
|
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);
|