Skip to content
Snippets Groups Projects
Verified Commit b59b24a0 authored by TheJoeCoder's avatar TheJoeCoder
Browse files

[Frontend] Add logging, connection, tabs

parent b6147d25
No related branches found
No related tags found
No related merge requests found
import json, requests import json, requests, logging
from tkinter import messagebox, ttk from tkinter import messagebox, ttk
from tkinter import * from tkinter import *
## Init ## Init
root = Tk() root = Tk()
logging.basicConfig(level=logging.INFO)
logger = logging.getLogger(__name__)
logger.setLevel(logging.DEBUG)
## Global Variables ## Global Variables
connect_url = StringVar() connect_url = StringVar()
cart_id = ""
cart_key = ""
## Subroutines ## Subroutines
def get_endpoint(endpoint): def get_endpoint(endpoint):
return connect_url.get() + endpoint return connect_url.get() + endpoint
def submit(*args): # Create frame
messagebox.showinfo("Not implemented", "Not just yet...") def create_tab(title, padding="3 3 12 12", sticky=(N, W, E, S)):
frame = ttk.Frame(tab_control, padding=padding)
frame.grid(column=0, row=0, sticky=sticky)
frame.columnconfigure(0, weight=1)
frame.rowconfigure(0, weight=1)
tab_control.add(frame, text=title)
return frame
# Configure grid for frame
def configure_grid(frame):
for child in connect_frame.winfo_children():
child.grid_configure(padx=5, pady=5)
# General connect fail function
# Used when the server is unreachable or returns a non-200 response
# both in the initial connection attempt and in other screens
# where a server request is made
def connect_fail():
logger.error("Connection Failed")
connect_status_label.configure(text="Connection failed")
tab_control.select(connect_frame)
messagebox.showerror("Connection failed", "Could not connect to server")
# Connection success fail function
# Used when the server is reachable and all is ok
# in the initial connection attempt
def connect_success():
logger.info("Successfully connected to " + connect_url.get())
connect_status_label.configure(text="Connected")
tab_control.select(order_frame)
messagebox.showinfo("OK!", "Successfully connected")
# Connect function for the connect tab
def connect(*args): def connect(*args):
logger.info("Attempting to connect to " + connect_url.get())
try: try:
res = requests.get(get_endpoint("/")) res = requests.get(get_endpoint("/status"))
if res.status_code == 200: if (res.status_code == 200):
# Success # Success
# TODO check for valid JSON response, possibly change to /status endpoint logger.debug("Got 200 response from server")
messagebox.showinfo("OK!", "Successfully connected") try:
connect_status_label.configure(text="Connected") res_json = json.loads(res.text)
# TODO focus on other tab if (res_json["status"] == 200 and res_json["message"] == "ok"):
connect_success()
return
else: else:
# Failure logger.debug("Response from server did not contain OK")
# TODO failure message connect_fail()
pass return
except:
logger.debug("Could not parse JSON response from server")
logger.debug(res.text)
connect_fail()
return
else:
logger.debug("Got non-200 response from server")
connect_fail()
return
except: except:
# Failure connect_fail()
# TODO failure message return
# Create new session
def new_session(*arg):
pass
# Refresh order screen items
def refresh_items(*args):
# TODO get /pizzas from server
pass pass
## Main program code ## Main program code
# Window setup
root.title("Pizza Palace") root.title("Pizza Palace")
tab_control = ttk.Notebook(root) tab_control = ttk.Notebook(root)
connect_frame = ttk.Frame(tab_control, padding="3 3 12 12") # Connect tab
connect_frame.grid(column=0, row=0, sticky=(N, W, E, S)) connect_frame = create_tab("Connect")
connect_frame.columnconfigure(0, weight=1)
connect_frame.rowconfigure(0, weight=1)
connect_url_label = ttk.Label(connect_frame, text="Server URL:") connect_url_label = ttk.Label(connect_frame, text="Server URL:")
connect_url_field = ttk.Entry(connect_frame, width=20, textvariable=connect_url) connect_url_field = ttk.Entry(connect_frame, width=20, textvariable=connect_url)
...@@ -54,15 +112,24 @@ connect_status_label.grid(column=1, row=2, sticky=(W, E)) ...@@ -54,15 +112,24 @@ connect_status_label.grid(column=1, row=2, sticky=(W, E))
connect_submit_button = ttk.Button(connect_frame, text="Go!", command=connect) connect_submit_button = ttk.Button(connect_frame, text="Go!", command=connect)
connect_submit_button.grid(column=1, row=3, sticky=(W, E)) connect_submit_button.grid(column=1, row=3, sticky=(W, E))
for child in connect_frame.winfo_children(): configure_grid(connect_frame)
child.grid_configure(padx=5, pady=5)
connect_submit_button.focus() connect_submit_button.focus()
connect_frame.bind("<Return>", submit) connect_frame.bind("<Return>", connect)
# Order tab
order_frame = create_tab("Order")
# TODO order list
# Cart tab
cart_frame = create_tab("Cart")
# Confirm tab
confirm_frame = create_tab("Confirm")
# TODO other tabs
tab_control.add(connect_frame, text="Connect") # Pack
tab_control.pack(expand=1, fill="both") tab_control.pack(expand=1, fill="both")
# Main window loop
root.mainloop() root.mainloop()
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please to comment