meli/ui/src/components/mail/listing/compact.rs

527 lines
19 KiB
Rust
Raw Normal View History

2018-08-07 15:01:15 +03:00
/*
* meli - ui crate.
*
* Copyright 2017-2018 Manos Pitsidianakis
*
* This file is part of meli.
*
* meli is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* meli is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with meli. If not, see <http://www.gnu.org/licenses/>.
*/
use super::*;
use components::utilities::PageMovement;
//use melib::mailbox::backends::BackendOp;
2018-07-14 15:04:42 +03:00
const MAX_COLS: usize = 500;
2018-07-11 17:07:51 +03:00
/// A list of all mail (`Envelope`s) in a `Mailbox`. On `\n` it opens the `Envelope` content in a
/// `ThreadView`.
#[derive(Debug)]
pub struct CompactListing {
/// (x, y, z): x is accounts, y is folders, z is index inside a folder.
cursor_pos: (usize, usize, usize),
new_cursor_pos: (usize, usize, usize),
2018-07-11 17:07:51 +03:00
length: usize,
sort: (SortField, SortOrder),
subsort: (SortField, SortOrder),
/// Cache current view.
2018-07-11 17:07:51 +03:00
content: CellBuffer,
/// If we must redraw on next redraw event
2018-07-11 17:07:51 +03:00
dirty: bool,
/// If `self.view` exists or not.
2018-07-11 17:07:51 +03:00
unfocused: bool,
view: Option<ThreadView>,
movement: Option<PageMovement>,
2018-07-11 17:07:51 +03:00
}
impl Default for CompactListing {
2018-08-07 15:01:15 +03:00
fn default() -> Self {
Self::new()
}
}
impl fmt::Display for CompactListing {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "mail")
}
}
impl CompactListing {
/// Helper function to format entry strings for CompactListing */
/* TODO: Make this configurable */
fn make_entry_string(e: &Envelope, len: usize, idx: usize) -> String {
2018-10-14 19:49:16 +03:00
if len > 0 {
format!(
"{} {} {:.85} ({})",
idx,
&CompactListing::format_date(e),
e.subject(),
len
2018-08-23 15:36:52 +03:00
)
} else {
format!(
"{} {} {:.85}",
idx,
&CompactListing::format_date(e),
e.subject(),
2018-08-23 15:36:52 +03:00
)
}
}
pub fn new() -> Self {
let content = CellBuffer::new(0, 0, Cell::with_char(' '));
CompactListing {
cursor_pos: (0, 1, 0),
new_cursor_pos: (0, 0, 0),
2018-07-15 15:35:57 +03:00
length: 0,
sort: (Default::default(), Default::default()),
subsort: (SortField::Date, SortOrder::Desc),
2018-08-23 15:36:52 +03:00
content,
2018-07-14 15:04:42 +03:00
dirty: true,
2018-07-11 17:07:51 +03:00
unfocused: false,
view: None,
movement: None,
}
2018-07-11 17:07:51 +03:00
}
/// Fill the `self.content` `CellBuffer` with the contents of the account folder the user has
/// chosen.
fn refresh_mailbox(&mut self, context: &mut Context) {
2018-07-15 15:35:57 +03:00
self.dirty = true;
2018-10-14 19:49:16 +03:00
if !(self.cursor_pos.0 == self.new_cursor_pos.0
&& self.cursor_pos.1 == self.new_cursor_pos.1)
{
//TODO: store cursor_pos in each folder
self.cursor_pos.2 = 0;
self.new_cursor_pos.2 = 0;
}
self.cursor_pos.1 = self.new_cursor_pos.1;
self.cursor_pos.0 = self.new_cursor_pos.0;
// Inform State that we changed the current folder view.
2018-07-27 21:37:56 +03:00
context.replies.push_back(UIEvent {
id: 0,
event_type: UIEventType::RefreshMailbox((self.cursor_pos.0, self.cursor_pos.1)),
});
2018-08-03 13:46:08 +03:00
// Get mailbox as a reference.
//
match context.accounts[self.cursor_pos.0].status(self.cursor_pos.1) {
Ok(_) => {}
Err(_) => {
self.content = CellBuffer::new(MAX_COLS, 1, Cell::with_char(' '));
self.length = 0;
write_string_to_grid(
"Loading.",
&mut self.content,
Color::Default,
Color::Default,
((0, 0), (MAX_COLS - 1, 0)),
2018-10-14 19:49:16 +03:00
false,
);
return;
2018-08-03 13:46:08 +03:00
}
}
let mailbox = &context.accounts[self.cursor_pos.0][self.cursor_pos.1]
2018-08-03 13:46:08 +03:00
.as_ref()
.unwrap();
self.length = mailbox.collection.threads.root_len();
self.content = CellBuffer::new(MAX_COLS, self.length + 1, Cell::with_char(' '));
2018-07-11 17:07:51 +03:00
if self.length == 0 {
2018-07-27 21:37:56 +03:00
write_string_to_grid(
&format!("Folder `{}` is empty.", mailbox.folder.name()),
&mut self.content,
2018-07-27 21:37:56 +03:00
Color::Default,
Color::Default,
((0, 0), (MAX_COLS - 1, 0)),
2018-10-14 19:49:16 +03:00
false,
2018-08-07 15:01:15 +03:00
);
2018-07-11 17:07:51 +03:00
return;
}
2018-09-06 13:05:35 +03:00
let threads = &mailbox.collection.threads;
threads.sort_by(self.sort, self.subsort, &mailbox.collection);
for (idx, root_idx) in threads.root_iter().enumerate() {
let thread_node = &threads.thread_nodes()[root_idx];
2018-09-06 13:05:35 +03:00
let i = if let Some(i) = thread_node.message() {
i
} else {
let mut iter_ptr = thread_node.children()[0];
while threads.thread_nodes()[iter_ptr].message().is_none() {
iter_ptr = threads.thread_nodes()[iter_ptr].children()[0];
}
threads.thread_nodes()[iter_ptr].message().unwrap()
};
if !mailbox.collection.contains_key(&i) {
eprintln!("key = {}", i);
eprintln!(
"name = {} {}",
mailbox.name(),
context.accounts[self.cursor_pos.0].name()
);
eprintln!("{:#?}", context.accounts);
panic!();
}
2018-09-06 13:05:35 +03:00
let root_envelope: &Envelope = &mailbox.collection[&i];
let fg_color = if thread_node.has_unseen() {
Color::Byte(0)
} else {
Color::Default
};
2018-09-06 13:05:35 +03:00
let bg_color = if thread_node.has_unseen() {
Color::Byte(251)
} else if idx % 2 == 0 {
Color::Byte(236)
} else {
Color::Default
};
let (x, _) = write_string_to_grid(
2018-09-06 13:05:35 +03:00
&CompactListing::make_entry_string(root_envelope, thread_node.len(), idx),
&mut self.content,
fg_color,
bg_color,
((0, idx), (MAX_COLS - 1, idx)),
false,
2018-08-23 15:36:52 +03:00
);
for x in x..MAX_COLS {
self.content[(x, idx)].set_ch(' ');
self.content[(x, idx)].set_bg(bg_color);
2018-07-15 15:35:57 +03:00
}
}
}
fn highlight_line(&self, grid: &mut CellBuffer, area: Area, idx: usize, context: &Context) {
if idx == self.cursor_pos.2 {
let mailbox = &context.accounts[self.cursor_pos.0][self.cursor_pos.1]
.as_ref()
.unwrap();
if mailbox.is_empty() {
2018-10-14 19:49:16 +03:00
return;
}
2018-09-06 13:05:35 +03:00
let threads = &mailbox.collection.threads;
let thread_node = threads.root_set(idx);
2018-09-06 13:05:35 +03:00
let thread_node = &threads.thread_nodes()[thread_node];
let i = if let Some(i) = thread_node.message() {
i
} else {
let mut iter_ptr = thread_node.children()[0];
while threads.thread_nodes()[iter_ptr].message().is_none() {
iter_ptr = threads.thread_nodes()[iter_ptr].children()[0];
}
threads.thread_nodes()[iter_ptr].message().unwrap()
};
2018-10-14 19:49:16 +03:00
2018-09-06 13:05:35 +03:00
let root_envelope: &Envelope = &mailbox.collection[&i];
let fg_color = if !root_envelope.is_seen() {
Color::Byte(0)
} else {
Color::Default
};
let bg_color = if self.cursor_pos.2 == idx {
Color::Byte(246)
} else if !root_envelope.is_seen() {
Color::Byte(251)
} else if idx % 2 == 0 {
Color::Byte(236)
} else {
Color::Default
};
change_colors(grid, area, fg_color, bg_color);
return;
}
let (width, height) = self.content.size();
copy_area(
grid,
&self.content,
area,
((0, idx), (width - 1, height - 1)),
);
2018-07-15 15:35:57 +03:00
}
/// Draw the list of `Envelope`s.
2018-07-15 15:35:57 +03:00
fn draw_list(&mut self, grid: &mut CellBuffer, area: Area, context: &mut Context) {
if self.cursor_pos.1 != self.new_cursor_pos.1 {
self.refresh_mailbox(context);
}
2018-07-15 15:35:57 +03:00
let upper_left = upper_left!(area);
let bottom_right = bottom_right!(area);
if self.length == 0 {
clear_area(grid, area);
2018-10-14 19:49:16 +03:00
copy_area(
grid,
&self.content,
area,
((0, 0), (MAX_COLS - 1, self.length)),
);
2018-07-15 15:35:57 +03:00
context.dirty_areas.push_back(area);
return;
}
let rows = get_y(bottom_right) - get_y(upper_left) + 1;
if let Some(mvm) = self.movement.take() {
match mvm {
PageMovement::PageUp => {
self.new_cursor_pos.2 = self.new_cursor_pos.2.saturating_sub(rows);
}
PageMovement::PageDown => {
/* This might "overflow" beyond the max_cursor_pos boundary if it's not yet
* set. TODO: Rework the page up/down stuff
*/
if self.new_cursor_pos.2 + 2 * rows + 1 < self.length {
self.new_cursor_pos.2 += rows;
} else {
self.new_cursor_pos.2 = self.length.saturating_sub(rows).saturating_sub(1);
}
}
}
}
let prev_page_no = (self.cursor_pos.2).wrapping_div(rows);
let page_no = (self.new_cursor_pos.2).wrapping_div(rows);
2018-07-15 15:35:57 +03:00
2018-07-27 21:37:56 +03:00
let top_idx = page_no * rows;
2018-07-15 15:35:57 +03:00
/* If cursor position has changed, remove the highlight from the previous position and
* apply it in the new one. */
if self.cursor_pos.2 != self.new_cursor_pos.2 && prev_page_no == page_no {
2018-07-15 15:35:57 +03:00
let old_cursor_pos = self.cursor_pos;
self.cursor_pos = self.new_cursor_pos;
2018-08-07 15:01:15 +03:00
for idx in &[old_cursor_pos.2, self.new_cursor_pos.2] {
2018-07-15 15:35:57 +03:00
if *idx >= self.length {
continue; //bounds check
2018-07-11 17:07:51 +03:00
}
2018-07-27 21:37:56 +03:00
let new_area = (
set_y(upper_left, get_y(upper_left) + (*idx % rows)),
set_y(bottom_right, get_y(upper_left) + (*idx % rows)),
);
self.highlight_line(grid, new_area, *idx, context);
2018-07-14 15:04:42 +03:00
context.dirty_areas.push_back(new_area);
2018-07-11 17:07:51 +03:00
}
return;
2018-07-27 21:37:56 +03:00
} else if self.cursor_pos != self.new_cursor_pos {
self.cursor_pos = self.new_cursor_pos;
2018-07-11 17:07:51 +03:00
}
if self.new_cursor_pos.2 >= self.length {
self.new_cursor_pos.2 = self.length - 1;
self.cursor_pos.2 = self.new_cursor_pos.2;
}
2018-07-11 17:07:51 +03:00
/* Page_no has changed, so draw new page */
2018-07-27 21:37:56 +03:00
copy_area(
grid,
&self.content,
area,
((0, top_idx), (MAX_COLS - 1, self.length)),
);
self.highlight_line(
grid,
(
set_y(upper_left, get_y(upper_left) + (self.cursor_pos.2 % rows)),
set_y(bottom_right, get_y(upper_left) + (self.cursor_pos.2 % rows)),
),
self.cursor_pos.2,
context,
);
2018-07-14 15:04:42 +03:00
context.dirty_areas.push_back(area);
2018-07-11 17:07:51 +03:00
}
fn format_date(envelope: &Envelope) -> String {
let d = std::time::UNIX_EPOCH + std::time::Duration::from_secs(envelope.date());
let now: std::time::Duration = std::time::SystemTime::now().duration_since(d).unwrap_or_else(|_| std::time::Duration::new(std::u64::MAX, 0));
match now.as_secs() {
2018-07-27 21:37:56 +03:00
n if n < 10 * 60 * 60 => format!("{} hours ago{}", n / (60 * 60), " ".repeat(8)),
n if n < 24 * 60 * 60 => format!("{} hours ago{}", n / (60 * 60), " ".repeat(7)),
n if n < 4 * 24 * 60 * 60 => {
format!("{} days ago{}", n / (24 * 60 * 60), " ".repeat(9))
}
_ => envelope.datetime().format("%Y-%m-%d %H:%M:%S").to_string(),
}
}
2018-07-11 17:07:51 +03:00
}
impl Component for CompactListing {
2018-07-14 15:04:42 +03:00
fn draw(&mut self, grid: &mut CellBuffer, area: Area, context: &mut Context) {
2018-07-11 17:07:51 +03:00
if !self.unfocused {
2018-07-15 01:27:13 +03:00
if !self.is_dirty() {
2018-07-11 17:07:51 +03:00
return;
}
/* Draw the entire list */
self.draw_list(grid, area, context);
2018-07-11 17:07:51 +03:00
} else {
if self.length == 0 && self.dirty {
2018-07-14 15:04:42 +03:00
clear_area(grid, area);
context.dirty_areas.push_back(area);
return;
2018-07-11 17:07:51 +03:00
}
2018-08-21 19:51:48 +03:00
/* Render the mail body in a pager */
if !self.dirty {
2018-08-07 15:01:15 +03:00
if let Some(v) = self.view.as_mut() {
2018-08-21 19:51:48 +03:00
v.draw(grid, area, context);
2018-08-07 15:01:15 +03:00
}
return;
}
self.view = Some(ThreadView::new(self.cursor_pos, None, context));
2018-08-23 15:36:52 +03:00
self.view.as_mut().unwrap().draw(grid, area, context);
2018-07-11 17:07:51 +03:00
}
2018-10-14 19:49:16 +03:00
self.dirty = false;
2018-07-11 17:07:51 +03:00
}
2019-02-26 17:50:47 +02:00
fn process_event(&mut self, event: &mut UIEvent, context: &mut Context) -> bool {
if let Some(ref mut v) = self.view {
if v.process_event(event, context) {
return true;
}
}
2018-07-11 17:07:51 +03:00
match event.event_type {
UIEventType::Input(Key::Up) => {
if self.cursor_pos.2 > 0 {
self.new_cursor_pos.2 = self.new_cursor_pos.2.saturating_sub(1);
2018-07-11 17:07:51 +03:00
self.dirty = true;
}
return true;
2018-07-27 21:37:56 +03:00
}
2018-07-11 17:07:51 +03:00
UIEventType::Input(Key::Down) => {
if self.length > 0 && self.new_cursor_pos.2 < self.length - 1 {
self.new_cursor_pos.2 += 1;
2018-07-11 17:07:51 +03:00
self.dirty = true;
}
return true;
2018-07-27 21:37:56 +03:00
}
2018-08-07 15:01:15 +03:00
UIEventType::Input(Key::Char('\n')) if !self.unfocused => {
2018-07-11 17:07:51 +03:00
self.unfocused = true;
self.dirty = true;
return true;
2018-07-27 21:37:56 +03:00
}
UIEventType::Input(Key::PageUp) => {
self.movement = Some(PageMovement::PageUp);
self.set_dirty();
}
UIEventType::Input(Key::PageDown) => {
self.movement = Some(PageMovement::PageDown);
self.set_dirty();
}
2018-08-07 15:01:15 +03:00
UIEventType::Input(Key::Char('i')) if self.unfocused => {
2018-07-11 17:07:51 +03:00
self.unfocused = false;
self.dirty = true;
self.view = None;
return true;
2018-07-27 21:37:56 +03:00
}
UIEventType::Input(Key::Char(k @ 'J')) | UIEventType::Input(Key::Char(k @ 'K')) => {
let folder_length = context.accounts[self.cursor_pos.0].len();
let accounts_length = context.accounts.len();
match k {
'J' if folder_length > 0 => {
if self.new_cursor_pos.1 < folder_length - 1 {
self.new_cursor_pos.1 = self.cursor_pos.1 + 1;
self.refresh_mailbox(context);
2018-07-27 21:37:56 +03:00
} else if accounts_length > 0 && self.new_cursor_pos.0 < accounts_length - 1
{
self.new_cursor_pos.0 = self.cursor_pos.0 + 1;
self.new_cursor_pos.1 = 0;
self.refresh_mailbox(context);
}
2018-07-27 21:37:56 +03:00
}
'K' => {
if self.cursor_pos.1 > 0 {
self.new_cursor_pos.1 = self.cursor_pos.1 - 1;
self.refresh_mailbox(context);
2018-07-27 21:37:56 +03:00
} else if self.cursor_pos.0 > 0 {
self.new_cursor_pos.0 = self.cursor_pos.0 - 1;
self.new_cursor_pos.1 = 0;
self.refresh_mailbox(context);
}
2018-07-27 21:37:56 +03:00
}
_ => {}
}
return true;
2018-07-27 21:37:56 +03:00
}
UIEventType::Input(Key::Char(k @ 'h')) | UIEventType::Input(Key::Char(k @ 'l')) => {
let accounts_length = context.accounts.len();
match k {
'h' if accounts_length > 0 && self.new_cursor_pos.0 < accounts_length - 1 => {
self.new_cursor_pos.0 = self.cursor_pos.0 + 1;
self.new_cursor_pos.1 = 0;
self.refresh_mailbox(context);
2018-07-27 21:37:56 +03:00
}
'l' if self.cursor_pos.0 > 0 => {
self.new_cursor_pos.0 = self.cursor_pos.0 - 1;
self.new_cursor_pos.1 = 0;
self.refresh_mailbox(context);
2018-07-27 21:37:56 +03:00
}
_ => {}
}
return true;
2018-07-27 21:37:56 +03:00
}
UIEventType::RefreshMailbox(_) => {
self.view = None;
self.dirty = true;
2018-07-27 21:37:56 +03:00
}
2018-08-03 13:46:08 +03:00
UIEventType::MailboxUpdate((ref idxa, ref idxf)) => {
if *idxa == self.new_cursor_pos.0 && *idxf == self.new_cursor_pos.1 {
self.refresh_mailbox(context);
self.set_dirty();
2018-08-03 13:46:08 +03:00
}
}
2018-07-15 01:27:13 +03:00
UIEventType::ChangeMode(UIMode::Normal) => {
self.dirty = true;
2018-07-27 21:37:56 +03:00
}
2018-07-16 13:36:28 +03:00
UIEventType::Resize => {
self.dirty = true;
2018-07-27 21:37:56 +03:00
}
UIEventType::Action(ref action) => match action {
Action::ViewMailbox(idx) => {
self.new_cursor_pos.1 = *idx;
self.refresh_mailbox(context);
return true;
2018-08-07 15:01:15 +03:00
}
Action::SubSort(field, order) => {
eprintln!("SubSort {:?} , {:?}", field, order);
self.subsort = (*field, *order);
self.refresh_mailbox(context);
return true;
}
Action::Sort(field, order) => {
eprintln!("Sort {:?} , {:?}", field, order);
self.sort = (*field, *order);
self.refresh_mailbox(context);
return true;
}
_ => {}
},
2018-09-04 02:10:37 +03:00
UIEventType::Input(Key::Char('m')) if !self.unfocused => {
context.replies.push_back(UIEvent {
id: 0,
event_type: UIEventType::Action(Tab(NewDraft)),
});
return true;
}
2018-07-27 21:37:56 +03:00
_ => {}
2018-07-11 17:07:51 +03:00
}
false
2018-07-11 17:07:51 +03:00
}
2018-07-14 15:04:42 +03:00
fn is_dirty(&self) -> bool {
2018-08-21 19:51:48 +03:00
self.dirty || self.view.as_ref().map(|p| p.is_dirty()).unwrap_or(false)
2018-07-14 15:04:42 +03:00
}
fn set_dirty(&mut self) {
2018-08-23 15:36:52 +03:00
if let Some(p) = self.view.as_mut() {
p.set_dirty();
}
2018-08-21 19:51:48 +03:00
self.dirty = true;
}
2018-07-11 17:07:51 +03:00
}