-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapi.js
98 lines (81 loc) · 2.02 KB
/
api.js
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
var ApiMethod = Backbone.Model.extend({});
var Api = Backbone.Collection.extend({
model: ApiMethod,
url: 'api.json',
initialize: function() {
this.fetch({
dataType: 'json'
});
},
parse: function(response) {
return response.api;
},
fetch: function(options) {
options.reset = true;
return Backbone.Collection.prototype.fetch.call(this, options);
}
});
var ApiMethodView = Backbone.View.extend({
initialize: function() {
_.bindAll(this, "render")
this.listenTo(this.model, 'change', this.render);
this.render();
},
events: {
'click .results-demo-link': 'toggleResultsDemo'
},
toggleResultsDemo: function() {
this.$('.results-demo').slideToggle();
var _this = this;
if (!this.$('.results-container').hasClass('loaded')) {
this.$('.results-container').addClass('loaded')
$.getJSON('../api'+this.model.get('demoquery'), function(response) {
console.log(response);
_this.$('.results-container').text(JSON.stringify(response, null, 5));
});
}
},
render: function() {
var template = _.template($("#methodViewTemplate").html());
this.$el.html(template({
model: this.model
}));
this.$el.find('.results-demo').hide();
return this;
}
});
var ApiView = Backbone.View.extend({
initialize: function() {
this.listenTo(this.collection, 'reset', this.render);
},
render: function() {
var _this = this;
this.$el.empty();
this.collection.each(function(model) {
var renderedEl = (new ApiMethodView({model: model})).render().$el;
_this.$el.append(renderedEl);
});
}
});
var ApiMenuView = Backbone.View.extend({
initialize: function() {
this.listenTo(this.collection, 'reset', this.render);
},
render: function() {
var template = _.template($("#methodsMenuTemplate").html());
this.$el.html(template({
models: this.collection.models
}));
}
});
$(document).ready(function() {
var api = new Api();
var apiView = new ApiView({
el: $("#apiContainer"),
collection: api
});
var apiMenuView = new ApiMenuView({
el: $("#menu"),
collection: api
});
});