2016-02-20 08:59:59 -05:00
|
|
|
module TodosHelper
|
|
|
|
def todos_pending_count
|
2016-08-11 12:39:50 -04:00
|
|
|
@todos_pending_count ||= current_user.todos_pending_count
|
2016-02-20 08:59:59 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def todos_done_count
|
2016-08-11 12:39:50 -04:00
|
|
|
@todos_done_count ||= current_user.todos_done_count
|
2016-02-20 08:59:59 -05:00
|
|
|
end
|
|
|
|
|
2016-02-20 15:01:50 -05:00
|
|
|
def todo_action_name(todo)
|
|
|
|
case todo.action
|
|
|
|
when Todo::ASSIGNED then 'assigned you'
|
|
|
|
when Todo::MENTIONED then 'mentioned you on'
|
2016-03-08 13:22:50 -05:00
|
|
|
when Todo::BUILD_FAILED then 'The build failed for your'
|
2016-06-17 04:01:03 -04:00
|
|
|
when Todo::MARKED then 'added a todo for'
|
2016-07-11 06:02:11 -04:00
|
|
|
when Todo::APPROVAL_REQUIRED then 'set you as an approver for'
|
2016-02-20 15:01:50 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-02-20 14:53:15 -05:00
|
|
|
def todo_target_link(todo)
|
|
|
|
target = todo.target_type.titleize.downcase
|
2016-05-30 23:05:02 -04:00
|
|
|
link_to "#{target} #{todo.target_reference}", todo_target_path(todo),
|
|
|
|
class: 'has-tooltip',
|
|
|
|
title: todo.target.title
|
2016-02-20 08:59:59 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def todo_target_path(todo)
|
2016-04-12 17:06:52 -04:00
|
|
|
return unless todo.target.present?
|
|
|
|
|
2016-02-20 08:59:59 -05:00
|
|
|
anchor = dom_id(todo.note) if todo.note.present?
|
|
|
|
|
2016-03-16 19:31:30 -04:00
|
|
|
if todo.for_commit?
|
|
|
|
namespace_project_commit_path(todo.project.namespace.becomes(Namespace), todo.project,
|
|
|
|
todo.target, anchor: anchor)
|
|
|
|
else
|
2016-03-08 13:22:50 -05:00
|
|
|
path = [todo.project.namespace.becomes(Namespace), todo.project, todo.target]
|
|
|
|
|
|
|
|
path.unshift(:builds) if todo.build_failed?
|
|
|
|
|
|
|
|
polymorphic_path(path, anchor: anchor)
|
2016-03-16 19:31:30 -04:00
|
|
|
end
|
2016-02-20 08:59:59 -05:00
|
|
|
end
|
|
|
|
|
2016-04-28 14:54:13 -04:00
|
|
|
def todo_target_state_pill(todo)
|
2016-05-18 21:23:00 -04:00
|
|
|
return unless show_todo_state?(todo)
|
|
|
|
|
|
|
|
content_tag(:span, nil, class: 'target-status') do
|
|
|
|
content_tag(:span, nil, class: "status-box status-box-#{todo.target.state.dasherize}") do
|
|
|
|
todo.target.state.capitalize
|
2016-05-09 18:19:26 -04:00
|
|
|
end
|
2016-04-28 17:37:00 -04:00
|
|
|
end
|
2016-04-28 14:54:13 -04:00
|
|
|
end
|
|
|
|
|
2016-02-20 14:53:25 -05:00
|
|
|
def todos_filter_params
|
|
|
|
{
|
|
|
|
state: params[:state],
|
|
|
|
project_id: params[:project_id],
|
|
|
|
author_id: params[:author_id],
|
|
|
|
type: params[:type],
|
|
|
|
action_id: params[:action_id],
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2016-11-07 11:12:05 -05:00
|
|
|
def todos_filter_empty?
|
2016-11-08 04:31:08 -05:00
|
|
|
todos_filter_params.values.none?
|
2016-11-07 11:12:05 -05:00
|
|
|
end
|
|
|
|
|
2016-02-20 14:53:25 -05:00
|
|
|
def todos_filter_path(options = {})
|
|
|
|
without = options.delete(:without)
|
|
|
|
|
|
|
|
options = todos_filter_params.merge(options)
|
|
|
|
|
|
|
|
if without.present?
|
|
|
|
without.each do |key|
|
|
|
|
options.delete(key)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
path = request.path
|
|
|
|
path << "?#{options.to_param}"
|
|
|
|
path
|
|
|
|
end
|
|
|
|
|
2016-02-20 08:59:59 -05:00
|
|
|
def todo_actions_options
|
2016-08-27 18:45:01 -04:00
|
|
|
[
|
|
|
|
{ id: '', text: 'Any Action' },
|
|
|
|
{ id: Todo::ASSIGNED, text: 'Assigned' },
|
|
|
|
{ id: Todo::MENTIONED, text: 'Mentioned' }
|
2016-02-20 08:59:59 -05:00
|
|
|
]
|
|
|
|
end
|
|
|
|
|
|
|
|
def todo_projects_options
|
|
|
|
projects = current_user.authorized_projects.sorted_by_activity.non_archived
|
|
|
|
projects = projects.includes(:namespace)
|
|
|
|
|
|
|
|
projects = projects.map do |project|
|
2016-08-27 18:45:01 -04:00
|
|
|
{ id: project.id, text: project.name_with_namespace }
|
2016-02-20 08:59:59 -05:00
|
|
|
end
|
|
|
|
|
2016-08-27 18:45:01 -04:00
|
|
|
projects.unshift({ id: '', text: 'Any Project' }).to_json
|
2016-02-20 08:59:59 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def todo_types_options
|
2016-08-27 18:45:01 -04:00
|
|
|
[
|
2016-08-28 11:24:48 -04:00
|
|
|
{ id: '', text: 'Any Type' },
|
|
|
|
{ id: 'Issue', text: 'Issue' },
|
|
|
|
{ id: 'MergeRequest', text: 'Merge Request' }
|
2016-02-20 08:59:59 -05:00
|
|
|
]
|
|
|
|
end
|
2016-05-09 18:19:26 -04:00
|
|
|
|
2016-08-28 11:24:48 -04:00
|
|
|
def todo_actions_dropdown_label(selected_action_id, default_action)
|
|
|
|
selected_action = todo_actions_options.find { |action| action[:id] == selected_action_id.to_i}
|
|
|
|
selected_action ? selected_action[:text] : default_action
|
|
|
|
end
|
|
|
|
|
|
|
|
def todo_types_dropdown_label(selected_type, default_type)
|
|
|
|
selected_type = todo_types_options.find { |type| type[:id] == selected_type && type[:id] != '' }
|
|
|
|
selected_type ? selected_type[:text] : default_type
|
|
|
|
end
|
|
|
|
|
2016-09-23 12:28:06 -04:00
|
|
|
def todo_due_date(todo)
|
2016-10-03 04:58:55 -04:00
|
|
|
return unless todo.target.try(:due_date)
|
|
|
|
|
2016-10-03 10:07:29 -04:00
|
|
|
is_due_today = todo.target.due_date.today?
|
|
|
|
is_overdue = todo.target.overdue?
|
|
|
|
css_class =
|
|
|
|
if is_due_today
|
|
|
|
'text-warning'
|
|
|
|
elsif is_overdue
|
|
|
|
'text-danger'
|
|
|
|
else
|
|
|
|
''
|
|
|
|
end
|
2016-09-23 12:28:06 -04:00
|
|
|
|
2016-10-03 05:08:34 -04:00
|
|
|
html = "· ".html_safe
|
2016-10-03 10:07:29 -04:00
|
|
|
html << content_tag(:span, class: css_class) do
|
2016-10-03 04:58:55 -04:00
|
|
|
"Due #{is_due_today ? "today" : todo.target.due_date.to_s(:medium)}"
|
|
|
|
end
|
2016-09-23 12:28:06 -04:00
|
|
|
end
|
|
|
|
|
2016-05-09 18:19:26 -04:00
|
|
|
private
|
|
|
|
|
|
|
|
def show_todo_state?(todo)
|
|
|
|
(todo.target.is_a?(MergeRequest) || todo.target.is_a?(Issue)) && ['closed', 'merged'].include?(todo.target.state)
|
|
|
|
end
|
2016-02-20 08:59:59 -05:00
|
|
|
end
|