Sha256: 89b611ad5e1f8d9edaf60d81c1c93aba289c68e8b967c921b6725532fc3362d5

Contents?: true

Size: 2 KB

Versions: 2

Compression:

Stored size: 2 KB

Contents

# frozen_string_literal: true

module Datagrid
  module Filters
    module SelectOptions
      def select(object)
        select = options[:select]
        if select.is_a?(Symbol)
          object.send(select)
        elsif select.respond_to?(:call)
          Datagrid::Utils.apply_args(object, &select)
        else
          select
        end
      end

      def select_values(object)
        options = select(object)
        groups_used = grouped_choices?(options)
        options.map do |option|
          if groups_used
            option[1].map { |o| option_text_and_value(o) }
          else
            option_text_and_value(option)
          end
        end.map(&:last)
      end

      def include_blank
        return if prompt

        if options.key?(:include_blank)
          Datagrid::Utils.callable(options[:include_blank])
        else
          !multiple?
        end
      end

      def prompt
        options.key?(:prompt) ? Datagrid::Utils.callable(options[:prompt]) : false
      end

      protected

      # Rails built-in method:
      # https://github.com/rails/rails/blob/94e80269e36caf7b2d22a7ab68e6898d3a824122/actionview/lib/action_view/helpers/form_options_helper.rb#L789
      # Code reuse is difficult, so it is easier to duplicate it
      def option_text_and_value(option)
        # Options are [text, value] pairs or strings used for both.
        if !option.is_a?(String) && option.respond_to?(:first) && option.respond_to?(:last)
          option = option.reject { |e| e.is_a?(Hash) } if option.is_a?(Array)
          [option.first, option.last]
        else
          [option, option]
        end
      end

      # Rails built-in method:
      # https://github.com/rails/rails/blob/f95c0b7e96eb36bc3efc0c5beffbb9e84ea664e4/actionview/lib/action_view/helpers/tags/select.rb#L36
      # Code reuse is difficult, so it is easier to duplicate it
      def grouped_choices?(choices)
        !choices.blank? && choices.first.respond_to?(:last) && choices.first.last.is_a?(Array)
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
datagrid-2.0.0 lib/datagrid/filters/select_options.rb
datagrid-2.0.0.pre.alpha lib/datagrid/filters/select_options.rb