import React, { Component } from "react" import PropTypes from 'prop-types' import { connect } from "react-redux" import FilterInput from "./FilterInput" import { update as updateSettings } from "../../ducks/settings" import { setFilter, setHighlight } from "../../ducks/flows" MainMenu.title = "Start" export default function MainMenu() { return (
) } const InterceptInput = connect( state => ({ value: state.settings.intercept || '', placeholder: 'Intercept', type: 'pause', color: 'hsl(208, 56%, 53%)' }), { onChange: intercept => updateSettings({ intercept }) } )(FilterInput); const FlowFilterInput = connect( state => ({ value: state.flows.filter || '', placeholder: 'Search', type: 'search', color: 'black' }), { onChange: setFilter } )(FilterInput); const HighlightInput = connect( state => ({ value: state.flows.highlight || '', placeholder: 'Highlight', type: 'tag', color: 'hsl(48, 100%, 50%)' }), { onChange: setHighlight } )(FilterInput); e='staging-4.2'>staging-4.2 xenJames
aboutsummaryrefslogtreecommitdiffstats
path: root/tools/xenmon/Makefile
blob: c1f4cd3f4675a196b1fe4a5d8aebec506e944c9c (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