UNPKG

@protobi/exceljs

Version:

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

110 lines (106 loc) 3.98 kB
"use strict"; function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); } function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; } function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; } function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; } function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; } function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); } var RichTextXform = require('../strings/rich-text-xform'); var utils = require('../../../utils/utils'); var BaseXform = require('../base-xform'); /** <comment ref="B1" authorId="0"> <text> <r> <rPr> <b/> <sz val="9"/> <rFont val="宋体"/> <charset val="134"/> </rPr> <t>51422:</t> </r> <r> <rPr> <sz val="9"/> <rFont val="宋体"/> <charset val="134"/> </rPr> <t xml:space="preserve">&#10;test</t> </r> </text> </comment> */ var CommentXform = module.exports = function (model) { this.model = model; }; utils.inherits(CommentXform, BaseXform, { get tag() { return 'r'; }, get richTextXform() { if (!this._richTextXform) { this._richTextXform = new RichTextXform(); } return this._richTextXform; }, render: function render(xmlStream, model) { var _this = this; model = model || this.model; xmlStream.openNode('comment', { ref: model.ref, authorId: 0 }); xmlStream.openNode('text'); if (model && model.note && model.note.texts) { model.note.texts.forEach(function (text) { _this.richTextXform.render(xmlStream, text); }); } xmlStream.closeNode(); xmlStream.closeNode(); }, parseOpen: function parseOpen(node) { if (this.parser) { this.parser.parseOpen(node); return true; } switch (node.name) { case 'comment': this.model = _objectSpread({ type: 'note', note: { texts: [] } }, node.attributes); return true; case 'r': this.parser = this.richTextXform; 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 'comment': return false; case 'r': this.model.note.texts.push(this.parser.model); this.parser = undefined; return true; default: if (this.parser) { this.parser.parseClose(name); } return true; } } }); //# sourceMappingURL=comment-xform.js.map