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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
|
import Filt from '../../filt/filt'
import { RequestUtils } from '../../flow/utils'
import reduceView, * as viewActions from '../utils/view'
import * as viewsActions from '../views'
export const UPDATE_FILTER = 'FLOW_VIEWS_MAIN_UPDATE_FILTER'
export const UPDATE_SORT = 'FLOW_VIEWS_MAIN_UPDATE_SORT'
export const UPDATE_HIGHLIGHT = 'FLOW_VIEWS_MAIN_UPDATE_HIGHLIGHT'
export const SELECT = 'FLOW_VIEWS_MAIN_SELECT'
const sortKeyFuns = {
TLSColumn: flow => flow.request.scheme,
PathColumn: flow => RequestUtils.pretty_url(flow.request),
MethodColumn: flow => flow.request.method,
StatusColumn: flow => flow.response && flow.response.status_code,
TimeColumn: flow => flow.response && flow.response.timestamp_end - flow.request.timestamp_start,
SizeColumn: flow => {
let total = flow.request.contentLength
if (flow.response) {
total += flow.response.contentLength || 0
}
return total
},
}
const defaultState = {
highlight: null,
selected: [],
filter: null,
sort: { column: null, desc: false },
view: undefined,
}
export default function reduce(state = defaultState, action) {
switch (action.type) {
case UPDATE_HIGHLIGHT:
return {
...state,
highlight: action.highlight,
}
case SELECT:
return {
...state,
selected: [action.id]
}
case UPDATE_FILTER:
return {
...state,
filter: action.filter,
view: reduceView(
state.view,
viewActions.updateFilter(
action.list,
makeFilter(action.filter),
makeSort(state.sort)
)
),
}
case UPDATE_SORT:
const sort = { column: action.column, desc: action.desc }
return {
...state,
sort,
view: reduceView(
state.view,
viewActions.updateSort(
makeSort(sort)
)
),
}
case viewsActions.ADD:
return {
...state,
view: reduceView(
state.view,
viewActions.add(
action.item,
makeFilter(state.filter),
makeSort(state.sort)
)
),
}
case viewsActions.UPDATE:
return {
...state,
view: reduceView(
state.view,
viewActions.update(
action.id,
action.item,
makeFilter(state.filter),
makeSort(state.sort)
)
),
}
case viewsActions.REMOVE:
return {
...state,
view: reduceView(
state.view,
viewActions.remove(
action.id
)
),
}
case viewsActions.RECEIVE:
return {
...state,
view: reduceView(
state.view,
viewActions.receive(
action.list,
makeFilter(state.filter),
makeSort(state.sort)
)
),
}
default:
return {
...state,
view: reduceView(state.view, action)
}
}
}
/**
* @public
*/
export function updateFilter(filter) {
return (dispatch, getState) => {
dispatch({ type: UPDATE_FILTER, filter, list: getState().flows.list })
}
}
/**
* @public
*/
export function updateHighlight(highlight) {
return { type: UPDATE_HIGHLIGHT, highlight }
}
/**
* @public
*/
export function updateSort(column, desc) {
return { type: UPDATE_SORT, column, desc }
}
/**
* @public
*/
export function select(id) {
return (dispatch, getState) => {
dispatch({ type: SELECT, currentSelection: getState().flows.views.main.selected[0], id })
}
}
/**
* @public
*/
export function selectRelative(shift) {
return (dispatch, getState) => {
let currentSelection = getState().flows.views.main.selected[0]
let id
if (shift === null){
id = null
} else if (!currentSelection) {
id = (action.shift < 0) ? 0 : state.view.data.length - 1
} else {
id = state.view.indexOf[currentSelection] + action.shift
id = Math.max(id, 0)
id = Math.min(id, state.view.data.length - 1)
}
dispatch({ type: SELECT, currentSelection, id })
}
}
/**
* @private
*/
function makeFilter(filter) {
if (!filter) {
return
}
return Filt.parse(filter)
}
/**
* @private
*/
function makeSort({ column, desc }) {
const sortKeyFun = sortKeyFuns[column]
if (!sortKeyFun) {
return
}
return (a, b) => {
const ka = sortKeyFun(a)
const kb = sortKeyFun(b)
if (ka > kb) {
return desc ? -1 : 1
}
if (ka < kb) {
return desc ? 1 : -1
}
return 0
}
}
|