Class: Discordrb::Webhooks::View::SelectMenuBuilder

Inherits:
Object
  • Object
show all
Defined in:
lib/discordrb/webhooks/view.rb

Overview

A builder to assist in adding options to select menus.

Instance Method Summary collapse

Constructor Details

#initialize(custom_id, options = [], placeholder = nil, min_values = nil, max_values = nil, disabled = nil, select_type: :string_select) ⇒ SelectMenuBuilder

Returns a new instance of SelectMenuBuilder.



130
131
132
133
134
135
136
137
138
# File 'lib/discordrb/webhooks/view.rb', line 130

def initialize(custom_id, options = [], placeholder = nil, min_values = nil, max_values = nil, disabled = nil, select_type: :string_select)
  @custom_id = custom_id
  @options = options
  @placeholder = placeholder
  @min_values = min_values
  @max_values = max_values
  @disabled = disabled
  @select_type = select_type
end

Instance Method Details

#option(label:, value:, description: nil, emoji: nil, default: nil) ⇒ Object

Add an option to this select menu.

Parameters:

  • label (String)

    The title of this option.

  • value (String)

    The value that this option represents.

  • description (String, nil) (defaults to: nil)

    An optional description of the option.

  • emoji (#to_h, String, Integer) (defaults to: nil)

    An emoji ID, or unicode emoji to attach to the button. Can also be a object that responds to #to_h which returns a hash in the format of { id: Integer, name: string }.

  • default (true, false, nil) (defaults to: nil)

    Whether this is the default selected option.



147
148
149
150
151
152
153
154
155
156
# File 'lib/discordrb/webhooks/view.rb', line 147

def option(label:, value:, description: nil, emoji: nil, default: nil)
  emoji = case emoji
          when Integer, String
            emoji.to_i.positive? ? { id: emoji } : { name: emoji }
          else
            emoji&.to_h
          end

  @options << { label: label, value: value, description: description, emoji: emoji, default: default }
end