-
-
Notifications
You must be signed in to change notification settings - Fork 85
/
Copy pathkey_binding.rs
339 lines (327 loc) · 7.44 KB
/
key_binding.rs
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
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
use std::fmt;
use crate::event::Key;
// using a macro so that we can automatically generate an iterable vector for bindings. This beats reflection :)
macro_rules! generate_keybindings {
($($field:ident),+) => {
pub struct KeyBindings { $(pub $field: KeyBinding),+ }
impl KeyBindings {
pub fn as_iter(&self) -> Vec<&KeyBinding> {
vec![
$(&self.$field),+
]
}
}
};
}
generate_keybindings! {
// order here is shown as is in Help
quit,
esc,
help,
submit,
refresh,
toggle_theme,
cycle_main_views,
jump_to_current_context,
jump_to_all_context,
jump_to_utilization,
copy_to_clipboard,
pg_up,
pg_down,
up,
down,
left,
right,
toggle_info,
toggle_global_filter,
toggle_global_filter_edit,
log_auto_scroll,
select_all_namespace,
jump_to_namespace,
describe_resource,
resource_yaml,
decode_secret,
jump_to_pods,
jump_to_services,
jump_to_nodes,
jump_to_configmaps,
jump_to_statefulsets,
jump_to_replicasets,
jump_to_deployments,
jump_to_jobs,
jump_to_daemonsets,
jump_to_more_resources,
jump_to_dynamic_resources,
cycle_group_by
}
#[derive(PartialEq, Eq, Clone, Copy, Hash, Debug)]
pub enum HContext {
General,
Overview,
Utilization,
}
impl fmt::Display for HContext {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "{:?}", self)
}
}
#[derive(Clone)]
pub struct KeyBinding {
pub key: Key,
pub alt: Option<Key>,
pub desc: &'static str,
pub context: HContext,
}
pub const DEFAULT_KEYBINDING: KeyBindings = KeyBindings {
quit: KeyBinding {
key: Key::Ctrl('c'),
alt: Some(Key::Char('q')),
desc: "Quit",
context: HContext::General,
},
esc: KeyBinding {
key: Key::Esc,
alt: None,
desc: "Close child page/Go back",
context: HContext::General,
},
help: KeyBinding {
key: Key::Char('?'),
alt: None,
desc: "Help page",
context: HContext::General,
},
submit: KeyBinding {
key: Key::Enter,
alt: None,
desc: "Select table row",
context: HContext::General,
},
refresh: KeyBinding {
key: Key::Ctrl('r'),
alt: None,
desc: "Refresh data",
context: HContext::General,
},
toggle_theme: KeyBinding {
key: Key::Char('t'),
alt: None,
desc: "Toggle theme",
context: HContext::General,
},
jump_to_current_context: KeyBinding {
key: Key::Char('A'),
alt: None,
desc: "Switch to active context view",
context: HContext::General,
},
jump_to_all_context: KeyBinding {
key: Key::Char('C'),
alt: None,
desc: "Switch to all contexts view",
context: HContext::General,
},
jump_to_utilization: KeyBinding {
key: Key::Char('U'),
alt: None,
desc: "Switch to resource utilization view",
context: HContext::General,
},
cycle_main_views: KeyBinding {
key: Key::Tab,
alt: None,
desc: "Cycle through main views",
context: HContext::General,
},
copy_to_clipboard: KeyBinding {
key: Key::Char('c'),
alt: None,
desc: "Copy log/output to clipboard",
context: HContext::General,
},
down: KeyBinding {
key: Key::Down,
alt: Some(Key::Char('j')),
desc: "Next row/Scroll down",
context: HContext::General,
},
up: KeyBinding {
key: Key::Up,
alt: Some(Key::Char('k')),
desc: "Previous row/Scroll up",
context: HContext::General,
},
pg_up: KeyBinding {
key: Key::PageUp,
alt: None,
desc: "Scroll page up",
context: HContext::General,
},
pg_down: KeyBinding {
key: Key::PageDown,
alt: None,
desc: "Scroll page down",
context: HContext::General,
},
left: KeyBinding {
key: Key::Left,
alt: Some(Key::Char('h')),
desc: "Next resource tab",
context: HContext::Overview,
},
right: KeyBinding {
key: Key::Right,
alt: Some(Key::Char('l')),
desc: "Previous resource tab",
context: HContext::Overview,
},
toggle_info: KeyBinding {
key: Key::Char('i'),
alt: None,
desc: "Show/Hide info bar",
context: HContext::Overview,
},
log_auto_scroll: KeyBinding {
key: Key::Char('s'),
alt: None,
desc: "Toggle log auto scroll",
context: HContext::Overview,
},
jump_to_namespace: KeyBinding {
key: Key::Char('n'),
alt: None,
desc: "Select namespace block",
context: HContext::Overview,
},
select_all_namespace: KeyBinding {
key: Key::Char('a'),
alt: None,
desc: "Select all namespaces",
context: HContext::Overview,
},
describe_resource: KeyBinding {
key: Key::Char('d'),
alt: None,
desc: "Describe resource",
context: HContext::Overview,
},
resource_yaml: KeyBinding {
key: Key::Char('y'),
alt: None,
desc: "Get resource YAML",
context: HContext::Overview,
},
decode_secret: KeyBinding {
key: Key::Char('x'),
alt: None,
desc: "Decode secret",
context: HContext::Overview,
},
jump_to_pods: KeyBinding {
key: Key::Char('1'),
alt: None,
desc: "Select pods tab",
context: HContext::Overview,
},
jump_to_services: KeyBinding {
key: Key::Char('2'),
alt: None,
desc: "Select services tab",
context: HContext::Overview,
},
jump_to_nodes: KeyBinding {
key: Key::Char('3'),
alt: None,
desc: "Select nodes tab",
context: HContext::Overview,
},
jump_to_configmaps: KeyBinding {
key: Key::Char('4'),
alt: None,
desc: "Select configmaps tab",
context: HContext::Overview,
},
jump_to_statefulsets: KeyBinding {
key: Key::Char('5'),
alt: None,
desc: "Select replicasets tab",
context: HContext::Overview,
},
jump_to_replicasets: KeyBinding {
key: Key::Char('6'),
alt: None,
desc: "Select statefulsets tab",
context: HContext::Overview,
},
jump_to_deployments: KeyBinding {
key: Key::Char('7'),
alt: None,
desc: "Select deployments tab",
context: HContext::Overview,
},
jump_to_jobs: KeyBinding {
key: Key::Char('8'),
alt: None,
desc: "Select jobs tab",
context: HContext::Overview,
},
jump_to_daemonsets: KeyBinding {
key: Key::Char('9'),
alt: None,
desc: "Select daemon sets tab",
context: HContext::Overview,
},
jump_to_more_resources: KeyBinding {
key: Key::Char('0'),
alt: None,
desc: "Select more resources",
context: HContext::Overview,
},
jump_to_dynamic_resources: KeyBinding {
key: Key::Char('-'),
alt: None,
desc: "Select dynamic resources",
context: HContext::Overview,
},
cycle_group_by: KeyBinding {
key: Key::Char('g'),
alt: None,
desc: "Cycle through grouping",
context: HContext::Utilization,
},
toggle_global_filter: KeyBinding {
key: Key::Char('f'),
alt: None,
desc: "Toggle global filtering by resource name (supports glob patterns)",
context: HContext::Overview,
},
toggle_global_filter_edit: KeyBinding {
key: Key::Char('e'),
alt: None,
desc: "Enable global filtering edit mode",
context: HContext::Overview,
},
};
pub fn get_help_docs() -> Vec<Vec<String>> {
let items = DEFAULT_KEYBINDING.as_iter();
items.iter().map(|it| help_row(it)).collect()
}
fn help_row(item: &KeyBinding) -> Vec<String> {
vec![
if item.alt.is_some() {
format!("{} | {}", item.key, item.alt.unwrap())
} else {
item.key.to_string()
},
String::from(item.desc),
item.context.to_string(),
]
}
#[cfg(test)]
mod tests {
use super::DEFAULT_KEYBINDING;
#[test]
fn test_as_iter() {
assert!(DEFAULT_KEYBINDING.as_iter().len() >= 28);
}
}