BigW Consortium Gitlab

namespaces_helper.rb 1.1 KB
Newer Older
Dmitriy Zaporozhets committed
1
module NamespacesHelper
2
  def namespaces_options(selected = :current_user, display_path: false, extra_group: nil)
3
    groups = current_user.owned_groups + current_user.masters_groups
4

5
    groups << extra_group if extra_group && !Group.exists?(name: extra_group.name)
6

7
    users = [current_user.namespace]
Dmitriy Zaporozhets committed
8

9 10 11 12 13 14 15 16 17 18
    data_attr_group = { 'data-options-parent' => 'groups' }
    data_attr_users = { 'data-options-parent' => 'users' }

    group_opts = [
      "Groups", groups.sort_by(&:human_name).map { |g| [display_path ? g.path : g.human_name, g.id, data_attr_group] }
    ]

    users_opts = [
      "Users", users.sort_by(&:human_name).map { |u| [display_path ? u.path : u.human_name, u.id, data_attr_users] }
    ]
Dmitriy Zaporozhets committed
19 20 21 22 23 24 25 26 27 28 29

    options = []
    options << group_opts
    options << users_opts

    if selected == :current_user && current_user.namespace
      selected = current_user.namespace.id
    end

    grouped_options_for_select(options, selected)
  end
30

31 32
  def namespace_icon(namespace, size = 40)
    if namespace.kind_of?(Group)
33
      group_icon(namespace)
34 35 36 37
    else
      avatar_icon(namespace.owner.email, size)
    end
  end
Dmitriy Zaporozhets committed
38
end