Sha256: 45f8700b54df2641c509679e883e4f958c4dce9f48d270e1a898ad2cb55b93c5

Contents?: true

Size: 1.32 KB

Versions: 7

Compression:

Stored size: 1.32 KB

Contents

module RsMenu
  extend ActiveSupport::Concern
  included do
    helper_method :navigation
  end

  def render_with_subs(items, primary, item)
    subs = items.select { |i| i.parent_id == item.id && !i.name.blank? && i.enabled }
    if subs.empty?
      block = nil
    else
      block = Proc.new do |sub_nav|
        subs.each { |sub| render_with_subs(items, sub_nav, sub) }
      end
    end
    cr = item.clean_regexp
    navigation_item(primary, item, block)
  end
  
  def navigation_item(primary, item, block=nil)
    url = item.redirect.blank? ? item.fullpath : item.redirect
    if block.nil?
      primary.item(item.slug, item.name, url, item.nav_options)
    else
      primary.item(item.slug, item.name, url, item.nav_options, &block)
    end
  end

  def navigation(type)
    Proc.new do |primary|
      SimpleNavigation.config.autogenerate_item_ids = false
      begin
        items = ::Menu.find(type.to_s).pages.asc(:lft).to_a
        items.select { |i| i.parent_id.nil? && !i.name.blank? && i.enabled }.each do |item|
          render_with_subs(items, primary, item)
        end
      rescue Exception => exception
        Rails.logger.error exception.message
        Rails.logger.error exception.backtrace.join("\n")
        capture_exception(exception) if respond_to?(:capture_exception)
        items
      end
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
rocket_cms-0.5.0.rc.5 app/controllers/concerns/rs_menu.rb
rocket_cms-0.5.0.rc.4 app/controllers/concerns/rs_menu.rb
rocket_cms-0.4.2 app/controllers/concerns/rs_menu.rb
rocket_cms-0.3.2 app/controllers/concerns/rs_menu.rb
rocket_cms-0.2.12 app/controllers/concerns/rs_menu.rb
rocket_cms-0.2.10 app/controllers/concerns/rs_menu.rb
rocket_cms-0.1.13 app/controllers/concerns/rs_menu.rb