parent
90001b1a3b
commit
de556764bd
@ -0,0 +1,10 @@
|
|||||||
|
'use strict';
|
||||||
|
define(
|
||||||
|
[
|
||||||
|
'marionette',
|
||||||
|
'Update/UpdateItemView'
|
||||||
|
], function (Marionette, UpdateItemView) {
|
||||||
|
return Marionette.CollectionView.extend({
|
||||||
|
itemView: UpdateItemView
|
||||||
|
});
|
||||||
|
});
|
@ -0,0 +1,11 @@
|
|||||||
|
'use strict';
|
||||||
|
|
||||||
|
define(
|
||||||
|
[
|
||||||
|
'app',
|
||||||
|
'marionette'
|
||||||
|
], function (App, Marionette) {
|
||||||
|
return Marionette.ItemView.extend({
|
||||||
|
template: 'Update/UpdateItemViewTemplate'
|
||||||
|
});
|
||||||
|
});
|
@ -0,0 +1,58 @@
|
|||||||
|
'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
|
||||||
|
}));
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
@ -0,0 +1,25 @@
|
|||||||
|
.update {
|
||||||
|
margin-bottom: 30px;
|
||||||
|
|
||||||
|
legend {
|
||||||
|
margin-bottom: 5px;
|
||||||
|
line-height: 30px;
|
||||||
|
|
||||||
|
.date {
|
||||||
|
font-size: 16px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.changes-header {
|
||||||
|
font-size: 18px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.label {
|
||||||
|
width: 40px;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
.change {
|
||||||
|
margin-bottom: 2px;
|
||||||
|
font-size: 13px;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in new issue