54 lines
1.7 KiB
Ruby
54 lines
1.7 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
module IssuablesDescriptionTemplatesHelper
|
|
include Gitlab::Utils::StrongMemoize
|
|
include GitlabRoutingHelper
|
|
|
|
def template_dropdown_tag(issuable, &block)
|
|
selected_template = selected_template(issuable)
|
|
title = selected_template || "Choose a template"
|
|
options = {
|
|
toggle_class: 'js-issuable-selector',
|
|
title: title,
|
|
filter: true,
|
|
placeholder: 'Filter',
|
|
footer_content: true,
|
|
data: {
|
|
data: issuable_templates(ref_project, issuable.to_ability_name),
|
|
field_name: 'issuable_template',
|
|
selected: selected_template,
|
|
project_id: ref_project.id
|
|
}
|
|
}
|
|
|
|
dropdown_tag(title, options: options) do
|
|
capture(&block)
|
|
end
|
|
end
|
|
|
|
def issuable_templates(project, issuable_type)
|
|
@template_types ||= {}
|
|
@template_types[project.id] ||= {}
|
|
@template_types[project.id][issuable_type] ||= TemplateFinder.all_template_names_hash_or_array(project, issuable_type)
|
|
end
|
|
|
|
def issuable_templates_names(issuable)
|
|
all_templates = issuable_templates(ref_project, issuable.to_ability_name)
|
|
|
|
if ref_project.inherited_issuable_templates_enabled?
|
|
all_templates.values.flatten.map { |tpl| tpl[:name] if tpl[:project_id] == ref_project.id }.compact.uniq
|
|
else
|
|
all_templates.map { |template| template[:name] }
|
|
end
|
|
end
|
|
|
|
def selected_template(issuable)
|
|
params[:issuable_template] if issuable_templates_names(issuable).any? { |tmpl_name| tmpl_name == params[:issuable_template] }
|
|
end
|
|
|
|
def template_names_path(parent, issuable)
|
|
return '' unless parent.is_a?(Project)
|
|
|
|
project_template_names_path(parent, template_type: issuable.to_ability_name)
|
|
end
|
|
end
|