Class: Uchi::Flowbite::Input::RadioButton

Inherits:
Field
  • Object
show all
Defined in:
app/components/uchi/flowbite/input/radio_button.rb

Overview

The radio button component can be used to allow the user to choose a single option from one or more available options.

flowbite.com/docs/forms/radio/

Constant Summary

Constants inherited from Field

Field::SIZES, Field::STATES

Instance Attribute Summary

Attributes inherited from Field

#options, #size, #style

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Field

classes, #classes

Constructor Details

#initialize(attribute:, form:, value:, class: nil, disabled: false, options: {}) ⇒ RadioButton

Returns a new instance of RadioButton.



40
41
42
43
# File 'app/components/uchi/flowbite/input/radio_button.rb', line 40

def initialize(attribute:, form:, value:, class: nil, disabled: false, options: {})
  super(attribute: attribute, class: binding.local_variable_get(:class), disabled: disabled, form: form, options: options)
  @value = value
end

Class Method Details

.sizesObject

Radio buttons only have their default size.



12
13
14
15
16
# File 'app/components/uchi/flowbite/input/radio_button.rb', line 12

def sizes
  {
    default: ["w-4", "h-4"]
  }
end

.stylesObject

rubocop:disable Layout/LineLength



19
20
21
22
23
24
25
26
27
# File 'app/components/uchi/flowbite/input/radio_button.rb', line 19

def styles
  {
    default: Uchi::Flowbite::Style.new(
      default: ["text-brand", "bg-neutral-secondary-medium", "border-default-medium", "focus:ring-brand", "focus:ring-2"],
      disabled: ["text-brand", "bg-neutral-secondary-medium", "border-default-medium", "focus:ring-brand", "focus:ring-2", "cursor-not-allowed"],
      error: ["text-danger", "bg-danger-soft", "border-danger-subtle", "focus:ring-danger", "focus:ring-2"]
    )
  }.freeze
end

Instance Method Details

#callObject

Returns the HTML to use for the actual input field element.



31
32
33
34
35
36
37
38
# File 'app/components/uchi/flowbite/input/radio_button.rb', line 31

def call
  @form.send(
    input_field_type,
    @attribute,
    @value,
    **input_options
  )
end

#input_field_typeObject



45
46
47
# File 'app/components/uchi/flowbite/input/radio_button.rb', line 45

def input_field_type
  :radio_button
end