60 lines
2 KiB
Python
60 lines
2 KiB
Python
import logging
|
|
from tkinter import ttk
|
|
from typing import TYPE_CHECKING
|
|
|
|
import grpc
|
|
|
|
from core.gui.dialogs.dialog import Dialog
|
|
from core.gui.errors import show_grpc_error
|
|
from core.gui.themes import PADX, PADY
|
|
from core.gui.widgets import ConfigFrame
|
|
|
|
if TYPE_CHECKING:
|
|
from core.gui.app import Application
|
|
|
|
|
|
class SessionOptionsDialog(Dialog):
|
|
def __init__(self, master: "Application", app: "Application"):
|
|
super().__init__(master, app, "Session Options", modal=True)
|
|
self.config_frame = None
|
|
self.has_error = False
|
|
self.config = self.get_config()
|
|
if not self.has_error:
|
|
self.draw()
|
|
|
|
def get_config(self):
|
|
try:
|
|
session_id = self.app.core.session_id
|
|
response = self.app.core.client.get_session_options(session_id)
|
|
return response.config
|
|
except grpc.RpcError as e:
|
|
self.has_error = True
|
|
show_grpc_error(e, self.app, self.app)
|
|
self.destroy()
|
|
|
|
def draw(self):
|
|
self.top.columnconfigure(0, weight=1)
|
|
self.top.rowconfigure(0, weight=1)
|
|
|
|
self.config_frame = ConfigFrame(self.top, self.app, config=self.config)
|
|
self.config_frame.draw_config()
|
|
self.config_frame.grid(sticky="nsew", pady=PADY)
|
|
|
|
frame = ttk.Frame(self.top)
|
|
frame.grid(sticky="ew")
|
|
for i in range(2):
|
|
frame.columnconfigure(i, weight=1)
|
|
button = ttk.Button(frame, text="Save", command=self.save)
|
|
button.grid(row=0, column=0, padx=PADX, sticky="ew")
|
|
button = ttk.Button(frame, text="Cancel", command=self.destroy)
|
|
button.grid(row=0, column=1, padx=PADX, sticky="ew")
|
|
|
|
def save(self):
|
|
config = self.config_frame.parse_config()
|
|
try:
|
|
session_id = self.app.core.session_id
|
|
response = self.app.core.client.set_session_options(session_id, config)
|
|
logging.info("saved session config: %s", response)
|
|
except grpc.RpcError as e:
|
|
show_grpc_error(e, self.top, self.app)
|
|
self.destroy()
|