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
use crate;
use crateAppWidget;
use Chromosome;
use Stylize;
use ;
use ;
;
// // --- Generic, data-driven compact charts ---
// //
// // Mirror `LineChartWidget`: plain ratatui `Widget`s over a series of bar heights
// // (e.g. histogram bin counts), with a builder + `From` conveniences. Single
// // color — for per-bar coloring drive the underlying widget directly, as
// // `SpeciesSparklineComponent` does.
// /// A sparkline over a series of values — dense, sub-character bar heights, no
// /// axis chrome. Good for many-bin histograms in a narrow panel.
// pub struct SparklineWidget<'a> {
// data: Vec<u64>,
// color: Color,
// max: Option<u64>,
// direction: RenderDirection,
// block: Option<Block<'a>>,
// }
// impl<'a> SparklineWidget<'a> {
// pub fn new(data: Vec<u64>) -> Self {
// Self {
// data,
// color: Color::LightCyan,
// max: None,
// direction: RenderDirection::LeftToRight,
// block: None,
// }
// }
// pub fn with_color(mut self, color: Color) -> Self {
// self.color = color;
// self
// }
// /// Fix the height scale (defaults to the series max), so several sparklines
// /// can share a common scale.
// pub fn with_max(mut self, max: u64) -> Self {
// self.max = Some(max);
// self
// }
// pub fn with_direction(mut self, direction: RenderDirection) -> Self {
// self.direction = direction;
// self
// }
// pub fn with_block(mut self, block: Block<'a>) -> Self {
// self.block = Some(block);
// self
// }
// pub fn titled(self, title: impl Into<String>) -> Self {
// let block = Block::bordered().title(Line::from(format!(" {} ", title.into())).centered());
// self.with_block(block)
// }
// }
// impl From<Vec<u64>> for SparklineWidget<'_> {
// fn from(data: Vec<u64>) -> Self {
// Self::new(data)
// }
// }
// impl From<&[u64]> for SparklineWidget<'_> {
// fn from(data: &[u64]) -> Self {
// Self::new(data.to_vec())
// }
// }
// impl Widget for SparklineWidget<'_> {
// fn render(self, area: Rect, buf: &mut Buffer) {
// let max = self
// .max
// .unwrap_or_else(|| self.data.iter().copied().max().unwrap_or(1));
// let bars = self
// .data
// .iter()
// .map(|&v| SparklineBar::from(v))
// .collect::<Vec<_>>();
// let mut sparkline = Sparkline::default()
// .data(bars)
// .direction(self.direction)
// .style(Style::default().fg(self.color))
// .max(max);
// if let Some(block) = self.block {
// sparkline = sparkline.block(block);
// }
// sparkline.render(area, buf);
// }
// }
// /// A bar chart over a series of values — wider, optionally value-labeled bars.
// /// Prefer [`SparklineWidget`] for dense histograms; use this when you want a
// /// handful of legible, labeled buckets.
// pub struct BarChartWidget<'a> {
// data: Vec<u64>,
// color: Color,
// max: Option<u64>,
// bar_width: u16,
// bar_gap: u16,
// show_values: bool,
// block: Option<Block<'a>>,
// }
// impl<'a> BarChartWidget<'a> {
// pub fn new(data: Vec<u64>) -> Self {
// Self {
// data,
// color: Color::LightCyan,
// max: None,
// bar_width: 1,
// bar_gap: 0,
// show_values: false,
// block: None,
// }
// }
// pub fn with_color(mut self, color: Color) -> Self {
// self.color = color;
// self
// }
// pub fn with_max(mut self, max: u64) -> Self {
// self.max = Some(max);
// self
// }
// pub fn with_bar_width(mut self, width: u16) -> Self {
// self.bar_width = width.max(1);
// self
// }
// pub fn with_bar_gap(mut self, gap: u16) -> Self {
// self.bar_gap = gap;
// self
// }
// /// Print each bar's value inside it.
// pub fn with_values(mut self, show: bool) -> Self {
// self.show_values = show;
// self
// }
// pub fn with_block(mut self, block: Block<'a>) -> Self {
// self.block = Some(block);
// self
// }
// pub fn titled(self, title: impl Into<String>) -> Self {
// let block = Block::bordered().title(Line::from(format!(" {} ", title.into())).centered());
// self.with_block(block)
// }
// }
// impl From<Vec<u64>> for BarChartWidget<'_> {
// fn from(data: Vec<u64>) -> Self {
// Self::new(data)
// }
// }
// impl From<&[u64]> for BarChartWidget<'_> {
// fn from(data: &[u64]) -> Self {
// Self::new(data.to_vec())
// }
// }
// impl Widget for BarChartWidget<'_> {
// fn render(self, area: Rect, buf: &mut Buffer) {
// let bars = self
// .data
// .iter()
// .map(|&v| {
// let text = if self.show_values {
// v.to_string()
// } else {
// String::new()
// };
// Bar::default()
// .value(v)
// .text_value(text)
// .style(Style::default().fg(self.color))
// })
// .collect::<Vec<_>>();
// let mut chart = BarChart::default()
// .data(BarGroup::default().bars(&bars))
// .bar_width(self.bar_width)
// .bar_gap(self.bar_gap);
// if let Some(max) = self.max {
// chart = chart.max(max);
// }
// if let Some(block) = self.block {
// chart = chart.block(block);
// }
// chart.render(area, buf);
// }
// }