messageActions.js
2.89 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
/**
* # guideActions.js
*
* App user guide
*
*/
'use strict';
import {Actions} from 'react-native-router-flux';
import MessageService from '../../services/MessageService';
import {setDot} from '../device/deviceActions';
const {
MESSAGE_DETAIL,
REQUEST_MSG_LIST,
REQUEST_MSG_LIST_SUCCESS,
REQUEST_MSG_LIST_FAILURE,
BATCH_SET_MSG_IS_READ,
BATCH_SET_MSG_IS_READ_SUCCESS,
BATCH_SET_MSG_IS_READ_FAILURE,
REQUEST_MSG_NUM,
REQUEST_MSG_NUM_SUCCESS,
REQUEST_MSG_NUM_FAILURE,
SHOW_DOT,
} = require('../../constants/actionTypes').default;
export function checkMessageDetail(index) {
Actions.MessageDetail();
return {
type: MESSAGE_DETAIL,
payload: index,
};
}
export function requestMsgList(brandId) {
return {
type: REQUEST_MSG_LIST,
payload: brandId,
}
}
export function requestMsgListSuccess(json) {
return {
type: REQUEST_MSG_LIST_SUCCESS,
payload: json,
}
}
export function requestMsgListFailure(error) {
return {
type: REQUEST_MSG_LIST_FAILURE,
payload: error,
}
}
export function getMsgList(brandId) {
return dispatch => {
dispatch(requestMsgList(brandId));
return new MessageService().getMsgList(brandId)
.then(json => {
dispatch(requestMsgListSuccess(json));
})
.catch(error => {
dispatch(requestMsgListFailure(error));
});
};
}
export function setMsgIsRead(brandId, messageId) {
return dispatch => {
dispatch(batchSetMsgRead());
return new MessageService().setMsgIsRead(brandId, messageId)
.then(json => {
dispatch(requestUnreadMsgNum(brandId, 'N'));
})
.catch(error => {
dispatch(batchSetMsgReadFailure(error));
});
};
}
export function batchSetMsgRead() {
return {
type: BATCH_SET_MSG_IS_READ,
}
}
export function batchSetMsgReadSuccess(json) {
return {
type: BATCH_SET_MSG_IS_READ_SUCCESS,
payload: json,
}
}
export function batchSetMsgReadFailure(error) {
return {
type: BATCH_SET_MSG_IS_READ_FAILURE,
payload: error,
}
}
export function requestUnreadMsgNum(brandId, isRead) {
return dispatch => {
dispatch(requestMsgNum());
return new MessageService().requestUnreadMsgNum(brandId, isRead)
.then(json => {
dispatch(setDot(json > 0));
})
.catch(error => {
dispatch(requestMsgNumFailure(error));
});
};
}
export function requestMsgNum() {
return {
type: REQUEST_MSG_NUM,
}
}
export function requestMsgNumSuccess(json) {
return {
type: REQUEST_MSG_NUM_SUCCESS,
payload: json,
}
}
export function requestMsgNumFailure(error) {
return {
type: REQUEST_MSG_NUM_FAILURE,
payload: error,
}
}