UNPKG

exceljs

Version:

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

101 lines (83 loc) 2.86 kB
const XmlStream = require('../../../utils/xml-stream'); const BaseXform = require('../base-xform'); const StringXform = require('../simple/string-xform'); const AppHeadingPairsXform = require('./app-heading-pairs-xform'); const AppTitleOfPartsXform = require('./app-titles-of-parts-xform'); class AppXform extends BaseXform { constructor() { super(); this.map = { Company: new StringXform({tag: 'Company'}), Manager: new StringXform({tag: 'Manager'}), HeadingPairs: new AppHeadingPairsXform(), TitleOfParts: new AppTitleOfPartsXform(), }; } render(xmlStream, model) { xmlStream.openXml(XmlStream.StdDocAttributes); xmlStream.openNode('Properties', AppXform.PROPERTY_ATTRIBUTES); xmlStream.leafNode('Application', undefined, 'Microsoft Excel'); xmlStream.leafNode('DocSecurity', undefined, '0'); xmlStream.leafNode('ScaleCrop', undefined, 'false'); this.map.HeadingPairs.render(xmlStream, model.worksheets); this.map.TitleOfParts.render(xmlStream, model.worksheets); this.map.Company.render(xmlStream, model.company || ''); this.map.Manager.render(xmlStream, model.manager); xmlStream.leafNode('LinksUpToDate', undefined, 'false'); xmlStream.leafNode('SharedDoc', undefined, 'false'); xmlStream.leafNode('HyperlinksChanged', undefined, 'false'); xmlStream.leafNode('AppVersion', undefined, '16.0300'); xmlStream.closeNode(); } parseOpen(node) { if (this.parser) { this.parser.parseOpen(node); return true; } switch (node.name) { case 'Properties': return true; default: this.parser = this.map[node.name]; if (this.parser) { this.parser.parseOpen(node); return true; } // there's a lot we don't bother to parse return false; } } parseText(text) { if (this.parser) { this.parser.parseText(text); } } parseClose(name) { if (this.parser) { if (!this.parser.parseClose(name)) { this.parser = undefined; } return true; } switch (name) { case 'Properties': this.model = { worksheets: this.map.TitleOfParts.model, company: this.map.Company.model, manager: this.map.Manager.model, }; return false; default: return true; } } } AppXform.DateFormat = function(dt) { return dt.toISOString().replace(/[.]\d{3,6}/, ''); }; AppXform.DateAttrs = {'xsi:type': 'dcterms:W3CDTF'}; AppXform.PROPERTY_ATTRIBUTES = { xmlns: 'http://schemas.openxmlformats.org/officeDocument/2006/extended-properties', 'xmlns:vt': 'http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes', }; module.exports = AppXform;