| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- const BaseXform = require('../base-xform');
- class BlipXform extends BaseXform {
- get tag() {
- return 'a:blip';
- }
- render(xmlStream, model) {
- xmlStream.leafNode(this.tag, {
- 'xmlns:r': 'http://schemas.openxmlformats.org/officeDocument/2006/relationships',
- 'r:embed': model.rId,
- cstate: 'print',
- });
- // TODO: handle children (e.g. a:extLst=>a:ext=>a14:useLocalDpi
- }
- parseOpen(node) {
- switch (node.name) {
- case this.tag:
- this.model = {
- rId: node.attributes['r:embed'],
- };
- return true;
- default:
- return true;
- }
- }
- parseText() {}
- parseClose(name) {
- switch (name) {
- case this.tag:
- return false;
- default:
- // unprocessed internal nodes
- return true;
- }
- }
- }
- module.exports = BlipXform;
|