aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-web/src/main/js/apps/global-permissions/groups-view.js
blob: 950c9888a6164d80639ba9f11e3ee6666e81a59b (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
define([
  'components/common/modals',
  'components/common/select-list',
  './templates'
], function (Modal) {

  function getSearchUrl(permission, project) {
    var url = baseUrl + '/api/permissions/groups?ps=100&permission=' + permission;
    if (project) {
      url = url + '&projectId=' + project;
    }
    return url;
  }

  function getExtra (permission, project) {
    var extra = { permission: permission };
    if (project) {
      extra.projectId = project;
    }
    return extra;
  }

  return Modal.extend({
    template: Templates['global-permissions-groups'],

    onRender: function () {
      Modal.prototype.onRender.apply(this, arguments);
      new window.SelectList({
        el: this.$('#global-permissions-groups'),
        width: '100%',
        readOnly: false,
        focusSearch: false,
        format: function (item) {
          return item.name;
        },
        queryParam: 'q',
        searchUrl: getSearchUrl(this.options.permission, this.options.project),
        selectUrl: baseUrl + '/api/permissions/add_group',
        deselectUrl: baseUrl + '/api/permissions/remove_group',
        extra: getExtra(this.options.permission, this.options.project),
        selectParameter: 'groupName',
        selectParameterValue: 'name',
        parse: function (r) {
          this.more = false;
          return r.groups;
        }
      });
    },

    onDestroy: function () {
      this.options.refresh();
      Modal.prototype.onDestroy.apply(this, arguments);
    }
  });

});