Module: Playbook::FlexWrap
- Included in:
- KitBase
- Defined in:
- lib/playbook/flex_wrap.rb
Class Method Summary collapse
Instance Method Summary collapse
-
#flex_wrap_options ⇒ Object
rubocop:enable Style/IfInsideElse.
-
#flex_wrap_props ⇒ Object
rubocop:disable Style/IfInsideElse.
- #flex_wrap_values ⇒ Object
Class Method Details
.included(base) ⇒ Object
5 6 7 |
# File 'lib/playbook/flex_wrap.rb', line 5 def self.included(base) base.prop :flex_wrap end |
Instance Method Details
#flex_wrap_options ⇒ Object
rubocop:enable Style/IfInsideElse
27 28 29 30 31 |
# File 'lib/playbook/flex_wrap.rb', line 27 def { flex_wrap: "flex_wrap", } end |
#flex_wrap_props ⇒ Object
rubocop:disable Style/IfInsideElse
10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
# File 'lib/playbook/flex_wrap.rb', line 10 def flex_wrap_props selected_props = .keys.select { |sk| try(sk) } return nil unless selected_props.present? selected_props.map do |k| flex_wrap_value = send(k) if flex_wrap_value.is_a?(Hash) flex_wrap_value.map do |media_size, wrap_value| "flex_wrap_#{media_size}_#{wrap_value.underscore}" if flex_wrap_values.include? wrap_value end else "flex_wrap_#{flex_wrap_value}" if flex_wrap_values.include? flex_wrap_value end end.compact.join(" ") end |
#flex_wrap_values ⇒ Object
33 34 35 |
# File 'lib/playbook/flex_wrap.rb', line 33 def flex_wrap_values %w[wrap nowrap wrapReverse] end |