Module: Playbook::Flex
- Included in:
- KitBase
- Defined in:
- lib/playbook/flex.rb
Class Method Summary collapse
Instance Method Summary collapse
-
#flex_options ⇒ Object
rubocop:enable Style/IfInsideElse.
-
#flex_props ⇒ Object
rubocop:disable Style/IfInsideElse.
- #flex_values ⇒ Object
Class Method Details
.included(base) ⇒ Object
5 6 7 |
# File 'lib/playbook/flex.rb', line 5 def self.included(base) base.prop :flex end |
Instance Method Details
#flex_options ⇒ Object
rubocop:enable Style/IfInsideElse
27 28 29 30 31 |
# File 'lib/playbook/flex.rb', line 27 def { flex: "flex", } end |
#flex_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.rb', line 10 def flex_props selected_props = .keys.select { |sk| try(sk) } return nil unless selected_props.present? selected_props.map do |k| flex_value = send(k) if flex_value.is_a?(Hash) flex_value.map do |media_size, value| "flex_#{media_size}_#{value}" if flex_values.include? value.to_s end else "flex_#{flex_value}" if flex_values.include? flex_value.to_s end end.compact.join(" ") end |
#flex_values ⇒ Object
33 34 35 |
# File 'lib/playbook/flex.rb', line 33 def flex_values %w[auto initial 0 1 2 3 4 5 6 7 8 9 10 11 12 none] end |