| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- 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;
|