Sha256: 7d8f4f83bf8741add7bae223a26b4a239c0c891cbaf8eff1cc48366f15604219
Contents?: true
Size: 1.75 KB
Versions: 1
Compression:
Stored size: 1.75 KB
Contents
module Navigator # Renders a HTML menu. class Menu def self.allowed_methods %r(^(section|h[1-6]|ul|li|a|b|em|s|small|span|strong|sub|sup)$) end def initialize template, tag = "ul", attributes = {}, menu_activator = Navigator::TagActivator.new, &block @template = template @tag = Navigator::Tag.new tag, nil, attributes, menu_activator @menu_activator = menu_activator @items = [] instance_eval(&block) if block_given? end def add name, content = nil, attributes = {}, activator = menu_activator, &block tag = Navigator::Tag.new name, content, attributes, activator if block_given? items << tag.prefix items << tag.content instance_eval(&block) items << tag.suffix else items << tag.render end end def item content, url, item_attributes = {}, link_attributes = {}, activator = menu_activator link_attributes.reverse_merge! href: url if link_attributes[:href] == activator.search_value item_attributes[activator.target_key] = activator.target_value end add "li", nil, item_attributes, activator do add "a", content, link_attributes, Navigator::TagActivator.new end end def respond_to? name method_allowed?(name) || super(name) end def method_missing name, *args, &block if method_allowed?(name.to_s) add(*args.unshift(name), &block) else template.public_send name, *args end end def render [tag.prefix, tag.content, items.compact.join(''), tag.suffix].compact * '' end private attr_accessor :template, :tag, :menu_activator, :items def method_allowed? name self.class.allowed_methods === name end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
navigator-0.9.1 | lib/navigator/menu.rb |