clan-core/pkgs/clan-app/clan_app/windows/main_window.py

86 lines
2.6 KiB
Python
Raw Normal View History

import logging
import threading
import gi
2024-05-21 13:57:27 +00:00
from clan_cli.api import API
from clan_cli.history.list import list_history
2024-06-05 09:23:12 +00:00
from clan_app.components.interfaces import ClanConfig
from clan_app.singletons.toast import ToastOverlay
from clan_app.singletons.use_views import ViewStack
from clan_app.singletons.use_vms import ClanStore
from clan_app.views.details import Details
from clan_app.views.list import ClanList
from clan_app.views.logs import Logs
from clan_app.views.webview import WebView, open_file
gi.require_version("Adw", "1")
2024-06-05 10:10:26 +00:00
from gi.repository import Adw, Gio, GLib
2024-05-21 13:57:27 +00:00
2024-06-05 09:23:12 +00:00
from clan_app.components.trayicon import TrayIcon
log = logging.getLogger(__name__)
class MainWindow(Adw.ApplicationWindow):
def __init__(self, config: ClanConfig) -> None:
super().__init__()
2024-05-27 13:54:17 +00:00
self.set_title("Clan Manager")
self.set_default_size(980, 850)
2024-03-10 12:18:01 +00:00
2024-06-05 10:10:26 +00:00
# Overlay for GTK side exclusive toasts
overlay = ToastOverlay.use().overlay
view = Adw.ToolbarView()
overlay.set_child(view)
self.set_content(overlay)
header = Adw.HeaderBar()
view.add_top_bar(header)
app = Gio.Application.get_default()
assert app is not None
self.tray_icon: TrayIcon = TrayIcon(app)
# Initialize all ClanStore
2024-04-24 12:41:29 +00:00
threading.Thread(target=self._populate_vms).start()
stack_view = ViewStack.use().view
stack_view.add_named(ClanList(config), "list")
2024-01-21 11:45:45 +00:00
stack_view.add_named(Details(), "details")
2024-03-10 12:18:01 +00:00
stack_view.add_named(Logs(), "logs")
2024-05-18 13:55:59 +00:00
# Override platform specific functions
API.register(open_file)
2024-05-20 17:34:27 +00:00
webview = WebView(methods=API._registry)
2024-05-23 07:33:57 +00:00
stack_view.add_named(webview.get_webview(), "webview")
stack_view.set_visible_child_name(config.initial_view)
2024-06-05 10:10:26 +00:00
view.set_content(stack_view)
self.connect("destroy", self.on_destroy)
2024-04-24 12:41:29 +00:00
def _set_clan_store_ready(self) -> bool:
ClanStore.use().emit("is_ready")
return GLib.SOURCE_REMOVE
2024-04-23 14:16:48 +00:00
2024-04-24 12:41:29 +00:00
def _populate_vms(self) -> None:
# Execute `clan flakes add <path>` to democlan for this to work
# TODO: Make list_history a generator function
for entry in list_history():
GLib.idle_add(ClanStore.use().create_vm_task, entry)
2024-04-24 12:41:29 +00:00
GLib.idle_add(self._set_clan_store_ready)
2024-04-23 14:16:48 +00:00
def kill_vms(self) -> None:
log.debug("Killing all VMs")
ClanStore.use().kill_all()
def on_destroy(self, source: "Adw.ApplicationWindow") -> None:
log.info("====Destroying Adw.ApplicationWindow===")
ClanStore.use().kill_all()
self.tray_icon.destroy()