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.10.0.pre.alpha.play1662cssbargraph5201 app/pb_kits/playbook/pb_checkbox/checkbox.rb
playbook_ui-14.11.0.pre.rc.9 app/pb_kits/playbook/pb_checkbox/checkbox.rb
playbook_ui-14.10.0.pre.alpha.play1662cssbargraph5200 app/pb_kits/playbook/pb_checkbox/checkbox.rb
playbook_ui-14.11.0.pre.rc.8 app/pb_kits/playbook/pb_checkbox/checkbox.rb
playbook_ui-14.11.0.pre.rc.7 app/pb_kits/playbook/pb_checkbox/checkbox.rb
playbook_ui-14.11.0.pre.rc.6 app/pb_kits/playbook/pb_checkbox/checkbox.rb
playbook_ui-14.11.0.pre.rc.5 app/pb_kits/playbook/pb_checkbox/checkbox.rb
playbook_ui-14.10.0.pre.alpha.play1662cssbargraph5193 app/pb_kits/playbook/pb_checkbox/checkbox.rb
playbook_ui-14.11.0.pre.rc.4 app/pb_kits/playbook/pb_checkbox/checkbox.rb
playbook_ui-14.11.0.pre.rc.3 app/pb_kits/playbook/pb_checkbox/checkbox.rb
playbook_ui-14.10.0.pre.alpha.PBNTR662stickyrightcolumnreact5160 app/pb_kits/playbook/pb_checkbox/checkbox.rb
playbook_ui-14.11.0.pre.rc.2 app/pb_kits/playbook/pb_checkbox/checkbox.rb
playbook_ui-14.11.0.pre.rc.1 app/pb_kits/playbook/pb_checkbox/checkbox.rb
playbook_ui-14.10.0.pre.alpha.PBNTR775formmatingmaskdefaultvalue5137 app/pb_kits/playbook/pb_checkbox/checkbox.rb
playbook_ui-14.11.0.pre.rc.0 app/pb_kits/playbook/pb_checkbox/checkbox.rb
playbook_ui-14.9.0.pre.alpha.PBNTR767advancedtablemultiheadercolumns5136 app/pb_kits/playbook/pb_checkbox/checkbox.rb
playbook_ui-14.9.0.pre.alpha.PBNTR775formmatingmaskdefaultvalue5121 app/pb_kits/playbook/pb_checkbox/checkbox.rb
playbook_ui-14.9.0.pre.alpha.PBNTR775formmatingmaskdefaultvalue5120 app/pb_kits/playbook/pb_checkbox/checkbox.rb
playbook_ui-14.10.0 app/pb_kits/playbook/pb_checkbox/checkbox.rb
playbook_ui-14.10.0.pre.rc.24 app/pb_kits/playbook/pb_checkbox/checkbox.rb