2013-05-20 04:19:54 +00:00
|
|
|
|
'use strict';
|
2013-06-19 01:02:23 +00:00
|
|
|
|
define([
|
|
|
|
|
'app',
|
|
|
|
|
'marionette',
|
|
|
|
|
'Settings/Notifications/ItemView',
|
2013-07-26 23:08:24 +00:00
|
|
|
|
'Settings/Notifications/SchemaModal'
|
|
|
|
|
], function (App, Marionette, NotificationItemView, SchemaModal) {
|
2013-06-19 01:02:23 +00:00
|
|
|
|
return Marionette.CompositeView.extend({
|
|
|
|
|
itemView : NotificationItemView,
|
2013-06-26 00:34:33 +00:00
|
|
|
|
itemViewContainer: '.notifications',
|
2013-06-19 01:02:23 +00:00
|
|
|
|
template : 'Settings/Notifications/CollectionTemplate',
|
2013-05-25 06:38:43 +00:00
|
|
|
|
|
2013-07-26 22:07:51 +00:00
|
|
|
|
ui: {
|
|
|
|
|
'addCard': '.x-add-card'
|
|
|
|
|
},
|
|
|
|
|
|
2013-05-25 06:38:43 +00:00
|
|
|
|
events: {
|
2013-07-26 06:53:37 +00:00
|
|
|
|
'click .x-add-card': '_openSchemaModal'
|
|
|
|
|
},
|
|
|
|
|
|
2013-07-26 22:07:51 +00:00
|
|
|
|
appendHtml: function(collectionView, itemView, index){
|
|
|
|
|
collectionView.ui.addCard.parent('li').before(itemView.el);
|
2013-07-26 07:04:25 +00:00
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
_openSchemaModal: function () {
|
|
|
|
|
SchemaModal.open(this.collection);
|
2013-05-25 06:38:43 +00:00
|
|
|
|
}
|
2013-05-20 04:19:54 +00:00
|
|
|
|
});
|
|
|
|
|
});
|