aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-web/src/main/js/apps/groups/delete-view.js
blob: 6192a4dd15314c9175f7fa0c966c1fb66be920d7 (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
import ModalForm from '../../components/common/modal-form';
import Template from './templates/groups-delete.hbs';

export default ModalForm.extend({
  template: Template,

  onFormSubmit: function (e) {
    this._super(e);
    this.sendRequest();
  },

  sendRequest: function () {
    var that = this,
        collection = this.model.collection;
    return this.model.destroy({
      wait: true,
      statusCode: {
        // do not show global error
        400: null
      }
    }).done(function () {
      collection.total--;
      that.destroy();
    }).fail(function (jqXHR) {
      that.showErrors(jqXHR.responseJSON.errors, jqXHR.responseJSON.warnings);
    });
  },

  showErrors: function (errors, warnings) {
    this.$('.js-modal-text').addClass('hidden');
    this.disableForm();
    this._super(errors, warnings);
  }
});