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
|
define([
'common/popup',
'coding-rules/bulk-change-modal-view',
'templates/coding-rules'
], function (PopupView, BulkChangeModalView) {
var $ = jQuery;
return PopupView.extend({
template: Templates['coding-rules-bulk-change-popup'],
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' || activation === false),
allowDeactivateOnProfile: profileKey != null && (activation === 'true' || activation === true)
};
}
});
});
|