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) ⇒ SelectMenuBuilder

Returns a new instance of SelectMenuBuilder.



78
79
80
81
82
83
84
# File 'lib/discordrb/webhooks/view.rb', line 78

def initialize(custom_id, options = [], placeholder = nil, min_values = nil, max_values = nil)
  @custom_id = custom_id
  @options = options
  @placeholder = placeholder
  @min_values = min_values
  @max_values = max_values
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.



93
94
95
96
97
98
99
100
101
102
# File 'lib/discordrb/webhooks/view.rb', line 93

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