Welcome to mirror list, hosted at ThFree Co, Russian Federation.

groups_helper.rb « helpers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1badaf721f2f2284dd2d95875edbfab8c22f25f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
module GroupsHelper
  def can_change_group_visibility_level?(group)
    can?(current_user, :change_visibility_level, group)
  end

  def group_icon(group)
    if group.is_a?(String)
      group = Group.find_by_full_path(group)
    end

    group.try(:avatar_url) || ActionController::Base.helpers.image_path('no_group_avatar.png')
  end

  def group_title(group, name = nil, url = nil)
    @has_group_title = true
    full_title = ''

    group.ancestors.reverse.each_with_index do |parent, index|
      full_title += if show_new_nav?
                      breadcrumb_list_item group_title_link(parent, hidable: index > 0)
                    else
                      group_title_link(parent, hidable: true)
                    end
    end

    full_title += if show_new_nav?
                    breadcrumb_list_item group_title_link(group)
                  else
                    group_title_link(group)
                  end
    full_title += ' · '.html_safe + link_to(simple_sanitize(name), url, class: 'group-path') if name

    if show_new_nav?
      full_title.html_safe
    else
      content_tag :span, class: 'group-title' do
        full_title.html_safe
      end
    end
  end

  def projects_lfs_status(group)
    lfs_status =
      if group.lfs_enabled?
        group.projects.select(&:lfs_enabled?).size
      else
        group.projects.reject(&:lfs_enabled?).size
      end

    size = group.projects.size

    if lfs_status == size
      'for all projects'
    else
      "for #{lfs_status} out of #{pluralize(size, 'project')}"
    end
  end

  def group_lfs_status(group)
    status = group.lfs_enabled? ? 'enabled' : 'disabled'

    content_tag(:span, class: "lfs-#{status}") do
      "#{status.humanize} #{projects_lfs_status(group)}"
    end
  end

  def group_issues(group)
    IssuesFinder.new(current_user, group_id: group.id).execute
  end

  def remove_group_message(group)
    _("You are going to remove %{group_name}. Removed groups CANNOT be restored! Are you ABSOLUTELY sure?") %
      { group_name: group.name }
  end

  private

  def group_title_link(group, hidable: false)
    link_to(group_path(group), class: "group-path #{'hidable' if hidable}") do
      output =
        if show_new_nav?
          image_tag(group_icon(group), class: "avatar-tile", width: 16, height: 16)
        else
          ""
        end

      output << simple_sanitize(group.name)
      output.html_safe
    end
  end
end