Sha256: 36dd4aeb6c408b29a5e3c09fa9bbea9b09cd44fe2345510d0acaa83306014a0f

Contents?: true

Size: 1 KB

Versions: 874

Compression:

Stored size: 1 KB

Contents

# frozen_string_literal: true

module Playbook
  module ZIndex
    def self.included(base)
      base.prop :z_index
    end

    def z_index_values
      %w[1 2 3 4 5 6 7 8 9 10]
    end

    def z_index_options
      {
        z_index: "z-index",
      }
    end

    def screen_size_values
      %w[xs sm md lg xl]
    end

    def z_index_props
      selected_props = z_index_options.keys.select { |sk| try(sk) }
      return nil unless selected_props.present?

      responsive = selected_props.present? && try(:z_index).is_a?(::Hash)
      css = ""
      if responsive
        z_index_value = send(:z_index)
        z_index_value.each do |key, value|
          css += "z_index_#{key}_#{value} " if screen_size_values.include?(key.to_s) && z_index_values.include?(value.to_s)
        end
      else
        selected_props.each do |k|
          z_index_value = send(k)
          css += "z_index_#{z_index_value} " if z_index_values.include? z_index_value
        end
      end

      css unless css.blank?
    end
  end
end

Version data entries

874 entries across 874 versions & 1 rubygems

Version Path
playbook_ui-14.9.0.pre.alpha.PBNTR746datepickerdefaultbug4901 lib/playbook/z_index.rb
playbook_ui-14.9.0.pre.alpha.PBNTR746datepickerdefaultbug4898 lib/playbook/z_index.rb
playbook_ui-14.9.0.pre.alpha.PBNTR746datepickerdefaultbug4891 lib/playbook/z_index.rb
playbook_ui-14.9.0.pre.alpha.PLAY1731inputmasking4890 lib/playbook/z_index.rb
playbook_ui-14.9.0.pre.alpha.play1703errorstatealignment4889 lib/playbook/z_index.rb
playbook_ui-14.10.0.pre.rc.12 lib/playbook/z_index.rb
playbook_ui-14.10.0.pre.rc.11 lib/playbook/z_index.rb
playbook_ui-14.9.0.pre.alpha.PLAY1731inputmasking4868 lib/playbook/z_index.rb
playbook_ui-14.9.0.pre.alpha.PLAY1731inputmasking4866 lib/playbook/z_index.rb
playbook_ui-14.9.0.pre.alpha.PBNTR738collapsiblewithintablekit4855 lib/playbook/z_index.rb
playbook_ui-14.10.0.pre.rc.10 lib/playbook/z_index.rb
playbook_ui-14.10.0.pre.rc.9 lib/playbook/z_index.rb
playbook_ui-14.10.0.pre.rc.8 lib/playbook/z_index.rb
playbook_ui-14.10.0.pre.rc.7 lib/playbook/z_index.rb
playbook_ui-14.10.0.pre.rc.6 lib/playbook/z_index.rb
playbook_ui-14.10.0.pre.rc.5 lib/playbook/z_index.rb
playbook_ui-14.10.0.pre.rc.4 lib/playbook/z_index.rb
playbook_ui-14.9.0.pre.alpha.PLAY16264818 lib/playbook/z_index.rb
playbook_ui-14.9.0.pre.alpha.PBNTR702stickyleftcolrails4806 lib/playbook/z_index.rb
playbook_ui-14.10.0.pre.rc.3 lib/playbook/z_index.rb