Skip to content

class Tourmaline::RoutedMenu
inherits Reference #

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 = {} of String => Page, start_route = "/", group = Helpers.random_string(8)) #

View source

Class methods#

.build(starting_route = "/" #

View source

.hash_route(route : String) #

View source

Methods#

#add_route(route, page) #

View source

#current_page #

View source

#current_route : String #

View source

#event_handler : EventHandler #

View source

#handle_button_click(ctx) #

View source

#route_history : Array(String) #

View source

#routes : Hash(String, Page) #

View source