summaryrefslogtreecommitdiffstats
path: root/lib/models/output.js
diff options
context:
space:
mode:
Diffstat (limited to 'lib/models/output.js')
-rw-r--r--lib/models/output.js47
1 files changed, 47 insertions, 0 deletions
diff --git a/lib/models/output.js b/lib/models/output.js
new file mode 100644
index 0000000..957d9d3
--- /dev/null
+++ b/lib/models/output.js
@@ -0,0 +1,47 @@
+var Immutable = require('immutable');
+
+var Book = require('./book');
+
+var Output = Immutable.Record({
+ book: Book(),
+ plugins: Immutable.OrderedMap(),
+ pages: Immutable.OrderedMap(),
+ assets: Immutable.List(),
+ options: Immutable.Map()
+});
+
+Output.prototype.getBook = function() {
+ return this.get('book');
+};
+
+Output.prototype.getPlugins = function() {
+ return this.get('plugins');
+};
+
+Output.prototype.getPages = function() {
+ return this.get('pages');
+};
+
+Output.prototype.getOptions = function() {
+ return this.get('options');
+};
+
+Output.prototype.getAssets = function() {
+ return this.get('assets');
+};
+
+/**
+ Create an Output instance from a book and a set of options
+
+ @param {Book} book
+ @param {Object} options
+ @return {Output}
+*/
+Output.createForBook = function(book, options) {
+ return new Output({
+ book: book,
+ options: options
+ });
+};
+
+module.exports = Output;