48 lines
1.3 KiB
JavaScript
48 lines
1.3 KiB
JavaScript
(function(define) {
|
|
'use strict';
|
|
|
|
define(['backbone',
|
|
'jquery',
|
|
'underscore',
|
|
'gettext',
|
|
'js/learner_dashboard/views/explore_new_programs_view',
|
|
'js/learner_dashboard/views/certificate_view',
|
|
'text!../../../templates/learner_dashboard/sidebar.underscore'
|
|
],
|
|
function(
|
|
Backbone,
|
|
$,
|
|
_,
|
|
gettext,
|
|
NewProgramsView,
|
|
CertificateView,
|
|
sidebarTpl
|
|
) {
|
|
return Backbone.View.extend({
|
|
el: '.sidebar',
|
|
|
|
tpl: _.template(sidebarTpl),
|
|
|
|
initialize: function(data) {
|
|
this.context = data.context;
|
|
},
|
|
|
|
render: function() {
|
|
this.$el.html(this.tpl(this.context));
|
|
this.postRender();
|
|
},
|
|
|
|
postRender: function() {
|
|
this.newProgramsView = new NewProgramsView({
|
|
context: this.context
|
|
});
|
|
|
|
this.newCertificateView = new CertificateView({
|
|
context: this.context
|
|
});
|
|
}
|
|
});
|
|
}
|
|
);
|
|
}).call(this, define || RequireJS.define);
|