64 lines
2.0 KiB
Rust
64 lines
2.0 KiB
Rust
use ratatui::Frame;
|
|
use ratatui::layout::Rect;
|
|
|
|
use crate::app::App;
|
|
use crate::models::Route;
|
|
use crate::models::servarr_data::lidarr::lidarr_data::{ActiveLidarrBlock, DELETE_ARTIST_BLOCKS};
|
|
use crate::ui::DrawUi;
|
|
use crate::ui::widgets::checkbox::Checkbox;
|
|
use crate::ui::widgets::confirmation_prompt::ConfirmationPrompt;
|
|
use crate::ui::widgets::popup::{Popup, Size};
|
|
|
|
#[cfg(test)]
|
|
#[path = "delete_artist_ui_tests.rs"]
|
|
mod delete_artist_ui_tests;
|
|
|
|
pub(in crate::ui::lidarr_ui) struct DeleteArtistUi;
|
|
|
|
impl DrawUi for DeleteArtistUi {
|
|
fn accepts(route: Route) -> bool {
|
|
let Route::Lidarr(active_lidarr_block, _) = route else {
|
|
return false;
|
|
};
|
|
DELETE_ARTIST_BLOCKS.contains(&active_lidarr_block)
|
|
}
|
|
|
|
fn draw(f: &mut Frame<'_>, app: &mut App<'_>, _area: Rect) {
|
|
if matches!(
|
|
app.get_current_route(),
|
|
Route::Lidarr(ActiveLidarrBlock::DeleteArtistPrompt, _)
|
|
) {
|
|
let selected_block = app.data.lidarr_data.selected_block.get_active_block();
|
|
let prompt = format!(
|
|
"Do you really want to delete the artist: \n{}?",
|
|
app
|
|
.data
|
|
.lidarr_data
|
|
.artists
|
|
.current_selection()
|
|
.artist_name
|
|
.text
|
|
);
|
|
let checkboxes = vec![
|
|
Checkbox::new("Delete Artist Files")
|
|
.checked(app.data.lidarr_data.delete_artist_files)
|
|
.highlighted(selected_block == ActiveLidarrBlock::DeleteArtistToggleDeleteFile),
|
|
Checkbox::new("Add List Exclusion")
|
|
.checked(app.data.lidarr_data.add_import_list_exclusion)
|
|
.highlighted(selected_block == ActiveLidarrBlock::DeleteArtistToggleAddListExclusion),
|
|
];
|
|
let confirmation_prompt = ConfirmationPrompt::new()
|
|
.title("Delete Artist")
|
|
.prompt(&prompt)
|
|
.checkboxes(checkboxes)
|
|
.yes_no_highlighted(selected_block == ActiveLidarrBlock::DeleteArtistConfirmPrompt)
|
|
.yes_no_value(app.data.lidarr_data.prompt_confirm);
|
|
|
|
f.render_widget(
|
|
Popup::new(confirmation_prompt).size(Size::MediumPrompt),
|
|
f.area(),
|
|
);
|
|
}
|
|
}
|
|
}
|