Sha256: 18f7762da3445af64ea355d0830d091d1246fc9e4cde99d64e9a002c9a0d0938

Contents?: true

Size: 1.33 KB

Versions: 194

Compression:

Stored size: 1.33 KB

Contents

# frozen_string_literal: true

require "action_view"

module Playbook
  module PbRadio
    class Radio < Playbook::KitBase
      prop :alignment, type: Playbook::Props::String,
                       default: ""
      prop :checked, type: Playbook::Props::Boolean,
                     default: false
      prop :error, type: Playbook::Props::Boolean,
                   default: false
      prop :disabled, type: Playbook::Props::Boolean, default: false
      prop :input_options, type: Playbook::Props::HashProp,
                           default: {}
      prop :name, type: Playbook::Props::String,
                  default: "radio_name"
      prop :text, type: Playbook::Props::String,
                  default: "Radio Text"
      prop :value, type: Playbook::Props::String,
                   default: "radio_text"

      def classname
        generate_classname("pb_radio_kit") + error_class + alignment_class
      end

      def selected
        "checked" if checked == true
      end

      def body_status
        error ? "negative" : nil
      end

      def input
        radio_button_tag(name, value, checked, input_options.merge(disabled: disabled))
      end

    private

      def error_class
        error ? " error" : ""
      end

      def alignment_class
        alignment == "vertical" ? " vertical" : ""
      end
    end
  end
end

Version data entries

194 entries across 194 versions & 1 rubygems

Version Path
playbook_ui-14.0.0 app/pb_kits/playbook/pb_radio/radio.rb
playbook_ui-13.34.1.pre.alpha.PLAY14633399 app/pb_kits/playbook/pb_radio/radio.rb
playbook_ui-13.34.1.pre.alpha.play1407statvaluekitinconsistencies3388 app/pb_kits/playbook/pb_radio/radio.rb
playbook_ui-13.34.1.pre.alpha.PLAY14703378 app/pb_kits/playbook/pb_radio/radio.rb
playbook_ui-13.34.0.pre.alpha.PLAY14143373 app/pb_kits/playbook/pb_radio/radio.rb
playbook_ui-13.34.0.pre.alpha.PLAY14143372 app/pb_kits/playbook/pb_radio/radio.rb
playbook_ui-13.34.1 app/pb_kits/playbook/pb_radio/radio.rb
playbook_ui-13.34.0.pre.alpha.PBNTR358responsiveadvancedtablereact3370 app/pb_kits/playbook/pb_radio/radio.rb
playbook_ui-13.34.0.pre.alpha.PBNTR358responsiveadvancedtablereact3369 app/pb_kits/playbook/pb_radio/radio.rb
playbook_ui-13.34.0.pre.alpha.PBNTR358responsiveadvancedtablereact3368 app/pb_kits/playbook/pb_radio/radio.rb
playbook_ui-13.34.0.pre.alpha.PBNTR358responsiveadvancedtablereact3366 app/pb_kits/playbook/pb_radio/radio.rb
playbook_ui-13.34.0.pre.alpha.PLAY14143358 app/pb_kits/playbook/pb_radio/radio.rb
playbook_ui-13.34.0.pre.alpha.PLAY14143357 app/pb_kits/playbook/pb_radio/radio.rb
playbook_ui-13.34.0 app/pb_kits/playbook/pb_radio/radio.rb
playbook_ui-13.33.1.pre.alpha.play1407statvaluekitinconsistencies3352 app/pb_kits/playbook/pb_radio/radio.rb
playbook_ui-13.33.1.pre.alpha.PLAY14143340 app/pb_kits/playbook/pb_radio/radio.rb
playbook_ui-13.33.1.pre.alpha.PLAY14143336 app/pb_kits/playbook/pb_radio/radio.rb
playbook_ui-13.33.1.pre.alpha.PLAY14063320 app/pb_kits/playbook/pb_radio/radio.rb
playbook_ui-13.33.1 app/pb_kits/playbook/pb_radio/radio.rb
playbook_ui-13.33.0.pre.alpha.PLAY14143318 app/pb_kits/playbook/pb_radio/radio.rb