Class: Rubycord::Webhooks::View
- Inherits:
-
Object
- Object
- Rubycord::Webhooks::View
- Defined in:
- lib/rubycord/webhooks/view.rb
Overview
A reusable view representing a component collection, with builder methods.
Defined Under Namespace
Classes: RowBuilder, SelectMenuBuilder
Constant Summary collapse
- BUTTON_STYLES =
Possible button style names and values.
{ primary: 1, secondary: 2, success: 3, danger: 4, link: 5 }.freeze
- COMPONENT_TYPES =
Component types.
{ action_row: 1, button: 2, string_select: 3, # text_input: 4, # (defined in modal.rb) user_select: 5, role_select: 6, mentionable_select: 7, channel_select: 8 }.freeze
Instance Attribute Summary collapse
-
#rows ⇒ Object
readonly
Returns the value of attribute rows.
Instance Method Summary collapse
-
#initialize {|_self| ... } ⇒ View
constructor
A new instance of View.
-
#row {|| ... } ⇒ Object
Add a new ActionRow to the view.
Constructor Details
#initialize {|_self| ... } ⇒ View
Returns a new instance of View.
172 173 174 175 176 |
# File 'lib/rubycord/webhooks/view.rb', line 172 def initialize @rows = [] yield self if block_given? end |
Instance Attribute Details
#rows ⇒ Object (readonly)
Returns the value of attribute rows.
170 171 172 |
# File 'lib/rubycord/webhooks/view.rb', line 170 def rows @rows end |
Instance Method Details
#row {|| ... } ⇒ Object
Add a new ActionRow to the view
180 181 182 183 184 185 186 |
# File 'lib/rubycord/webhooks/view.rb', line 180 def row new_row = RowBuilder.new yield new_row @rows << new_row end |