exceljs
Version:
Excel Workbook Manager - Read and Write xlsx and csv Files.
43 lines (36 loc) • 875 B
JavaScript
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;