Don't remove all chapters on closing EditTextbook view

Previously, the code would dynamically add a chapter on render() if the textbook
had no chapters, and would remove all empty chapters when the edit view was closed.
Now, the render method doesn't modify the model at all anymore (yay!) and when the
edit view is closed, remove all empty chapters but be sure to leave at least one
left.
This commit is contained in:
David Baumgold
2013-06-24 15:21:27 -04:00
parent 0048c82092
commit 696a795c12
4 changed files with 25 additions and 19 deletions

View File

@@ -78,10 +78,6 @@ CMS.Views.EditTextbook = Backbone.View.extend({
name: this.model.escape('name'),
errors: null
}));
var chapters = this.model.get('chapters');
if (chapters.length === 0) {
chapters.add([{}]);
}
this.addAll();
return this;
},
@@ -153,8 +149,14 @@ CMS.Views.EditTextbook = Backbone.View.extend({
} else {
// remove empty chapters from textbook
var chapters = this.model.get("chapters");
chapters.remove(chapters.filter(
function(chapter) { return chapter.isEmpty(); }));
var emptyChapters = chapters.filter(function(chapter) {
return chapter.isEmpty(); });
if (chapters.length === emptyChapters.length) {
// make sure that there's always at least one chapter remaining
// in the chapterset, even if it's empty
emptyChapters = _.tail(emptyChapters);
}
chapters.remove(emptyChapters);
}
textbooks.trigger('render');
return this;