class

Tourmaline::RoutedMenu

Inherits Reference < Object

The RoutedMenu helper class offers a simple to use DSL for creating menus, potentially with multiple levels. Includes support for HTTP like routing, route history, back buttons, and more.

Routes are hashed and shortened before being sent, which means you have no need to worry about the typical 65 character callback query data limit.

Example:

MENU = RoutedMenu.build do
  route "/" do
    content "Some content to go in the home route"
    buttons do
      route_button "Next page", "/page_2"
    end
  end

  route "/page_2" do
    content "..."
    buttons do
      back_button "Back"
    end
  end
end

# in a command
send_menu(chat_id, MENU)

Constructors

new(routes : Hash(String, Tourmaline::RoutedMenu::Page) = {} of String => Page, start_route = "/", group = Helpers.random_string(8))
Source

Class methods

build(starting_route = "/", **options, &)
Source
hash_route(route : String)
Source

Instance methods

add_route(route, page)
Source
current_page
Source
current_route
Source
event_handler
Source
handle_button_click(ctx)
Source
route_history
Source
routes
Source

Nested types