import time from tkinter import * from tkinter import messagebox from tkinter.ttk import * from fishy import web import typing from fishy.libs.tkhtmlview import HTMLLabel if typing.TYPE_CHECKING: from . import GUI # noinspection PyProtectedMember def _give_notification_link(gui: 'GUI'): if web.is_subbed(gui._config.get("uid"))[0]: web.unsub(gui._config.get("uid")) return # set notification checkbutton gui._notify.set(0) def quit_top(): top.destroy() top_running[0] = False def check(): if web.sub(gui._config.get("uid"), discord_name.get()): if web.is_subbed(gui._config.get("uid"), False)[0]: gui._notify.set(1) messagebox.showinfo("Note!", "Notification configured successfully!") quit_top() else: messagebox.showerror("Error", "Subscription wasn't successful") top_running = [True] top = Toplevel(background=gui._root["background"]) top.minsize(width=300, height=300) top.title("Notification Setup") html_label = HTMLLabel(top, html=f'
' f'

Step 1.
' f'Join Discord server

' f'

Step 2.
' f'Enter username (ex. Fishy#1234)' f'

', background=gui._root["background"]) html_label.pack(pady=(20, 5)) html_label.fit_height() discord_name = Entry(top, justify=CENTER, font="Calibri 15") discord_name.pack(padx=(15, 15), expand=True, fill=BOTH) html_label = HTMLLabel(top, html=f'
' f'

Step 3.
' f'Install Discord App on your phone

' f'

Step 4.

' f'
', background=gui._root["background"]) html_label.pack(pady=(5, 5)) html_label.fit_height() Button(top, text="REGISTER", command=check).pack(pady=(5, 20)) top.protocol("WM_DELETE_WINDOW", quit_top) top.grab_set() while top_running[0]: top.update() time.sleep(0.01) top.grab_release()