Compare commits
3 Commits
2697fd9b9e
...
0a48fba5c0
Author | SHA1 | Date | |
---|---|---|---|
0a48fba5c0 | |||
6f44c533d4 | |||
a487f452d9 |
@ -3,5 +3,4 @@ from dataclasses import dataclass
|
||||
|
||||
@dataclass
|
||||
class CExample:
|
||||
example: str = "ExampleCallback"
|
||||
state: bool = True
|
||||
example: str = "ExampleCallback"
|
@ -11,18 +11,17 @@ from data import callbacks, factory
|
||||
def example_callback() -> InlineKeyboardMarkup:
|
||||
"""Выберите нужный тип"""
|
||||
inline_builder = InlineKeyboardBuilder()
|
||||
inline_builder.row(
|
||||
list_build: tuple[InlineKeyboardButton] = (
|
||||
InlineKeyboardButton(
|
||||
text="📠 Callback",
|
||||
callback_data=callbacks.CExample.example,
|
||||
),
|
||||
InlineKeyboardButton(
|
||||
text="📠 Callback Factory",
|
||||
text="📠 Callback Factory | State",
|
||||
callback_data=factory.ExampleFactory(example='Example 2').pack(),
|
||||
),
|
||||
InlineKeyboardButton(
|
||||
text="📠 State",
|
||||
callback_data=callbacks.CExample.state,
|
||||
),
|
||||
)
|
||||
for i in list_build:
|
||||
inline_builder.row(i)
|
||||
|
||||
return inline_builder.as_markup(resize_keyboard=True)
|
||||
|
@ -23,7 +23,6 @@ async def mainstart(
|
||||
async def example_callback(
|
||||
message: aiogram.types.CallbackQuery,
|
||||
state: FSMContext,
|
||||
command: Command,
|
||||
bot: Bot,
|
||||
):
|
||||
await state.clear()
|
||||
@ -33,12 +32,12 @@ async def example_callback(
|
||||
async def example_callback_factory(
|
||||
message: aiogram.types.CallbackQuery,
|
||||
state: FSMContext,
|
||||
command: Command,
|
||||
bot: Bot,
|
||||
callback_data: factory.ExampleFactory = None,
|
||||
):
|
||||
await state.clear()
|
||||
await state.set_state(states.ExampleState.input_user)
|
||||
await message.answer()
|
||||
return await bot.send_message(
|
||||
chat_id=message.message.chat.id,
|
||||
text=f'CallbackData: {callback_data.example} | Set state, wait input...'
|
||||
@ -48,10 +47,9 @@ async def example_callback_factory(
|
||||
async def example_state(
|
||||
message: aiogram.types.Message,
|
||||
state: FSMContext,
|
||||
command: Command,
|
||||
bot: Bot,
|
||||
):
|
||||
await state.clear()
|
||||
return await message.answer(
|
||||
text=f"hello! Your text: \n\n{message.text}"
|
||||
text=f"hello! Your text: \n\n{message.text}\n\nState Off!"
|
||||
)
|
||||
|
Loading…
x
Reference in New Issue
Block a user