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.7.0.pre.alpha.spacingquickchange4482 app/pb_kits/playbook/pb_checkbox/checkbox.rb
playbook_ui-14.7.0.pre.alpha.PBNTR637quickpickdefaultdate4478 app/pb_kits/playbook/pb_checkbox/checkbox.rb
playbook_ui-14.7.0.pre.alpha.PBNTR667railstypeaheadformintegration4454 app/pb_kits/playbook/pb_checkbox/checkbox.rb
playbook_ui-14.8.0.pre.rc.1 app/pb_kits/playbook/pb_checkbox/checkbox.rb
playbook_ui-14.7.0.pre.alpha.dependabotnpmandyarnintltelinput24704448 app/pb_kits/playbook/pb_checkbox/checkbox.rb
playbook_ui-14.8.0.pre.rc.0 app/pb_kits/playbook/pb_checkbox/checkbox.rb
playbook_ui-14.7.0 app/pb_kits/playbook/pb_checkbox/checkbox.rb
playbook_ui-14.6.2.pre.alpha.PLAY1613darkdatetimecolors4432 app/pb_kits/playbook/pb_checkbox/checkbox.rb
playbook_ui-14.7.0.pre.rc.19 app/pb_kits/playbook/pb_checkbox/checkbox.rb
playbook_ui-14.7.0.pre.rc.18 app/pb_kits/playbook/pb_checkbox/checkbox.rb
playbook_ui-14.6.2.pre.alpha.PBNTR667railstypeaheadformintegration4424 app/pb_kits/playbook/pb_checkbox/checkbox.rb
playbook_ui-14.7.0.pre.rc.17 app/pb_kits/playbook/pb_checkbox/checkbox.rb
playbook_ui-14.7.0.pre.rc.16 app/pb_kits/playbook/pb_checkbox/checkbox.rb
playbook_ui-14.7.0.pre.rc.15 app/pb_kits/playbook/pb_checkbox/checkbox.rb
playbook_ui-14.7.0.pre.rc.14 app/pb_kits/playbook/pb_checkbox/checkbox.rb
playbook_ui-14.7.0.pre.rc.13 app/pb_kits/playbook/pb_checkbox/checkbox.rb
playbook_ui-14.6.2.pre.alpha.PBNTR666advancedtablefirstcolumn4406 app/pb_kits/playbook/pb_checkbox/checkbox.rb
playbook_ui-14.7.0.pre.rc.12 app/pb_kits/playbook/pb_checkbox/checkbox.rb
playbook_ui-14.6.2.pre.alpha.PLAY15814384 app/pb_kits/playbook/pb_checkbox/checkbox.rb
playbook_ui-14.6.2.pre.alpha.PBNTR633dropdownavailablepropstable4380 app/pb_kits/playbook/pb_checkbox/checkbox.rb