kanbanworkflowstimelinescrumrubyroadmapproject-planningproject-managementopenprojectangularissue-trackerifcgantt-chartganttbug-trackerboardsbcf
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
88 lines
2.7 KiB
88 lines
2.7 KiB
module RbMasterBacklogsHelper
|
|
unloadable
|
|
|
|
include Redmine::I18n
|
|
|
|
def render_backlog_menu(backlog)
|
|
content_tag(:div, :class => 'menu') do
|
|
[
|
|
content_tag(:div, '', :class => "icon ui-icon ui-icon-carat-1-s"),
|
|
content_tag(:ul, :class => 'items') do
|
|
|
|
backlog_menu_items_for(backlog).map do |item|
|
|
content_tag(:li, item, :class => 'item')
|
|
end
|
|
|
|
end
|
|
]
|
|
end
|
|
end
|
|
|
|
def backlog_menu_items_for(backlog)
|
|
items = common_backlog_menu_items_for(backlog)
|
|
|
|
if backlog.sprint_backlog?
|
|
items.merge!(sprint_backlog_menu_items_for(backlog))
|
|
end
|
|
|
|
menu = []
|
|
[:new_story, :stories_tasks, :task_board, :burndown, :cards, :wiki].each do |key|
|
|
menu << items[key] if items.keys.include?(key)
|
|
end
|
|
|
|
menu
|
|
end
|
|
|
|
def common_backlog_menu_items_for(backlog)
|
|
items = {}
|
|
|
|
items[:new_story] = content_tag(:a,
|
|
l('backlogs.add_new_story'),
|
|
:href => '#',
|
|
:class => 'add_new_story')
|
|
|
|
items[:stories_tasks] = link_to(l(:label_stories_tasks),
|
|
:controller => 'rb_queries',
|
|
:action => 'show',
|
|
:project_id => @project,
|
|
:sprint_id => backlog.sprint)
|
|
|
|
if TaskboardCard::PageLayout.selected_label.present?
|
|
items[:cards] = link_to(l(:label_sprint_cards),
|
|
:controller => 'rb_stories',
|
|
:action => 'index',
|
|
:project_id => @project,
|
|
:sprint_id => backlog.sprint,
|
|
:format => :pdf)
|
|
end
|
|
|
|
items
|
|
end
|
|
|
|
def sprint_backlog_menu_items_for(backlog)
|
|
items = {}
|
|
|
|
items[:task_board] = link_to(l(:label_task_board),
|
|
:controller => 'rb_taskboards',
|
|
:action => 'show',
|
|
:project_id => @project.id,
|
|
:sprint_id => backlog.sprint)
|
|
|
|
if backlog.sprint.has_burndown?
|
|
items[:burndown] = content_tag(:a,
|
|
l('backlogs.show_burndown_chart'),
|
|
:href => '#',
|
|
:class => 'show_burndown_chart')
|
|
end
|
|
|
|
if @project.module_enabled? "wiki"
|
|
items[:wiki] = link_to(l(:label_wiki),
|
|
:controller => 'rb_wikis',
|
|
:action => 'edit',
|
|
:project_id => @project.id,
|
|
:sprint_id => backlog.sprint)
|
|
end
|
|
|
|
items
|
|
end
|
|
end
|
|
|