aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-web/src/main/js/apps/api-documentation/action-view.js
blob: 9ba96da7f4158c6b54aeaa9caa0e83da62d47ef4 (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
import $ from 'jquery';
import Marionette from 'backbone.marionette';
import Template from './templates/api-documentation-action.hbs';

export default Marionette.ItemView.extend({
  className: 'panel panel-vertical',
  template: Template,

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

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

  initialize: function () {
    this.listenTo(this.options.state, 'change:query', this.toggleHidden);
  },

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

  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 });
    });
  },

  toggleHidden: function () {
    var test = this.model.get('path') + '/' + this.model.get('key');
    this.$el.toggleClass('hidden', !this.options.state.match(test));
  }
});