aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-web/src/main/js/apps/coding-rules/bulk-change-popup-view.js
blob: ec2ea523c9e5632f181e7ca6c9b13345627d9dd7 (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
import $ from 'jquery';
import _ from 'underscore';
import PopupView from '../../components/common/popup';
import BulkChangeModalView from './bulk-change-modal-view';
import Template from './templates/coding-rules-bulk-change-popup.hbs';

export default PopupView.extend({
  template: Template,

  events: {
    'click .js-bulk-change': 'doAction'
  },

  doAction: function (e) {
    var action = $(e.currentTarget).data('action'),
        param = $(e.currentTarget).data('param');
    new BulkChangeModalView({
      app: this.options.app,
      action: action,
      param: param
    }).render();
  },

  serializeData: function () {
    var query = this.options.app.state.get('query'),
        profileKey = query.qprofile,
        profile = _.findWhere(this.options.app.qualityProfiles, { key: profileKey }),
        activation = '' + query.activation;

    return {
      qualityProfile: profileKey,
      qualityProfileName: profile != null ? profile.name : null,
      allowActivateOnProfile: profileKey != null && activation === 'false',
      allowDeactivateOnProfile: profileKey != null && activation === 'true'
    };
  }
});