summaryrefslogtreecommitdiffstats
path: root/lib/redmine/menu_manager.rb
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2008-07-13 12:12:58 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2008-07-13 12:12:58 +0000
commit7b8a4fc28bd22e8e463cc6c40be99766f0cc1410 (patch)
treebeb5e7dd675396ea7d312c20523ab9cf22f38bb2 /lib/redmine/menu_manager.rb
parentc4eef6314e0e7030d002a2f40f1d4cee993afae6 (diff)
downloadredmine-7b8a4fc28bd22e8e463cc6c40be99766f0cc1410.tar.gz
redmine-7b8a4fc28bd22e8e463cc6c40be99766f0cc1410.zip
Menu mapper: add support for :before, :after and :last options to #push method and add #delete method.
git-svn-id: http://redmine.rubyforge.org/svn/trunk@1660 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'lib/redmine/menu_manager.rb')
-rw-r--r--lib/redmine/menu_manager.rb38
1 files changed, 31 insertions, 7 deletions
diff --git a/lib/redmine/menu_manager.rb b/lib/redmine/menu_manager.rb
index 01c14083e..11b7a72e8 100644
--- a/lib/redmine/menu_manager.rb
+++ b/lib/redmine/menu_manager.rb
@@ -92,11 +92,9 @@ module Redmine
class << self
def map(menu_name)
- mapper = Mapper.new
- yield mapper
@items ||= {}
- @items[menu_name.to_sym] ||= []
- @items[menu_name.to_sym] += mapper.items
+ mapper = Mapper.new(menu_name.to_sym, @items)
+ yield mapper
end
def items(menu_name)
@@ -109,6 +107,14 @@ module Redmine
end
class Mapper
+ def initialize(menu, items)
+ items[menu] ||= []
+ @menu = menu
+ @menu_items = items[menu]
+ end
+
+ @@last_items_count = Hash.new {|h,k| h[k] = 0}
+
# Adds an item at the end of the menu. Available options:
# * param: the parameter name that is used for the project id (default is :id)
# * if: a Proc that is called before rendering the item, the item is displayed only if it returns true
@@ -116,13 +122,31 @@ module Redmine
# * a localized string Symbol
# * a String
# * a Proc that can take the project as argument
+ # * before, after: specify where the menu item should be inserted (eg. :after => :activity)
+ # * last: menu item will stay at the end (eg. :last => true)
# * html_options: a hash of html options that are passed to link_to
def push(name, url, options={})
- items << MenuItem.new(name, url, options)
+ options = options.dup
+
+ # menu item position
+ if before = options.delete(:before)
+ position = @menu_items.index {|i| i.name == before}
+ elsif after = options.delete(:after)
+ position = @menu_items.index {|i| i.name == after}
+ position += 1 unless position.nil?
+ elsif options.delete(:last)
+ position = @menu_items.size
+ @@last_items_count[@menu] += 1
+ end
+ # default position
+ position ||= @menu_items.size - @@last_items_count[@menu]
+
+ @menu_items.insert(position, MenuItem.new(name, url, options))
end
- def items
- @items ||= []
+ # Removes a menu item
+ def delete(name)
+ @menu_items.delete_if {|i| i.name == name}
end
end