Files
edx-platform/lms/static/js/discovery/facets_view.js
2015-06-01 10:33:45 +02:00

47 lines
1.1 KiB
JavaScript

;(function (define) {
define([
'jquery',
'underscore',
'backbone',
'gettext',
], function ($, _, Backbone, gettext) {
'use strict';
return Backbone.View.extend({
tagName: 'section',
templateId: '#search_facets_section-tpl',
className: '',
total: 0,
terms: {},
other: 0,
list: [],
views: {},
attributes: {'data-parent-element' : 'sidebar'},
initialize: function () {
this.tpl = _.template($(this.templateId).html());
},
render: function (facetName, displayName, facetStats) {
this.$el.html(this.tpl({name: facetName, displayName: displayName, stats: facetStats}));
this.$el.attr('data-facet', facetName);
this.$views = this.$el.find('ul');
return this;
},
remove: function() {
$.each(this.list, function(key, facet) {
facet.remove();
});
this.stopListening();
this.$el.remove();
}
});
});
})(define || RequireJS.define);