mirror of
https://github.com/fishyboteso/fishyboteso.git
synced 2024-08-30 18:32:13 +00:00
75 lines
2.5 KiB
Python
75 lines
2.5 KiB
Python
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'<div style="color: {gui._console["fg"]}; text-align: center">'
|
|
f'<p><span style="font-size:20px">Step 1.</span><br/>'
|
|
f'Join <a href="https://discord.definex.in/">Discord server</a></p>'
|
|
f'<p><span style="font-size:20px">Step 2.</span><br/>'
|
|
f'Enter username (ex. Fishy#1234)'
|
|
f'</div>', 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'<div style="color: {gui._console["fg"]}; text-align: center">'
|
|
f'<p><span style="font-size:20px">Step 3.</span><br/>'
|
|
f'Install Discord App on your phone</p>'
|
|
f'<p><span style="font-size:20px">Step 4.</span><br/></p>'
|
|
f'</div>', 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()
|