Sha256: e2b06d8c94ddb3f4c46eebee40f2a9c6db898405e07190326b6d48b10b36a5f9

Contents?: true

Size: 1.6 KB

Versions: 8

Compression:

Stored size: 1.6 KB

Contents

# frozen_string_literal: true

module EacRailsUtils
  module MenusHelper
    class GuiBuilder
      def initialize(view)
        @view = view # rubocop:disable Rails/HelperInstanceVariable
      end

      def build(entries, options = {})
        raise 'Argument "entries" is not a array' unless entries.is_a?(Array)

        @view.content_tag(:ul, options) do # rubocop:disable Rails/HelperInstanceVariable
          b = ActiveSupport::SafeBuffer.new
          entries.map { |v| menu_entry(v) }.each { |e| b << e }
          b
        end
      end

      private

      def menu_entry(entry)
        if entry[:type] == :group
          menu_group(entry[:label], entry[:children])
        elsif entry[:type] == :item
          menu_item(entry[:label], entry[:path], entry[:options])
        else
          raise "Unknown menu entry type: \"#{entry[:type]}\""
        end
      end

      def menu_group(label, children)
        @view.content_tag(:li) do # rubocop:disable Rails/HelperInstanceVariable
          @view.link_to(label) << build(children) # rubocop:disable Rails/HelperInstanceVariable
        end
      end

      def menu_item(label, path, options)
        @view.content_tag(:li) do # rubocop:disable Rails/HelperInstanceVariable
          @view.link_to(label, path, menu_item_link_options(options)) # rubocop:disable Rails/HelperInstanceVariable
        end
      end

      def menu_item_link_options(options)
        options = options.dup
        if options.key?(:link_method)
          options[:method] = options[:link_method]
          options.delete(:link_method)
        end
        options
      end
    end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
eac_rails_utils-0.25.0 app/helpers/eac_rails_utils/menus_helper/gui_builder.rb
eac_rails_utils-0.24.0 app/helpers/eac_rails_utils/menus_helper/gui_builder.rb
eac_rails_utils-0.23.4 app/helpers/eac_rails_utils/menus_helper/gui_builder.rb
eac_rails_utils-0.23.3 app/helpers/eac_rails_utils/menus_helper/gui_builder.rb
eac_rails_utils-0.23.2 app/helpers/eac_rails_utils/menus_helper/gui_builder.rb
eac_rails_utils-0.23.1 app/helpers/eac_rails_utils/menus_helper/gui_builder.rb
eac_rails_utils-0.23.0 app/helpers/eac_rails_utils/menus_helper/gui_builder.rb
eac_rails_utils-0.22.3 app/helpers/eac_rails_utils/menus_helper/gui_builder.rb