Class: Flowbite::Input::RadioButton

Inherits:
Field
  • Object
show all
Defined in:
app/components/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:, disabled: false, options: {}) ⇒ RadioButton

Returns a new instance of RadioButton.



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

def initialize(attribute:, form:, value:, disabled: false, options: {})
  super(attribute: attribute, 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/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/flowbite/input/radio_button.rb', line 19

def styles
  {
    default: Flowbite::Style.new(
      default: ["text-blue-600", "bg-gray-100", "border-gray-300", "focus:ring-blue-500", "dark:focus:ring-blue-600", "dark:ring-offset-gray-800", "focus:ring-2", "dark:bg-gray-700", "dark:border-gray-600"],
      disabled: ["text-blue-600", "bg-gray-100", "border-gray-300", "focus:ring-blue-500", "dark:focus:ring-blue-600", "dark:ring-offset-gray-800", "focus:ring-2", "dark:bg-gray-700", "dark:border-gray-600"],
      error: ["text-red-600", "bg-red-50", "border-red-500", "focus:ring-red-500", "dark:focus:ring-red-600", "dark:ring-offset-gray-800", "focus:ring-2", "dark:bg-gray-700", "dark:border-red-500"]
    )
  }.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/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/flowbite/input/radio_button.rb', line 45

def input_field_type
  :radio_button
end