shopbot/bot/dialogs/start.py

24 lines
814 B
Python
Raw Normal View History

2024-12-24 18:08:03 +00:00
from aiogram_dialog import Dialog, Window
2024-12-25 01:30:33 +00:00
from aiogram_dialog.widgets.kbd import Row, Start
2024-12-24 18:08:03 +00:00
from aiogram_dialog.widgets.text import Const, Format
2024-12-25 01:30:33 +00:00
from shopbot.bot.getters import username_getter
from shopbot.bot.states import ProfileSG, PurchaseAccountsSG, StartSG
2024-12-24 18:08:03 +00:00
start_dialog = Dialog(
Window(
Format("<b>Привет, {username}!</b>\n"),
Const("Тут ты можешь купить аккаунт по игре Valorant 👇"),
Row(
Start(
Const("🛍️ Купить"),
id="purchase",
state=PurchaseAccountsSG.purchase_accounts,
),
Start(Const("🧑‍💻 Профиль"), id="profile", state=ProfileSG.profile),
),
getter=username_getter,
state=StartSG.start,
)
2024-12-25 01:30:33 +00:00
)