Class: Discordrb::Events::ApplicationCommandEventHandler

Inherits:
EventHandler
  • Object
show all
Defined in:
lib/discordrb/events/interactions.rb

Overview

Event handler for ApplicationCommandEvents.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from EventHandler

#after_call, #match, #matches_all

Instance Attribute Details

#subcommandsHash (readonly)

Returns:

  • (Hash)


240
241
242
# File 'lib/discordrb/events/interactions.rb', line 240

def subcommands
  @subcommands
end

Instance Method Details

#group(name) {|| ... } ⇒ ApplicationCommandEventHandler

Parameters:

Yield Parameters:

Returns:

Raises:

  • (ArgumentError)


252
253
254
255
256
257
258
259
260
# File 'lib/discordrb/events/interactions.rb', line 252

def group(name)
  raise ArgumentError, 'Unable to mix subcommands and groups' if @subcommands.any? { |_, v| v.is_a? Proc }

  builder = SubcommandBuilder.new(name)
  yield builder

  @subcommands.merge!(builder.to_h)
  self
end

#subcommand(name) {|| ... } ⇒ ApplicationCommandEventHandler

Parameters:

Yield Parameters:

Returns:

Raises:

  • (ArgumentError)


265
266
267
268
269
270
271
# File 'lib/discordrb/events/interactions.rb', line 265

def subcommand(name, &block)
  raise ArgumentError, 'Unable to mix subcommands and groups' if @subcommands.any? { |_, v| v.is_a? Hash }

  @subcommands[name.to_sym] = block

  self
end