Class: Discordrb::Interactions::OptionBuilder
- Inherits:
-
Object
- Object
- Discordrb::Interactions::OptionBuilder
- Defined in:
- lib/discordrb/data/interaction.rb
Overview
A builder for defining slash commands options.
Constant Summary collapse
- CHANNEL_TYPES =
Channel types that can be provided to #channel
{ text: 0, dm: 1, voice: 2, group_dm: 3, category: 4, news: 5, store: 6, news_thread: 10, public_thread: 11, private_thread: 12, stage: 13 }.freeze
Instance Attribute Summary collapse
- #options ⇒ Array<Hash> readonly
Instance Method Summary collapse
-
#boolean(name, description, required: nil) ⇒ Object
Hash.
-
#channel(name, description, required: nil, types: nil) ⇒ Object
Hash.
-
#integer(name, description, required: nil, choices: nil) ⇒ Object
Hash.
-
#mentionable(name, description, required: nil) ⇒ Object
Hash.
-
#number(name, description, required: nil, min_value: nil, max_value: nil, choices: nil) ⇒ Object
Hash.
-
#role(name, description, required: nil) ⇒ Object
Hash.
-
#string(name, description, required: nil, choices: nil) ⇒ Object
Hash.
-
#subcommand(name, description) {|| ... } ⇒ Object
Hash.
-
#subcommand_group(name, description) {|| ... } ⇒ Object
Hash.
- #to_a ⇒ Array<Hash>
-
#user(name, description, required: nil) ⇒ Object
Hash.
Instance Attribute Details
#options ⇒ Array<Hash> (readonly)
367 368 369 |
# File 'lib/discordrb/data/interaction.rb', line 367 def @options end |
Instance Method Details
#boolean(name, description, required: nil) ⇒ Object
Returns Hash.
432 433 434 |
# File 'lib/discordrb/data/interaction.rb', line 432 def boolean(name, description, required: nil) option(TYPES[:boolean], name, description, required: required) end |
#channel(name, description, required: nil, types: nil) ⇒ Object
Returns Hash.
449 450 451 452 |
# File 'lib/discordrb/data/interaction.rb', line 449 def channel(name, description, required: nil, types: nil) types = types&.collect { |type| type.is_a?(Numeric) ? type : CHANNEL_TYPES[type] } option(TYPES[:channel], name, description, required: required, channel_types: types) end |
#integer(name, description, required: nil, choices: nil) ⇒ Object
Returns Hash.
424 425 426 |
# File 'lib/discordrb/data/interaction.rb', line 424 def integer(name, description, required: nil, choices: nil) option(TYPES[:integer], name, description, required: required, choices: choices) end |
#mentionable(name, description, required: nil) ⇒ Object
Returns Hash.
466 467 468 |
# File 'lib/discordrb/data/interaction.rb', line 466 def mentionable(name, description, required: nil) option(TYPES[:mentionable], name, description, required: required) end |
#number(name, description, required: nil, min_value: nil, max_value: nil, choices: nil) ⇒ Object
Returns Hash.
474 475 476 477 |
# File 'lib/discordrb/data/interaction.rb', line 474 def number(name, description, required: nil, min_value: nil, max_value: nil, choices: nil) option(TYPES[:number], name, description, required: required, min_value: min_value, max_value: max_value, choices: choices) end |
#role(name, description, required: nil) ⇒ Object
Returns Hash.
458 459 460 |
# File 'lib/discordrb/data/interaction.rb', line 458 def role(name, description, required: nil) option(TYPES[:role], name, description, required: required) end |
#string(name, description, required: nil, choices: nil) ⇒ Object
Returns Hash.
415 416 417 |
# File 'lib/discordrb/data/interaction.rb', line 415 def string(name, description, required: nil, choices: nil) option(TYPES[:string], name, description, required: required, choices: choices) end |
#subcommand(name, description) {|| ... } ⇒ Object
Returns Hash.
384 385 386 387 388 389 |
# File 'lib/discordrb/data/interaction.rb', line 384 def subcommand(name, description) builder = OptionBuilder.new yield builder if block_given? option(TYPES[:subcommand], name, description, options: builder.to_a) end |
#subcommand_group(name, description) {|| ... } ⇒ Object
Returns Hash.
403 404 405 406 407 408 |
# File 'lib/discordrb/data/interaction.rb', line 403 def subcommand_group(name, description) builder = OptionBuilder.new yield builder option(TYPES[:subcommand_group], name, description, options: builder.to_a) end |
#to_a ⇒ Array<Hash>
501 502 503 |
# File 'lib/discordrb/data/interaction.rb', line 501 def to_a @options end |
#user(name, description, required: nil) ⇒ Object
Returns Hash.
440 441 442 |
# File 'lib/discordrb/data/interaction.rb', line 440 def user(name, description, required: nil) option(TYPES[:user], name, description, required: required) end |