127 lines
5.0 KiB
Python
127 lines
5.0 KiB
Python
# ======================================================================= #
|
|
# Copyright (C) 2020 - 2024 Dominik Willner <th33xitus@gmail.com> #
|
|
# #
|
|
# This file is part of KIAUH - Klipper Installation And Update Helper #
|
|
# https://github.com/dw-0/kiauh #
|
|
# #
|
|
# This file may be distributed under the terms of the GNU GPLv3 license #
|
|
# ======================================================================= #
|
|
|
|
import textwrap
|
|
from typing import Dict, Type, Optional
|
|
|
|
from components.webui_client import client_remove
|
|
from components.webui_client.base_data import BaseWebClient, WebClientType
|
|
from core.menus import Option
|
|
from core.menus.base_menu import BaseMenu
|
|
from utils.constants import RESET_FORMAT, COLOR_RED, COLOR_CYAN
|
|
|
|
|
|
# noinspection PyUnusedLocal
|
|
class ClientRemoveMenu(BaseMenu):
|
|
def __init__(
|
|
self, client: BaseWebClient, previous_menu: Optional[Type[BaseMenu]] = None
|
|
):
|
|
super().__init__()
|
|
self.client = client
|
|
self.rm_client = False
|
|
self.rm_client_config = False
|
|
self.backup_mainsail_config_json = False
|
|
|
|
def set_previous_menu(self, previous_menu: Optional[Type[BaseMenu]]) -> None:
|
|
from core.menus.remove_menu import RemoveMenu
|
|
|
|
self.previous_menu: Type[BaseMenu] = (
|
|
previous_menu if previous_menu is not None else RemoveMenu
|
|
)
|
|
|
|
def set_options(self) -> Dict[str, Option]:
|
|
options = {
|
|
"0": Option(method=self.toggle_all, menu=False),
|
|
"1": Option(method=self.toggle_rm_client, menu=False),
|
|
"2": Option(method=self.toggle_rm_client_config, menu=False),
|
|
"c": Option(method=self.run_removal_process, menu=False),
|
|
}
|
|
if self.client.client == WebClientType.MAINSAIL:
|
|
options["3"] = Option(self.toggle_backup_mainsail_config_json, False)
|
|
|
|
return options
|
|
|
|
def print_menu(self) -> None:
|
|
client_name = self.client.display_name
|
|
client_config = self.client.client_config
|
|
client_config_name = client_config.display_name
|
|
|
|
header = f" [ Remove {client_name} ] "
|
|
color = COLOR_RED
|
|
count = 62 - len(color) - len(RESET_FORMAT)
|
|
checked = f"[{COLOR_CYAN}x{RESET_FORMAT}]"
|
|
unchecked = "[ ]"
|
|
o1 = checked if self.rm_client else unchecked
|
|
o2 = checked if self.rm_client_config else unchecked
|
|
menu = textwrap.dedent(
|
|
f"""
|
|
/=======================================================\\
|
|
| {color}{header:~^{count}}{RESET_FORMAT} |
|
|
|-------------------------------------------------------|
|
|
| Enter a number and hit enter to select / deselect |
|
|
| the specific option for removal. |
|
|
|-------------------------------------------------------|
|
|
| 0) Select everything |
|
|
|-------------------------------------------------------|
|
|
| 1) {o1} Remove {client_name:16} |
|
|
| 2) {o2} Remove {client_config_name:24} |
|
|
"""
|
|
)[1:]
|
|
|
|
if self.client.client == WebClientType.MAINSAIL:
|
|
o3 = checked if self.backup_mainsail_config_json else unchecked
|
|
menu += textwrap.dedent(
|
|
f"""
|
|
| 3) {o3} Backup config.json |
|
|
"""
|
|
)[1:]
|
|
|
|
menu += textwrap.dedent(
|
|
"""
|
|
|-------------------------------------------------------|
|
|
| C) Continue |
|
|
"""
|
|
)[1:]
|
|
print(menu, end="")
|
|
|
|
def toggle_all(self, **kwargs) -> None:
|
|
self.rm_client = True
|
|
self.rm_client_config = True
|
|
self.backup_mainsail_config_json = True
|
|
|
|
def toggle_rm_client(self, **kwargs) -> None:
|
|
self.rm_client = not self.rm_client
|
|
|
|
def toggle_rm_client_config(self, **kwargs) -> None:
|
|
self.rm_client_config = not self.rm_client_config
|
|
|
|
def toggle_backup_mainsail_config_json(self, **kwargs) -> None:
|
|
self.backup_mainsail_config_json = not self.backup_mainsail_config_json
|
|
|
|
def run_removal_process(self, **kwargs) -> None:
|
|
if (
|
|
not self.rm_client
|
|
and not self.rm_client_config
|
|
and not self.backup_mainsail_config_json
|
|
):
|
|
error = f"{COLOR_RED}Nothing selected ...{RESET_FORMAT}"
|
|
print(error)
|
|
return
|
|
|
|
client_remove.run_client_removal(
|
|
client=self.client,
|
|
rm_client=self.rm_client,
|
|
rm_client_config=self.rm_client_config,
|
|
backup_ms_config_json=self.backup_mainsail_config_json,
|
|
)
|
|
|
|
self.rm_client = False
|
|
self.rm_client_config = False
|
|
self.backup_mainsail_config_json = False
|