Sha256: 7e67e603ae2ebdc86e715298870f5c41dcca59ab2a55f432702ac795d4859037
Contents?: true
Size: 1.02 KB
Versions: 1038
Compression:
Stored size: 1.02 KB
Contents
# frozen_string_literal: true module Playbook module FlexDirection def self.included(base) base.prop :flex_direction end # rubocop:disable Style/IfInsideElse def flex_direction_props selected_props = flex_direction_options.keys.select { |sk| try(sk) } return nil unless selected_props.present? selected_props.map do |k| flex_direction_value = send(k) if flex_direction_value.is_a?(Hash) flex_direction_value.map do |media_size, flex_value| "flex_direction_#{media_size}_#{flex_value.underscore}" if flex_direction_values.include? flex_value end else "flex_direction_#{flex_direction_value.underscore}" if flex_direction_values.include? flex_direction_value end end.compact.join(" ") end # rubocop:enable Style/IfInsideElse def flex_direction_options { flex_direction: "flex_direction", } end def flex_direction_values %w[row column rowReverse columnReverse] end end end
Version data entries
1,038 entries across 1,038 versions & 1 rubygems