import React, { Component } from 'react' import { connect } from 'react-redux' import _ from 'lodash' import Nav from './FlowView/Nav' import { ErrorView as Error, Request, Response } from './FlowView/Messages' import Details from './FlowView/Details' import { selectTab } from '../ducks/ui/flow' export const allTabs = { Request, Response, Error, Details } function FlowView({ flow, tabName, selectTab }) { // only display available tab names const tabs = ['request', 'response', 'error'].filter(k => flow[k]) tabs.push("details") if (tabs.indexOf(tabName) < 0) { if (tabName === 'response' && flow.error) { tabName = 'error' } else if (tabName === 'error' && flow.response) { tabName = 'response' } else { tabName = tabs[0] } } const Tab = allTabs[_.capitalize(tabName)] return (
) } export default connect( state => ({ flow: state.flows.byId[state.flows.selected[0]], tabName: state.ui.flow.tab, }), { selectTab, } )(FlowView) email/mitmproxy/about/'>aboutsummaryrefslogtreecommitdiffstats
path: root/web/src/js/components/FlowView.jsx
blob: 72cffdfe98e38858842d644d56b63915da19b07f (plain)
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