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.2.0.pre.alpha.fixphonenumberinputflag3631 app/pb_kits/playbook/pb_radio/radio.rb
playbook_ui-14.2.0.pre.alpha.PLAY15063628 app/pb_kits/playbook/pb_radio/radio.rb
playbook_ui-14.2.0.pre.alpha.PLAY15063626 app/pb_kits/playbook/pb_radio/radio.rb
playbook_ui-14.2.0.pre.alpha.PLAY15063624 app/pb_kits/playbook/pb_radio/radio.rb
playbook_ui-14.2.0.pre.alpha.play1432playgroundsanitation3622 app/pb_kits/playbook/pb_radio/radio.rb
playbook_ui-14.2.0.pre.alpha.PLAY15063621 app/pb_kits/playbook/pb_radio/radio.rb
playbook_ui-14.2.0.pre.alpha.PLAY15063620 app/pb_kits/playbook/pb_radio/radio.rb
playbook_ui-14.2.0.pre.alpha.PLAY15063619 app/pb_kits/playbook/pb_radio/radio.rb
playbook_ui-14.2.0.pre.alpha.PLAY15063618 app/pb_kits/playbook/pb_radio/radio.rb
playbook_ui-14.3.0.pre.rc.0 app/pb_kits/playbook/pb_radio/radio.rb
playbook_ui-14.1.0.pre.alpha.PLAY15063617 app/pb_kits/playbook/pb_radio/radio.rb
playbook_ui-14.1.0.pre.alpha.PLAY15063616 app/pb_kits/playbook/pb_radio/radio.rb
playbook_ui-14.1.0.pre.alpha.PLAY15063615 app/pb_kits/playbook/pb_radio/radio.rb
playbook_ui-14.1.0.pre.alpha.PLAY15063614 app/pb_kits/playbook/pb_radio/radio.rb
playbook_ui-14.1.0.pre.alpha.PLAY15063613 app/pb_kits/playbook/pb_radio/radio.rb
playbook_ui-14.1.0.pre.alpha.PLAY15063612 app/pb_kits/playbook/pb_radio/radio.rb
playbook_ui-14.1.0.pre.alpha.PLAY15063610 app/pb_kits/playbook/pb_radio/radio.rb
playbook_ui-14.1.0.pre.alpha.PBNTR417addcolorsupdatedefaultcolor3608 app/pb_kits/playbook/pb_radio/radio.rb
playbook_ui-14.1.0.pre.alpha.PBNTR449rtepreviewerrails3605 app/pb_kits/playbook/pb_radio/radio.rb
playbook_ui-14.1.0.pre.alpha.PA1477timestampkit3601 app/pb_kits/playbook/pb_radio/radio.rb