| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- const BaseXform = require('../base-xform');
- const StaticXform = require('../static-xform');
- const BlipFillXform = require('./blip-fill-xform');
- const NvPicPrXform = require('./nv-pic-pr-xform');
- const spPrJSON = require('./sp-pr');
- class PicXform extends BaseXform {
- constructor() {
- super();
- this.map = {
- 'xdr:nvPicPr': new NvPicPrXform(),
- 'xdr:blipFill': new BlipFillXform(),
- 'xdr:spPr': new StaticXform(spPrJSON),
- };
- }
- get tag() {
- return 'xdr:pic';
- }
- prepare(model, options) {
- model.index = options.index + 1;
- }
- render(xmlStream, model) {
- xmlStream.openNode(this.tag);
- this.map['xdr:nvPicPr'].render(xmlStream, model);
- this.map['xdr:blipFill'].render(xmlStream, model);
- this.map['xdr:spPr'].render(xmlStream, model);
- 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.mergeModel(this.parser.model);
- this.parser = undefined;
- }
- return true;
- }
- switch (name) {
- case this.tag:
- return false;
- default:
- // not quite sure how we get here!
- return true;
- }
- }
- }
- module.exports = PicXform;
|