| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- const TextXform = require('./text-xform');
- const FontXform = require('../style/font-xform');
- const BaseXform = require('../base-xform');
- // <r>
- // <rPr>
- // <sz val="11"/>
- // <color theme="1" tint="5"/>
- // <rFont val="Calibri"/>
- // <family val="2"/>
- // <scheme val="minor"/>
- // </rPr>
- // <t xml:space="preserve"> is </t>
- // </r>
- class RichTextXform extends BaseXform {
- constructor(model) {
- super();
- this.model = model;
- }
- get tag() {
- return 'r';
- }
- get textXform() {
- return this._textXform || (this._textXform = new TextXform());
- }
- get fontXform() {
- return this._fontXform || (this._fontXform = new FontXform(RichTextXform.FONT_OPTIONS));
- }
- render(xmlStream, model) {
- model = model || this.model;
- xmlStream.openNode('r');
- if (model.font) {
- this.fontXform.render(xmlStream, model.font);
- }
- this.textXform.render(xmlStream, model.text);
- xmlStream.closeNode();
- }
- parseOpen(node) {
- if (this.parser) {
- this.parser.parseOpen(node);
- return true;
- }
- switch (node.name) {
- case 'r':
- this.model = {};
- return true;
- case 't':
- this.parser = this.textXform;
- this.parser.parseOpen(node);
- return true;
- case 'rPr':
- this.parser = this.fontXform;
- this.parser.parseOpen(node);
- return true;
- default:
- return false;
- }
- }
- parseText(text) {
- if (this.parser) {
- this.parser.parseText(text);
- }
- }
- parseClose(name) {
- switch (name) {
- case 'r':
- return false;
- case 't':
- this.model.text = this.parser.model;
- this.parser = undefined;
- return true;
- case 'rPr':
- this.model.font = this.parser.model;
- this.parser = undefined;
- return true;
- default:
- if (this.parser) {
- this.parser.parseClose(name);
- }
- return true;
- }
- }
- }
- RichTextXform.FONT_OPTIONS = {
- tagName: 'rPr',
- fontNameTag: 'rFont',
- };
- module.exports = RichTextXform;
|