31 lines
1.9 KiB
Text
31 lines
1.9 KiB
Text
- cache_enabled = false unless local_assigns[:cache_enabled] == true
|
|
- max_project_topic_length = 15
|
|
|
|
- if project.topics.present?
|
|
= cache_if(cache_enabled, [project, :topic_list], expires_in: 1.day) do
|
|
%span.gl-w-full.gl-display-inline-flex.gl-font-base.gl-font-weight-normal.gl-align-items-center{ 'data-testid': 'project_topic_list' }
|
|
= sprite_icon('tag', css_class: 'icon gl-relative gl-mr-2')
|
|
|
|
- project.topics_to_show.each do |topic|
|
|
- explore_project_topic_path = topic_explore_projects_path(topic_name: topic[:name])
|
|
- if topic[:title].length > max_project_topic_length
|
|
%a.gl-mr-3.has-tooltip{ data: { container: "body" }, title: topic[:title], href: explore_project_topic_path, itemprop: 'keywords' }
|
|
= gl_badge_tag truncate(topic[:title], length: max_project_topic_length)
|
|
- else
|
|
%a.gl-mr-3{ href: explore_project_topic_path, itemprop: 'keywords' }
|
|
= gl_badge_tag topic[:title]
|
|
|
|
- if project.has_extra_topics?
|
|
- title = _('More topics')
|
|
- content = capture do
|
|
%span.gl-display-inline-flex.gl-flex-wrap
|
|
- project.topics_not_shown.each do |topic|
|
|
- explore_project_topic_path = topic_explore_projects_path(topic_name: topic[:name])
|
|
- if topic[:title].length > max_project_topic_length
|
|
%a.gl-mr-3.gl-mb-3.has-tooltip{ data: { container: "body" }, title: topic[:title], href: explore_project_topic_path, itemprop: 'keywords' }
|
|
= gl_badge_tag truncate(topic[:title], length: max_project_topic_length)
|
|
- else
|
|
%a.gl-mr-3.gl-mb-3{ href: explore_project_topic_path, itemprop: 'keywords' }
|
|
= gl_badge_tag topic[:title]
|
|
.text-nowrap{ role: 'button', tabindex: 0, data: { toggle: 'popover', html: 'true', placement: 'top', title: title, content: content } }
|
|
= _("+ %{count} more") % { count: project.count_of_extra_topics_not_shown }
|