Module: Playbook::FlexGrow

Included in:
KitBase
Defined in:
lib/playbook/flex_grow.rb

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.included(base) ⇒ Object



5
6
7
# File 'lib/playbook/flex_grow.rb', line 5

def self.included(base)
  base.prop :flex_grow
end

Instance Method Details

#flex_grow_optionsObject

rubocop:enable Style/IfInsideElse



27
28
29
30
31
# File 'lib/playbook/flex_grow.rb', line 27

def flex_grow_options
  {
    flex_grow: "flex_grow",
  }
end

#flex_grow_propsObject

rubocop:disable Style/IfInsideElse



10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# File 'lib/playbook/flex_grow.rb', line 10

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

  selected_props.map do |k|
    flex_grow_value = send(k)
    if flex_grow_value.is_a?(Hash)
      flex_grow_value.map do |media_size, grow_value|
        "flex_grow_#{media_size}_#{grow_value}" if flex_grow_values.include? grow_value.to_s
      end
    else
      "flex_grow_#{flex_grow_value}" if flex_grow_values.include? flex_grow_value.to_s
    end
  end.compact.join(" ")
end

#flex_grow_valuesObject



33
34
35
# File 'lib/playbook/flex_grow.rb', line 33

def flex_grow_values
  %w[1 0]
end