From 5267506866414696197c04e893af9bde5a62d665 Mon Sep 17 00:00:00 2001 From: Ioannis Sfakianakis Date: Tue, 4 Feb 2025 15:35:05 +0200 Subject: [PATCH] Installer UI cannot remove disks for persist parition - Added a utility function for removing devices for persist partitions - Added conditional in the view for persist partition to remove or add a disk Signed-off-by: Ioannis Sfakianakis --- pkg/installer/src/utils.rs | 29 +++++++++++++++++++++++------ pkg/installer/src/views/pdev.rs | 6 ++++-- 2 files changed, 27 insertions(+), 8 deletions(-) diff --git a/pkg/installer/src/utils.rs b/pkg/installer/src/utils.rs index d002aa85b8..bd3eb359c3 100644 --- a/pkg/installer/src/utils.rs +++ b/pkg/installer/src/utils.rs @@ -88,15 +88,32 @@ pub fn save_config_value(c: &mut Cursive, k: &str, v: &str, m: bool) -> crate::e Ok(()) } -pub fn edit_config_value(c: &mut Cursive, k: &str, v: &str) -> crate::error::Result<()> { +pub fn add_config_value(c: &mut Cursive, k: &str, v: &str) -> crate::error::Result<()> { let mut s: GlobalState = c.take_user_data().unwrap(); - let mut vedit = s.data.map.get(k).unwrap().clone(); - if vedit == "_____" { - vedit = v.to_string(); + let mut vadd = s.data.map.get(k).cloned().unwrap_or_default(); + if vadd == "_____" { + vadd = v.to_string(); } else { - vedit = vedit + "," + v; + vadd = vadd + "," + v; } - s.data.map.insert(k.to_string(), vedit); + s.data.map.insert(k.to_string(), vadd); + c.set_user_data(s); + Ok(()) +} + +pub fn remove_config_value(c: &mut Cursive, k: &str, v: &str) -> crate::error::Result<()> { + let mut s: GlobalState = c.take_user_data().unwrap(); + let mut vremove: String = s.data.map.get(k).cloned().unwrap_or_default() + .split(',') + .filter(|&d| d != v) // Remove matching device + .collect::>() // Collect filtered items into Vec + .join(","); // Join them back with ',' + + if vremove == "" { // If we removed all devices we return to the init value + vremove = "_____".to_string() + } + + s.data.map.insert(k.to_string(), vremove); c.set_user_data(s); Ok(()) } diff --git a/pkg/installer/src/views/pdev.rs b/pkg/installer/src/views/pdev.rs index 9b2c6798d2..554c101fdb 100644 --- a/pkg/installer/src/views/pdev.rs +++ b/pkg/installer/src/views/pdev.rs @@ -8,7 +8,7 @@ use std::collections::HashMap; use crate::{ data::{PERSIST_DISK}, herr, - utils::{get_block_devices, edit_config_value}, + utils::{get_block_devices, add_config_value, remove_config_value}, }; use cursive::{ @@ -35,7 +35,9 @@ pub fn get_pdev(map: HashMap) -> PDEVView { let dev = d.clone(); let mut c = Checkbox::new().on_change(move |s, checked | { if checked { - herr!(s, edit_config_value, PERSIST_DISK, &dev); + herr!(s, add_config_value, PERSIST_DISK, &dev); + } else if !checked { + herr!(s, remove_config_value, PERSIST_DISK, &dev); } }); if pdevs.contains(&d.as_str()) {