aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-web/src/main/js/apps/api-documentation/action-view.js
blob: 57065620e27e90fc973e15f87db926dc7fa736d5 (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
define([
  './templates'
], function () {

  var $ = jQuery;

  return Marionette.ItemView.extend({
    className: 'panel panel-vertical',
    template: Templates['api-documentation-action'],

    modelEvents: {
      'change': 'render'
    },

    events: {
      'click .js-show-response-example': 'onShowResponseExampleClick',
      'click .js-hide-response-example': 'onHideResponseExampleClick'
    },

    onRender: function () {
      this.$el.attr('data-web-service', this.model.get('path'));
      this.$el.attr('data-action', this.model.get('key'));
    },

    onShowResponseExampleClick: function (e) {
      e.preventDefault();
      this.fetchResponse();
    },

    onHideResponseExampleClick: function (e) {
      e.preventDefault();
      this.model.unset('responseExample');
    },

    fetchResponse: function () {
      var that = this,
          url = baseUrl + '/api/webservices/response_example',
          options = { controller: this.model.get('path'), action: this.model.get('key') };
      return $.get(url, options).done(function (r) {
        that.model.set({ responseExample: r.example });
      });
    }
  });

});