Files
XHS_Downloader/source/TUI/app.py
2024-06-29 23:20:08 +08:00

119 lines
3.8 KiB
Python

from typing import Callable
from textual.app import App
from textual.widgets import RichLog
from source.application import XHS
from source.module import (
ROOT,
ERROR,
)
from source.module import Settings
from source.module import Translate
from source.module import logging
from .about import About
from .index import Index
from .loading import Loading
from .record import Record
from .setting import Setting
from .update import Update
__all__ = ["XHSDownloader"]
class XHSDownloader(App):
CSS_PATH = ROOT.joinpath("static/XHS-Downloader.tcss")
SETTINGS = Settings(ROOT)
def __init__(self):
super().__init__()
self.parameter: dict
self.message: Callable[[str], str]
self.APP: XHS
self.__initialization()
async def __aenter__(self):
await self.APP.__aenter__()
return self
async def __aexit__(self, exc_type, exc_value, traceback):
await self.APP.__aexit__(exc_type, exc_value, traceback)
def __initialization(self) -> None:
self.parameter = self.SETTINGS.run()
self.message = Translate(self.parameter["language"]).message()
self.APP = XHS(
**self.parameter,
transition=self.message,
_print=False,
)
async def on_mount(self) -> None:
self.install_screen(
Setting(
self.parameter,
self.message),
name="setting")
self.install_screen(Index(self.APP, self.message), name="index")
self.install_screen(Loading(self.message), name="loading")
self.install_screen(About(self.message), name="about")
self.install_screen(Record(self.APP, self.message), name="record")
await self.push_screen("index")
self.SETTINGS.check_keys(
self.parameter,
logging,
self.query_one(RichLog),
self.message("配置文件 settings.json 缺少必要的参数,请删除该文件,然后重新运行程序,自动生成默认配置文件!") +
f"\n{
">" *
50}",
ERROR,
)
async def action_settings(self):
async def save_settings(data: dict) -> None:
self.SETTINGS.update(data)
await self.refresh_screen()
await self.push_screen("setting", save_settings)
async def refresh_screen(self):
self.pop_screen()
await self.close_database()
await self.APP.close()
self.__initialization()
await self.__aenter__()
self.uninstall_screen("index")
self.uninstall_screen("setting")
self.uninstall_screen("loading")
self.uninstall_screen("about")
self.uninstall_screen("record")
self.install_screen(Index(self.APP, self.message), name="index")
self.install_screen(
Setting(
self.parameter,
self.message),
name="setting")
self.install_screen(Loading(self.message), name="loading")
self.install_screen(About(self.message), name="about")
self.install_screen(Record(self.APP, self.message), name="record")
await self.push_screen("index")
def update_result(self, tip: str) -> None:
log = self.query_one(RichLog)
log.write(tip)
log.write(">" * 50)
async def action_check_update(self):
await self.push_screen(Update(self.APP, self.message), callback=self.update_result)
async def action_update_and_return(self):
await self.push_screen("index")
await self.action_check_update()
async def close_database(self):
await self.APP.id_recorder.cursor.close()
await self.APP.id_recorder.database.close()
await self.APP.data_recorder.cursor.close()
await self.APP.data_recorder.database.close()