You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
59 lines
1.7 KiB
59 lines
1.7 KiB
11 years ago
|
'use strict';
|
||
|
define(
|
||
|
[
|
||
|
'marionette',
|
||
|
'backgrid',
|
||
|
'Update/UpdateCollection',
|
||
|
'Update/UpdateCollectionView',
|
||
|
'Shared/Toolbar/ToolbarLayout',
|
||
|
'Shared/LoadingView'
|
||
|
], function (Marionette, Backgrid, UpdateCollection, UpdateCollectionView, ToolbarLayout, LoadingView) {
|
||
|
return Marionette.Layout.extend({
|
||
|
template: 'Update/UpdateLayoutTemplate',
|
||
|
|
||
|
regions: {
|
||
|
updates: '#x-updates',
|
||
|
toolbar: '#x-toolbar'
|
||
|
},
|
||
|
|
||
|
leftSideButtons: {
|
||
|
type : 'default',
|
||
|
storeState: false,
|
||
|
items :
|
||
|
[
|
||
|
{
|
||
|
title : 'Check for Update',
|
||
|
icon : 'icon-nd-update',
|
||
|
command: 'applicationUpdate'
|
||
|
}
|
||
|
]
|
||
|
},
|
||
|
|
||
|
initialize: function () {
|
||
|
this.updateCollection = new UpdateCollection();
|
||
|
},
|
||
|
|
||
|
onRender: function () {
|
||
|
this.updates.show(new LoadingView());
|
||
|
this._showToolbar();
|
||
|
|
||
|
var self = this;
|
||
|
var promise = this.updateCollection.fetch();
|
||
|
|
||
|
promise.done(function (){
|
||
|
self.updates.show(new UpdateCollectionView({ collection: self.updateCollection }));
|
||
|
});
|
||
|
},
|
||
|
|
||
|
_showToolbar: function () {
|
||
|
this.toolbar.show(new ToolbarLayout({
|
||
|
left :
|
||
|
[
|
||
|
this.leftSideButtons
|
||
|
],
|
||
|
context: this
|
||
|
}));
|
||
|
}
|
||
|
});
|
||
|
});
|