forked from WizardOhio24/gitui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcommitlist.rs
415 lines (356 loc) · 10.8 KB
/
commitlist.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
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
use super::utils::logitems::{ItemBatch, LogEntry};
use crate::{
components::{
utils::string_width_align, CommandBlocking, CommandInfo,
Component, DrawableComponent, EventState, ScrollType,
},
keys::SharedKeyConfig,
strings,
ui::calc_scroll_top,
ui::style::{SharedTheme, Theme},
};
use anyhow::Result;
use asyncgit::sync::Tags;
use chrono::{DateTime, Local};
use crossterm::event::Event;
use std::{
borrow::Cow, cell::Cell, cmp, convert::TryFrom, time::Instant,
};
use tui::{
backend::Backend,
layout::{Alignment, Rect},
text::{Span, Spans},
widgets::{Block, Borders, Paragraph},
Frame,
};
const ELEMENTS_PER_LINE: usize = 10;
///
pub struct CommitList {
title: String,
selection: usize,
branch: Option<String>,
count_total: usize,
items: ItemBatch,
scroll_state: (Instant, f32),
tags: Option<Tags>,
current_size: Cell<(u16, u16)>,
scroll_top: Cell<usize>,
theme: SharedTheme,
key_config: SharedKeyConfig,
}
impl CommitList {
///
pub fn new(
title: &str,
theme: SharedTheme,
key_config: SharedKeyConfig,
) -> Self {
Self {
items: ItemBatch::default(),
selection: 0,
branch: None,
count_total: 0,
scroll_state: (Instant::now(), 0_f32),
tags: None,
current_size: Cell::new((0, 0)),
scroll_top: Cell::new(0),
theme,
key_config,
title: String::from(title),
}
}
///
pub fn items(&mut self) -> &mut ItemBatch {
&mut self.items
}
///
pub fn set_branch(&mut self, name: Option<String>) {
self.branch = name;
}
///
pub const fn selection(&self) -> usize {
self.selection
}
///
pub fn current_size(&self) -> (u16, u16) {
self.current_size.get()
}
///
pub fn set_total_count(&mut self, count: usize) {
self.count_total = count;
self.selection =
cmp::min(self.selection, self.selection_max());
}
///
#[allow(clippy::missing_const_for_fn)]
pub fn selection_max(&self) -> usize {
self.count_total.saturating_sub(1)
}
///
pub const fn tags(&self) -> Option<&Tags> {
self.tags.as_ref()
}
///
pub fn clear(&mut self) {
self.items.clear();
}
///
pub fn set_tags(&mut self, tags: Tags) {
self.tags = Some(tags);
}
///
pub fn selected_entry(&self) -> Option<&LogEntry> {
self.items.iter().nth(
self.selection.saturating_sub(self.items.index_offset()),
)
}
pub fn copy_entry_hash(&self) -> Result<()> {
if let Some(e) = self.items.iter().nth(
self.selection.saturating_sub(self.items.index_offset()),
) {
crate::clipboard::copy_string(&e.hash_short)?;
}
Ok(())
}
fn move_selection(&mut self, scroll: ScrollType) -> Result<bool> {
self.update_scroll_speed();
#[allow(clippy::cast_possible_truncation)]
let speed_int =
usize::try_from(self.scroll_state.1 as i64)?.max(1);
let page_offset =
usize::from(self.current_size.get().1).saturating_sub(1);
let new_selection = match scroll {
ScrollType::Up => {
self.selection.saturating_sub(speed_int)
}
ScrollType::Down => {
self.selection.saturating_add(speed_int)
}
ScrollType::PageUp => {
self.selection.saturating_sub(page_offset)
}
ScrollType::PageDown => {
self.selection.saturating_add(page_offset)
}
ScrollType::Home => 0,
ScrollType::End => self.selection_max(),
};
let new_selection =
cmp::min(new_selection, self.selection_max());
let needs_update = new_selection != self.selection;
self.selection = new_selection;
Ok(needs_update)
}
fn update_scroll_speed(&mut self) {
const REPEATED_SCROLL_THRESHOLD_MILLIS: u128 = 300;
const SCROLL_SPEED_START: f32 = 0.1_f32;
const SCROLL_SPEED_MAX: f32 = 10_f32;
const SCROLL_SPEED_MULTIPLIER: f32 = 1.05_f32;
let now = Instant::now();
let since_last_scroll =
now.duration_since(self.scroll_state.0);
self.scroll_state.0 = now;
let speed = if since_last_scroll.as_millis()
< REPEATED_SCROLL_THRESHOLD_MILLIS
{
self.scroll_state.1 * SCROLL_SPEED_MULTIPLIER
} else {
SCROLL_SPEED_START
};
self.scroll_state.1 = speed.min(SCROLL_SPEED_MAX);
}
fn get_entry_to_add<'a>(
e: &'a LogEntry,
selected: bool,
tags: Option<String>,
theme: &Theme,
width: usize,
now: DateTime<Local>,
) -> Spans<'a> {
let mut txt: Vec<Span> = Vec::new();
txt.reserve(ELEMENTS_PER_LINE);
let splitter_txt = Cow::from(" ");
let splitter =
Span::styled(splitter_txt, theme.text(true, selected));
// commit hash
txt.push(Span::styled(
Cow::from(e.hash_short.as_str()),
theme.commit_hash(selected),
));
txt.push(splitter.clone());
// commit timestamp
txt.push(Span::styled(
Cow::from(e.time_to_string(now)),
theme.commit_time(selected),
));
txt.push(splitter.clone());
let author_width =
(width.saturating_sub(19) / 3).max(3).min(20);
let author = string_width_align(&e.author, author_width);
// commit author
txt.push(Span::styled::<String>(
author,
theme.commit_author(selected),
));
txt.push(splitter.clone());
// commit tags
txt.push(Span::styled(
Cow::from(if let Some(tags) = tags {
format!(" {}", tags)
} else {
String::from("")
}),
theme.tags(selected),
));
txt.push(splitter);
// commit msg
txt.push(Span::styled(
Cow::from(e.msg.as_str()),
theme.text(true, selected),
));
Spans::from(txt)
}
fn get_text(&self, height: usize, width: usize) -> Vec<Spans> {
let selection = self.relative_selection();
let mut txt: Vec<Spans> = Vec::with_capacity(height);
let now = Local::now();
for (idx, e) in self
.items
.iter()
.skip(self.scroll_top.get())
.take(height)
.enumerate()
{
let tags = self
.tags
.as_ref()
.and_then(|t| t.get(&e.id))
.map(|tags| tags.join(" "));
txt.push(Self::get_entry_to_add(
e,
idx + self.scroll_top.get() == selection,
tags,
&self.theme,
width,
now,
));
}
txt
}
#[allow(clippy::missing_const_for_fn)]
fn relative_selection(&self) -> usize {
self.selection.saturating_sub(self.items.index_offset())
}
}
impl DrawableComponent for CommitList {
fn draw<B: Backend>(
&self,
f: &mut Frame<B>,
area: Rect,
) -> Result<()> {
let current_size = (
area.width.saturating_sub(2),
area.height.saturating_sub(2),
);
self.current_size.set(current_size);
let height_in_lines = self.current_size.get().1 as usize;
let selection = self.relative_selection();
self.scroll_top.set(calc_scroll_top(
self.scroll_top.get(),
height_in_lines,
selection,
));
let branch_post_fix =
self.branch.as_ref().map(|b| format!("- {{{}}}", b));
let title = format!(
"{} {}/{} {}",
self.title,
self.count_total.saturating_sub(self.selection),
self.count_total,
branch_post_fix.as_deref().unwrap_or(""),
);
f.render_widget(
Paragraph::new(
self.get_text(
height_in_lines,
current_size.0 as usize,
),
)
.block(
Block::default()
.borders(Borders::ALL)
.title(Span::styled(
title.as_str(),
self.theme.title(true),
))
.border_style(self.theme.block(true)),
)
.alignment(Alignment::Left),
area,
);
Ok(())
}
}
impl Component for CommitList {
fn event(&mut self, ev: Event) -> Result<EventState> {
if let Event::Key(k) = ev {
let selection_changed = if k == self.key_config.move_up {
self.move_selection(ScrollType::Up)?
} else if k == self.key_config.move_down {
self.move_selection(ScrollType::Down)?
} else if k == self.key_config.shift_up
|| k == self.key_config.home
{
self.move_selection(ScrollType::Home)?
} else if k == self.key_config.shift_down
|| k == self.key_config.end
{
self.move_selection(ScrollType::End)?
} else if k == self.key_config.page_up {
self.move_selection(ScrollType::PageUp)?
} else if k == self.key_config.page_down {
self.move_selection(ScrollType::PageDown)?
} else {
false
};
return Ok(selection_changed.into());
}
Ok(EventState::NotConsumed)
}
fn commands(
&self,
out: &mut Vec<CommandInfo>,
_force_all: bool,
) -> CommandBlocking {
out.push(CommandInfo::new(
strings::commands::scroll(&self.key_config),
self.selected_entry().is_some(),
true,
));
CommandBlocking::PassingOn
}
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_string_width_align() {
assert_eq!(string_width_align("123", 3), "123");
assert_eq!(string_width_align("123", 2), "..");
assert_eq!(string_width_align("123", 3), "123");
assert_eq!(string_width_align("12345", 6), "12345 ");
assert_eq!(string_width_align("1234556", 4), "12..");
}
#[test]
fn test_string_width_align_unicode() {
assert_eq!(string_width_align("äste", 3), "ä..");
assert_eq!(
string_width_align("wüsten äste", 10),
"wüsten ä.."
);
assert_eq!(
string_width_align("Jon Grythe Stødle", 19),
"Jon Grythe Stødle "
);
}
}