UNPKG

exceljs

Version:

Excel Workbook Manager - Read and Write xlsx and csv Files.

72 lines (57 loc) 1.36 kB
const BaseXform = require('../base-xform'); const BlipXform = require('./blip-xform'); class BlipFillXform extends BaseXform { constructor() { super(); this.map = { 'a:blip': new BlipXform(), }; } get tag() { return 'xdr:blipFill'; } render(xmlStream, model) { xmlStream.openNode(this.tag); this.map['a:blip'].render(xmlStream, model); // TODO: options for this + parsing xmlStream.openNode('a:stretch'); xmlStream.leafNode('a:fillRect'); xmlStream.closeNode(); xmlStream.closeNode(); } parseOpen(node) { if (this.parser) { this.parser.parseOpen(node); return true; } switch (node.name) { case this.tag: this.reset(); break; default: this.parser = this.map[node.name]; if (this.parser) { this.parser.parseOpen(node); } break; } return true; } parseText() {} parseClose(name) { if (this.parser) { if (!this.parser.parseClose(name)) { this.parser = undefined; } return true; } switch (name) { case this.tag: this.model = this.map['a:blip'].model; return false; default: return true; } } } module.exports = BlipFillXform;