accountSettlementActions.js
1.22 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
'use strict';
import Request from '../../services/Request';
import HomeService from '../../services/HomeService';
const {
ACCOUNT_LIST_REQUEST,
ACCOUNT_LIST_SUCCESS,
ACCOUNT_LIST_FAILURE,
} = require('../../constants/actionTypes').default;
export function requestNextPage() {
return {
type: ACCOUNT_LIST_REQUEST,
}
}
/**
* Success to fetch data..
* @method nextPageOfDataSuccess
* @param {Maybe array} json remote data
* @return {[type]} [description]
*/
export function nextPageOfDataSuccess(json) {
return {
type: ACCOUNT_LIST_SUCCESS,
payload: json,
}
}
export function nextPageOfDataFailure(error) {
return {
type: ACCOUNT_LIST_FAILURE,
payload: error,
}
}
/**
* Request next page of account settlement data list...
* @method nextPageOfDataRequest
* @return {JS Objecrt}
*/
export function nextPageOfDataRequest() {
return dispatch => {
dispatch(requestNextPage());
return new HomeService().accountSettlementData()
.then(json => {
dispatch(nextPageOfDataSuccess(json));
})
.catch(error => {
dispatch(nextPageOfDataFailure(error));
})
};
}