Sha256: 809f245f6b2bc335552abe660674ecf48a43e68ebab8484f1d9201dc6cfda1ec

Contents?: true

Size: 1.33 KB

Versions: 384

Compression:

Stored size: 1.33 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 checked_html
        checked ? "checked='true'" : nil
      end

      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

384 entries across 384 versions & 1 rubygems

Version Path
playbook_ui-14.6.0.pre.rc.23 app/pb_kits/playbook/pb_checkbox/checkbox.rb
playbook_ui-14.6.0.pre.rc.22 app/pb_kits/playbook/pb_checkbox/checkbox.rb
playbook_ui-14.6.0.pre.rc.21 app/pb_kits/playbook/pb_checkbox/checkbox.rb
playbook_ui-14.5.0.pre.alpha.PLAY1548intltelinputupdatelatest4175 app/pb_kits/playbook/pb_checkbox/checkbox.rb
playbook_ui-14.6.0.pre.rc.20 app/pb_kits/playbook/pb_checkbox/checkbox.rb
playbook_ui-14.5.0.pre.alpha.PLAY1548intltelinputupdatelatest4162 app/pb_kits/playbook/pb_checkbox/checkbox.rb
playbook_ui-14.5.0.pre.alpha.PBNTR595popoverwidthpropfilterpopoverprop4158 app/pb_kits/playbook/pb_checkbox/checkbox.rb
playbook_ui-14.5.0.pre.alpha.PBNTR614advancedtablepoc4155 app/pb_kits/playbook/pb_checkbox/checkbox.rb
playbook_ui-14.6.0.pre.rc.19 app/pb_kits/playbook/pb_checkbox/checkbox.rb
playbook_ui-14.6.0.pre.rc.18 app/pb_kits/playbook/pb_checkbox/checkbox.rb
playbook_ui-14.5.0.pre.alpha.play1549upgradereactmodal4130 app/pb_kits/playbook/pb_checkbox/checkbox.rb
playbook_ui-14.5.0.pre.alpha.PLAY1601updatereactzoompanpinch4128 app/pb_kits/playbook/pb_checkbox/checkbox.rb
playbook_ui-14.5.0.pre.alpha.PLAY1601updatereactzoompanpinch4123 app/pb_kits/playbook/pb_checkbox/checkbox.rb
playbook_ui-14.6.0.pre.rc.17 app/pb_kits/playbook/pb_checkbox/checkbox.rb
playbook_ui-14.5.0.pre.alpha.play1586datearea4115 app/pb_kits/playbook/pb_checkbox/checkbox.rb
playbook_ui-14.6.0.pre.rc.16 app/pb_kits/playbook/pb_checkbox/checkbox.rb
playbook_ui-14.5.0.pre.alpha.PLAY1485selectablecardoverflowoutlinebug4098 app/pb_kits/playbook/pb_checkbox/checkbox.rb
playbook_ui-14.5.0.pre.alpha.PLAY1485selectablecardoverflowoutlinebug4097 app/pb_kits/playbook/pb_checkbox/checkbox.rb
playbook_ui-14.5.0.pre.alpha.PLAY1485selectablecardoverflowoutlinebug4094 app/pb_kits/playbook/pb_checkbox/checkbox.rb
playbook_ui-14.6.0.pre.rc.15 app/pb_kits/playbook/pb_checkbox/checkbox.rb