145 lines
4.5 KiB
Rust
145 lines
4.5 KiB
Rust
use ratatui::Frame;
|
|
use ratatui::layout::Rect;
|
|
use ratatui::text::{Span, Text};
|
|
use ratatui::widgets::{Cell, ListItem, Paragraph, Row};
|
|
|
|
use crate::app::App;
|
|
use crate::models::Route;
|
|
use crate::models::servarr_data::sonarr::sonarr_data::{ActiveSonarrBlock, SYSTEM_DETAILS_BLOCKS};
|
|
use crate::models::sonarr_models::SonarrTask;
|
|
use crate::ui::sonarr_ui::system::{
|
|
TASK_TABLE_CONSTRAINTS, TASK_TABLE_HEADERS, draw_queued_events, extract_task_props,
|
|
};
|
|
use crate::ui::styles::ManagarrStyle;
|
|
use crate::ui::utils::{borderless_block, style_log_list_item, title_block};
|
|
use crate::ui::widgets::confirmation_prompt::ConfirmationPrompt;
|
|
use crate::ui::widgets::loading_block::LoadingBlock;
|
|
use crate::ui::widgets::managarr_table::ManagarrTable;
|
|
use crate::ui::widgets::popup::{Popup, Size};
|
|
use crate::ui::widgets::selectable_list::SelectableList;
|
|
use crate::ui::{DrawUi, draw_popup};
|
|
|
|
#[cfg(test)]
|
|
#[path = "system_details_ui_tests.rs"]
|
|
mod system_details_ui_tests;
|
|
|
|
pub(super) struct SystemDetailsUi;
|
|
|
|
impl DrawUi for SystemDetailsUi {
|
|
fn accepts(route: Route) -> bool {
|
|
let Route::Sonarr(active_sonarr_block, _) = route else {
|
|
return false;
|
|
};
|
|
SYSTEM_DETAILS_BLOCKS.contains(&active_sonarr_block)
|
|
}
|
|
|
|
fn draw(f: &mut Frame<'_>, app: &mut App<'_>, _area: Rect) {
|
|
if let Route::Sonarr(active_sonarr_block, _) = app.get_current_route() {
|
|
match active_sonarr_block {
|
|
ActiveSonarrBlock::SystemLogs => {
|
|
draw_logs_popup(f, app);
|
|
}
|
|
ActiveSonarrBlock::SystemTasks | ActiveSonarrBlock::SystemTaskStartConfirmPrompt => {
|
|
draw_popup(f, app, draw_tasks_popup, Size::Large)
|
|
}
|
|
ActiveSonarrBlock::SystemQueuedEvents => {
|
|
draw_popup(f, app, draw_queued_events, Size::Medium)
|
|
}
|
|
ActiveSonarrBlock::SystemUpdates => {
|
|
draw_updates_popup(f, app);
|
|
}
|
|
_ => (),
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
fn draw_logs_popup(f: &mut Frame<'_>, app: &mut App<'_>) {
|
|
let block = title_block("Log Details");
|
|
|
|
if app.data.sonarr_data.log_details.items.is_empty() {
|
|
let loading = LoadingBlock::new(app.is_loading, borderless_block());
|
|
let popup = Popup::new(loading).size(Size::Large).block(block).margin(1);
|
|
|
|
f.render_widget(popup, f.area());
|
|
return;
|
|
}
|
|
|
|
let logs_list = SelectableList::new(&mut app.data.sonarr_data.log_details, |log| {
|
|
let log_line = log.to_string();
|
|
let level = log.text.split('|').collect::<Vec<&str>>()[1].to_string();
|
|
|
|
style_log_list_item(ListItem::new(Text::from(Span::raw(log_line))), level)
|
|
})
|
|
.block(borderless_block());
|
|
let popup = Popup::new(logs_list)
|
|
.size(Size::Large)
|
|
.block(block)
|
|
.margin(1);
|
|
|
|
f.render_widget(popup, f.area());
|
|
}
|
|
|
|
fn draw_tasks_popup(f: &mut Frame<'_>, app: &mut App<'_>, area: Rect) {
|
|
let tasks_row_mapping = |task: &SonarrTask| {
|
|
let task_props = extract_task_props(task);
|
|
|
|
Row::new(vec![
|
|
Cell::from(task_props.name),
|
|
Cell::from(task_props.interval),
|
|
Cell::from(task_props.last_execution),
|
|
Cell::from(task_props.next_execution),
|
|
])
|
|
.primary()
|
|
};
|
|
let tasks_table = ManagarrTable::new(Some(&mut app.data.sonarr_data.tasks), tasks_row_mapping)
|
|
.loading(app.is_loading)
|
|
.margin(1)
|
|
.headers(TASK_TABLE_HEADERS)
|
|
.constraints(TASK_TABLE_CONSTRAINTS);
|
|
|
|
f.render_widget(title_block("Tasks"), area);
|
|
f.render_widget(tasks_table, area);
|
|
|
|
if matches!(
|
|
app.get_current_route(),
|
|
Route::Sonarr(ActiveSonarrBlock::SystemTaskStartConfirmPrompt, _)
|
|
) {
|
|
let prompt = format!(
|
|
"Do you want to manually start this task: {}?",
|
|
app.data.sonarr_data.tasks.current_selection().name
|
|
);
|
|
let confirmation_prompt = ConfirmationPrompt::new()
|
|
.title("Start Task")
|
|
.prompt(&prompt)
|
|
.yes_no_value(app.data.sonarr_data.prompt_confirm);
|
|
|
|
f.render_widget(
|
|
Popup::new(confirmation_prompt).size(Size::MediumPrompt),
|
|
f.area(),
|
|
);
|
|
}
|
|
}
|
|
|
|
fn draw_updates_popup(f: &mut Frame<'_>, app: &mut App<'_>) {
|
|
let updates = app.data.sonarr_data.updates.get_text();
|
|
let block = title_block("Updates");
|
|
|
|
if !updates.is_empty() && !app.is_loading {
|
|
let updates_paragraph = Paragraph::new(Text::from(updates))
|
|
.block(borderless_block())
|
|
.scroll((app.data.sonarr_data.updates.offset, 0));
|
|
let popup = Popup::new(updates_paragraph)
|
|
.size(Size::Large)
|
|
.block(block)
|
|
.margin(1);
|
|
|
|
f.render_widget(popup, f.area());
|
|
} else {
|
|
let loading = LoadingBlock::new(app.is_loading, borderless_block());
|
|
let popup = Popup::new(loading).size(Size::Large).block(block).margin(1);
|
|
|
|
f.render_widget(popup, f.area());
|
|
}
|
|
}
|