Sha256: cfd876acb071d8651b0c422d7be25d809152ed78d05d7b4c91f2290c6f7e342f

Contents?: true

Size: 1.26 KB

Versions: 151

Compression:

Stored size: 1.26 KB

Contents

# frozen_string_literal: true

module Playbook
  module PbCheckbox
    class Checkbox < Playbook::KitBase
      prop :error, type: Playbook::Props::Boolean, default: false
      prop :checked, type: Playbook::Props::Boolean, default: false
      prop :indeterminate, type: Playbook::Props::Boolean, default: false
      prop :text
      prop :value
      prop :name
      prop :disabled, type: Playbook::Props::Boolean, default: false

      prop :input_options, type: Playbook::Props::HashProp,
                           default: {}
      prop :required, type: Playbook::Props::Boolean,
                      default: false
      prop :form_spacing, type: Playbook::Props::Boolean,
                          default: false

      def classname
        generate_classname("pb_checkbox_kit", checked_class) + indeterminate_class + error_class
      end

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

      def checkbox_label_status
        error ? "negative" : nil
      end

    private

      def error_class
        error ? " error" : ""
      end

      def checked_class
        checked ? "on" : "off"
      end

      def indeterminate_class
        indeterminate ? " indeterminate" : ""
      end
    end
  end
end

Version data entries

151 entries across 151 versions & 1 rubygems

Version Path
playbook_ui-14.11.1.pre.alpha.PLAY17445539 app/pb_kits/playbook/pb_checkbox/checkbox.rb
playbook_ui-14.11.1.pre.alpha.PBNTR798datepickerturbo5537 app/pb_kits/playbook/pb_checkbox/checkbox.rb
playbook_ui-14.11.1.pre.alpha.pbntr703collapsiblerowsrails5536 app/pb_kits/playbook/pb_checkbox/checkbox.rb
playbook_ui-14.11.1.pre.alpha.PLAY1751pbcontenttagpt25529 app/pb_kits/playbook/pb_checkbox/checkbox.rb
playbook_ui-14.11.1.pre.alpha.PBNTR7495495 app/pb_kits/playbook/pb_checkbox/checkbox.rb
playbook_ui-14.12.0.pre.rc.11 app/pb_kits/playbook/pb_checkbox/checkbox.rb
playbook_ui-14.12.0.pre.rc.10 app/pb_kits/playbook/pb_checkbox/checkbox.rb
playbook_ui-14.12.0.pre.rc.9 app/pb_kits/playbook/pb_checkbox/checkbox.rb
playbook_ui-14.12.0.pre.rc.8 app/pb_kits/playbook/pb_checkbox/checkbox.rb
playbook_ui-14.12.0.pre.rc.7 app/pb_kits/playbook/pb_checkbox/checkbox.rb
playbook_ui-14.11.1.pre.alpha.play1724darkmodeauditmap5437 app/pb_kits/playbook/pb_checkbox/checkbox.rb
playbook_ui-14.11.1.pre.alpha.PBNTR719listdraggablesimple5432 app/pb_kits/playbook/pb_checkbox/checkbox.rb
playbook_ui-14.11.1.pre.alpha.PBNTR768stickyrightcolumn5431 app/pb_kits/playbook/pb_checkbox/checkbox.rb
playbook_ui-14.12.0.pre.rc.6 app/pb_kits/playbook/pb_checkbox/checkbox.rb
playbook_ui-14.11.1.pre.alpha.PBNTR718simiplifieddraggablereact5415 app/pb_kits/playbook/pb_checkbox/checkbox.rb
playbook_ui-14.11.1.pre.alpha.play1724darkmodeauditmap5413 app/pb_kits/playbook/pb_checkbox/checkbox.rb
playbook_ui-14.12.0.pre.rc.5 app/pb_kits/playbook/pb_checkbox/checkbox.rb
playbook_ui-14.11.1.pre.alpha.play1724darkmodeauditmap5409 app/pb_kits/playbook/pb_checkbox/checkbox.rb
playbook_ui-14.11.1.pre.alpha.PBNTR718simiplifieddraggablereact5400 app/pb_kits/playbook/pb_checkbox/checkbox.rb
playbook_ui-14.11.1.pre.alpha.PBNTR718simiplifieddraggablereact5392 app/pb_kits/playbook/pb_checkbox/checkbox.rb