-
Notifications
You must be signed in to change notification settings - Fork 46
/
actions.js
93 lines (79 loc) · 1.69 KB
/
actions.js
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
export const PUSH = 'PUSH';
export const POP = 'POP';
export const DISMISS = 'DISMISS';
export const RESET = 'RESET'
export const INIT = 'INIT'
export const CUSTOM = 'CUSTOM'
export const REPLACE = 'REPLACE'
export const SELECT = 'SELECT'
function filterParam(data){
if (typeof(data)!='object')
return data;
if (!data){
return;
}
var proto = (data||{}).constructor.name;
// avoid passing React Native parameters
if (proto != 'Object'){
data = {};
}
if (data.data){
data.data = filterParam(data.data);
}
return data;
}
let CoreActions = {
push: function(data) {
return {
... filterParam(data),
type: PUSH
}
},
pop: function(data = {}) {
return {
... filterParam(data),
type: POP
}
},
dismiss: function(data) {
return {
... filterParam(data),
type: DISMISS
}
},
reset: function(initial) {
if (!initial) {
throw new Error("Param should be non-empty");
}
return {
initial,
type: RESET
}
},
init: function(initial) {
return {
initial,
type: INIT
}
},
custom: function(data) {
return {
... filterParam(data),
type: CUSTOM
}
},
replace: function(data) {
return {
... filterParam(data),
type: REPLACE
}
},
select: function(data) {
return {
... filterParam(data),
type: SELECT
}
}
}
let Actions = {... CoreActions}
export {CoreActions, Actions};