UNPKG

@protobi/exceljs

Version:

Excel Workbook Manager - Temporary fork with pivot table enhancements and bug fixes pending upstream merge

78 lines (74 loc) 2.01 kB
"use strict"; var XmlStream = require('../../../utils/xml-stream'); var utils = require('../../../utils/utils'); var BaseXform = require('../base-xform'); var CommentXform = require('./comment-xform'); var CommentsXform = module.exports = function () { this.map = { comment: new CommentXform() }; }; utils.inherits(CommentsXform, BaseXform, { COMMENTS_ATTRIBUTES: { xmlns: 'http://schemas.openxmlformats.org/spreadsheetml/2006/main' } }, { render: function render(xmlStream, model) { var _this = this; model = model || this.model; xmlStream.openXml(XmlStream.StdDocAttributes); xmlStream.openNode('comments', CommentsXform.COMMENTS_ATTRIBUTES); // authors // TODO: support authors properly xmlStream.openNode('authors'); xmlStream.leafNode('author', null, 'Author'); xmlStream.closeNode(); // comments xmlStream.openNode('commentList'); model.comments.forEach(function (comment) { _this.map.comment.render(xmlStream, comment); }); xmlStream.closeNode(); xmlStream.closeNode(); }, parseOpen: function parseOpen(node) { if (this.parser) { this.parser.parseOpen(node); return true; } switch (node.name) { case 'commentList': this.model = { comments: [] }; return true; case 'comment': this.parser = this.map.comment; this.parser.parseOpen(node); return true; default: return false; } }, parseText: function parseText(text) { if (this.parser) { this.parser.parseText(text); } }, parseClose: function parseClose(name) { switch (name) { case 'commentList': return false; case 'comment': this.model.comments.push(this.parser.model); this.parser = undefined; return true; default: if (this.parser) { this.parser.parseClose(name); } return true; } } }); //# sourceMappingURL=comments-xform.js.map