Sha256: 9d378ea2020b7217b1004432f5575113da7f79bd888a68d4adae3b3ae7f8dae0

Contents?: true

Size: 1.49 KB

Versions: 1

Compression:

Stored size: 1.49 KB

Contents

module Gretel
  class Crumbs
    class << self
      def controller # hack because Rails.application.routes.url_helpers needs a controller method
      end
      
      def layout(&block)
        # needs to be done here because Rails.application isn't set when this file is required
        self.class.send :include, Rails.application.routes.url_helpers
        self.class.send :include, ActionView::Helpers::UrlHelper
        
        instance_eval &block
      end
      
      def all
        @crumbs ||= {}
      end

      def crumb(name, &block)
        all[name] = block
      end
      
      def get_crumb(name, object = nil)
        crumb = all[name]
        raise ArgumentError, "Breadcrumb :#{name} not found." unless crumb
        
        @object = object # share the object so we can call it from link() and parent()
        @parent = nil
        
        crumb.call(object)
        Gretel::Crumb.new(@links, @parent)
      end
      
      def link(*args)
        options = args.extract_options!
        text = args[0]
        url = args[1]
        
        text = text.call(@object) if text.is_a?(Proc)
        url = url.call(@object) if url.is_a?(Proc)
        
        @links ||= []
        @links << Gretel::Link.new(text, url, options)
        
        @links
      end
      
      def parent(name, object = nil)
        name = name.call(@object) if name.is_a?(Proc)
        object = object.call(@object) if object.is_a?(Proc)

        @parent = Gretel::Parent.new(name, object)
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
gretel-1.1.6 lib/gretel/crumbs.rb