Class: Ariadne::Forms::Dsl::InputGroup
- Inherits:
-
Object
- Object
- Ariadne::Forms::Dsl::InputGroup
- Includes:
- InputMethods
- Defined in:
- lib/ariadne/forms/dsl/input_group.rb
Overview
:nodoc:
Instance Attribute Summary collapse
-
#builder ⇒ Object
readonly
Returns the value of attribute builder.
-
#form ⇒ Object
readonly
Returns the value of attribute form.
-
#system_arguments ⇒ Object
readonly
Returns the value of attribute system_arguments.
Instance Method Summary collapse
-
#initialize(builder:, form:, **options) {|_self| ... } ⇒ InputGroup
constructor
A new instance of InputGroup.
- #input? ⇒ Boolean
- #to_component ⇒ Object
- #type ⇒ Object
Methods included from InputMethods
#action_menu, #auto_complete, #button, #check_box, #check_box_group, #clipboard_copy_button, #fields_for, #hidden, #inputs, #multi, #radio_button_group, #select_list, #separator, #status, #submit, #text_area, #text_field
Constructor Details
#initialize(builder:, form:, **options) {|_self| ... } ⇒ InputGroup
Returns a new instance of InputGroup.
12 13 14 15 16 17 18 |
# File 'lib/ariadne/forms/dsl/input_group.rb', line 12 def initialize(builder:, form:, **) @builder = builder @form = form @options = yield(self) if block_given? end |
Instance Attribute Details
#builder ⇒ Object (readonly)
Returns the value of attribute builder.
10 11 12 |
# File 'lib/ariadne/forms/dsl/input_group.rb', line 10 def builder @builder end |
#form ⇒ Object (readonly)
Returns the value of attribute form.
10 11 12 |
# File 'lib/ariadne/forms/dsl/input_group.rb', line 10 def form @form end |
#system_arguments ⇒ Object (readonly)
Returns the value of attribute system_arguments.
10 11 12 |
# File 'lib/ariadne/forms/dsl/input_group.rb', line 10 def system_arguments @system_arguments end |
Instance Method Details
#input? ⇒ Boolean
28 29 30 |
# File 'lib/ariadne/forms/dsl/input_group.rb', line 28 def input? true end |
#to_component ⇒ Object
20 21 22 |
# File 'lib/ariadne/forms/dsl/input_group.rb', line 20 def to_component Ariadne::Form::Group::Component.new(inputs: inputs, builder: builder, form: form, **@options) end |
#type ⇒ Object
24 25 26 |
# File 'lib/ariadne/forms/dsl/input_group.rb', line 24 def type :group end |