use crate::logger;
use crate::theme;
use crate::view::View;
use crate::Printer;
use crate::Vec2;
use unicode_width::UnicodeWidthStr;
pub struct DebugView {
}
impl DebugView {
pub fn new() -> Self {
DebugView {}
}
}
impl Default for DebugView {
fn default() -> Self {
Self::new()
}
}
impl View for DebugView {
fn draw(&self, printer: &Printer) {
let logs = logger::LOGS.lock().unwrap();
let skipped = logs.len().saturating_sub(printer.size.y);
let format = time::format_description::parse(
"[hour]:[minute]:[second].[subsecond digits:3]",
)
.unwrap();
for (i, record) in logs.iter().skip(skipped).enumerate() {
let formatted = record
.time
.format(&format)
.unwrap_or_else(|_| String::new());
printer.print(
(0, i),
&format!("{} | [ ] {}", formatted, record.message),
);
let color = match record.level {
log::Level::Error => theme::BaseColor::Red.dark(),
log::Level::Warn => theme::BaseColor::Yellow.dark(),
log::Level::Info => theme::BaseColor::Black.light(),
log::Level::Debug => theme::BaseColor::Green.dark(),
log::Level::Trace => theme::BaseColor::Blue.dark(),
};
printer.with_color(color.into(), |printer| {
printer.print((16, i), &format!("{:5}", record.level))
});
}
}
fn required_size(&mut self, _constraint: Vec2) -> Vec2 {
let logs = logger::LOGS.lock().unwrap();
let level_width = 8; let time_width = 16;
let w = logs
.iter()
.map(|record| record.message.width() + level_width + time_width)
.max()
.unwrap_or(1);
let h = logs.len();
Vec2::new(w, h)
}
fn layout(&mut self, _size: Vec2) {
}
}