2018-08-18 07:19:57 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-10-12 07:50:47 -04:00
|
|
|
module BoardsHelper
|
2017-08-28 17:56:49 -04:00
|
|
|
def board
|
|
|
|
@board ||= @board || @boards.first
|
|
|
|
end
|
2016-10-12 07:50:47 -04:00
|
|
|
|
2017-08-28 17:56:49 -04:00
|
|
|
def board_data
|
2016-10-12 07:50:47 -04:00
|
|
|
{
|
2017-08-28 17:56:49 -04:00
|
|
|
boards_endpoint: @boards_endpoint,
|
2017-12-03 13:46:07 -05:00
|
|
|
lists_endpoint: board_lists_path(board),
|
2016-10-12 07:50:47 -04:00
|
|
|
board_id: board.id,
|
2017-08-28 17:56:49 -04:00
|
|
|
disabled: "#{!can?(current_user, :admin_list, current_board_parent)}",
|
|
|
|
issue_link_base: build_issue_link_base,
|
2017-01-31 05:39:44 -05:00
|
|
|
root_path: root_path,
|
2017-08-28 17:56:49 -04:00
|
|
|
bulk_update_path: @bulk_issues_path,
|
2019-06-11 06:40:01 -04:00
|
|
|
default_avatar: image_path(default_avatar),
|
2019-06-17 08:58:48 -04:00
|
|
|
time_tracking_limit_to_hours: Gitlab::CurrentSettings.time_tracking_limit_to_hours.to_s,
|
|
|
|
recent_boards_endpoint: recent_boards_path
|
2016-10-12 07:50:47 -04:00
|
|
|
}
|
|
|
|
end
|
2017-08-28 17:56:49 -04:00
|
|
|
|
|
|
|
def build_issue_link_base
|
2018-02-19 14:06:16 -05:00
|
|
|
if board.group_board?
|
|
|
|
"#{group_path(@board.group)}/:project_path/issues"
|
|
|
|
else
|
|
|
|
project_issues_path(@project)
|
|
|
|
end
|
2017-08-28 17:56:49 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def board_base_url
|
2018-02-19 14:06:16 -05:00
|
|
|
if board.group_board?
|
|
|
|
group_boards_url(@group)
|
|
|
|
else
|
|
|
|
project_boards_path(@project)
|
|
|
|
end
|
2017-08-28 17:56:49 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def multiple_boards_available?
|
2018-02-19 14:06:16 -05:00
|
|
|
current_board_parent.multiple_issue_boards_available?
|
2017-08-28 17:56:49 -04:00
|
|
|
end
|
|
|
|
|
2017-09-04 17:36:31 -04:00
|
|
|
def current_board_path(board)
|
2018-03-05 09:39:24 -05:00
|
|
|
@current_board_path ||= if board.group_board?
|
|
|
|
group_board_path(current_board_parent, board)
|
|
|
|
else
|
|
|
|
project_board_path(current_board_parent, board)
|
|
|
|
end
|
2017-08-28 17:56:49 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def current_board_parent
|
2018-02-19 14:06:16 -05:00
|
|
|
@current_board_parent ||= @group || @project
|
2017-08-28 17:56:49 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def can_admin_issue?
|
|
|
|
can?(current_user, :admin_issue, current_board_parent)
|
|
|
|
end
|
|
|
|
|
|
|
|
def board_list_data
|
2018-04-04 11:40:29 -04:00
|
|
|
include_descendant_groups = @group&.present?
|
|
|
|
|
2017-08-28 17:56:49 -04:00
|
|
|
{
|
|
|
|
toggle: "dropdown",
|
2018-10-03 06:36:35 -04:00
|
|
|
list_labels_path: labels_filter_path_with_defaults(only_group_labels: true, include_ancestor_groups: true),
|
|
|
|
labels: labels_filter_path_with_defaults(only_group_labels: true, include_descendant_groups: include_descendant_groups),
|
2017-08-28 17:56:49 -04:00
|
|
|
labels_endpoint: @labels_endpoint,
|
|
|
|
namespace_path: @namespace_path,
|
2018-02-19 14:06:16 -05:00
|
|
|
project_path: @project&.path,
|
|
|
|
group_path: @group&.path
|
2017-08-28 17:56:49 -04:00
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
def board_sidebar_user_data
|
2019-04-07 14:35:16 -04:00
|
|
|
dropdown_options = assignees_dropdown_options('issue')
|
2017-08-28 17:56:49 -04:00
|
|
|
|
|
|
|
{
|
|
|
|
toggle: 'dropdown',
|
|
|
|
field_name: 'issue[assignee_ids][]',
|
|
|
|
first_user: current_user&.username,
|
|
|
|
current_user: 'true',
|
2018-02-19 14:06:16 -05:00
|
|
|
project_id: @project&.id,
|
|
|
|
group_id: @group&.id,
|
2017-08-28 17:56:49 -04:00
|
|
|
null_user: 'true',
|
|
|
|
multi_select: 'true',
|
|
|
|
'dropdown-header': dropdown_options[:data][:'dropdown-header'],
|
|
|
|
'max-select': dropdown_options[:data][:'max-select']
|
|
|
|
}
|
|
|
|
end
|
2017-09-13 06:08:48 -04:00
|
|
|
|
|
|
|
def boards_link_text
|
2019-06-17 08:58:48 -04:00
|
|
|
if current_board_parent.multiple_issue_boards_available?
|
|
|
|
s_("IssueBoards|Boards")
|
|
|
|
else
|
|
|
|
s_("IssueBoards|Board")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def recent_boards_path
|
|
|
|
recent_project_boards_path(@project) if current_board_parent.is_a?(Project)
|
|
|
|
end
|
|
|
|
|
2019-07-12 02:31:17 -04:00
|
|
|
def serializer
|
|
|
|
CurrentBoardSerializer.new
|
|
|
|
end
|
|
|
|
|
2019-06-17 08:58:48 -04:00
|
|
|
def current_board_json
|
2019-07-12 02:31:17 -04:00
|
|
|
serializer.represent(board).as_json
|
2017-09-13 06:08:48 -04:00
|
|
|
end
|
2016-10-12 07:50:47 -04:00
|
|
|
end
|