2017-12-21 22:08:54 +01:00
|
|
|
import { connect } from 'react-redux';
|
2019-10-17 00:03:11 +02:00
|
|
|
import {
|
2022-04-15 05:05:59 +02:00
|
|
|
selectIsFetchingAllMyClaims,
|
2020-04-24 15:51:00 +02:00
|
|
|
selectFetchingMyClaimsPageError,
|
2022-04-15 05:05:59 +02:00
|
|
|
selectAllMyClaims,
|
2021-10-08 05:47:39 +02:00
|
|
|
} from 'redux/selectors/claims';
|
2022-04-15 05:05:59 +02:00
|
|
|
import { doCheckPendingClaims, doFetchAllClaimListMine } from 'redux/actions/claims';
|
2021-10-08 05:47:39 +02:00
|
|
|
import { doClearPublish } from 'redux/actions/publish';
|
2017-12-21 22:08:54 +01:00
|
|
|
import FileListPublished from './view';
|
2019-09-23 19:32:38 +02:00
|
|
|
import { withRouter } from 'react-router';
|
2020-05-11 17:54:39 +02:00
|
|
|
import { MY_CLAIMS_PAGE_SIZE, PAGE_PARAM, PAGE_SIZE_PARAM } from 'constants/claim';
|
2017-04-23 18:10:45 +02:00
|
|
|
|
2019-09-23 19:32:38 +02:00
|
|
|
const select = (state, props) => {
|
|
|
|
const { search } = props.location;
|
|
|
|
const urlParams = new URLSearchParams(search);
|
2020-04-24 15:51:00 +02:00
|
|
|
const page = Number(urlParams.get(PAGE_PARAM)) || '1';
|
2020-05-11 17:54:39 +02:00
|
|
|
const pageSize = urlParams.get(PAGE_SIZE_PARAM) || String(MY_CLAIMS_PAGE_SIZE);
|
2022-04-15 05:05:59 +02:00
|
|
|
const initialSearchTerm = urlParams.get('searchText') || '';
|
2020-04-24 15:51:00 +02:00
|
|
|
|
2019-09-23 19:32:38 +02:00
|
|
|
return {
|
|
|
|
page,
|
2020-04-24 15:51:00 +02:00
|
|
|
pageSize,
|
2022-04-15 05:05:59 +02:00
|
|
|
fetching: selectIsFetchingAllMyClaims(state),
|
2020-04-24 15:51:00 +02:00
|
|
|
error: selectFetchingMyClaimsPageError(state),
|
2022-04-15 05:05:59 +02:00
|
|
|
myClaims: selectAllMyClaims(state),
|
|
|
|
initialSearchTerm,
|
2019-09-23 19:32:38 +02:00
|
|
|
};
|
|
|
|
};
|
2017-05-01 06:51:19 +02:00
|
|
|
|
2021-03-15 10:59:48 +01:00
|
|
|
const perform = (dispatch) => ({
|
2020-07-23 16:22:57 +02:00
|
|
|
checkPendingPublishes: () => dispatch(doCheckPendingClaims()),
|
2020-01-08 06:29:01 +01:00
|
|
|
clearPublish: () => dispatch(doClearPublish()),
|
2022-04-15 05:05:59 +02:00
|
|
|
fetchAllMyClaims: () => dispatch(doFetchAllClaimListMine()),
|
2017-06-06 06:21:55 +02:00
|
|
|
});
|
2017-05-01 06:51:19 +02:00
|
|
|
|
2020-04-24 15:51:00 +02:00
|
|
|
export default withRouter(connect(select, perform)(FileListPublished));
|