| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- const BaseXform = require('../base-xform');
- class TableColumnXform extends BaseXform {
- get tag() {
- return 'tableColumn';
- }
- prepare(model, options) {
- model.id = options.index + 1;
- }
- render(xmlStream, model) {
- xmlStream.leafNode(this.tag, {
- id: model.id.toString(),
- name: model.name,
- totalsRowLabel: model.totalsRowLabel,
- totalsRowFunction: model.totalsRowFunction,
- dxfId: model.dxfId,
- });
- return true;
- }
- parseOpen(node) {
- if (node.name === this.tag) {
- const {attributes} = node;
- this.model = {
- name: attributes.name,
- totalsRowLabel: attributes.totalsRowLabel,
- totalsRowFunction: attributes.totalsRowFunction,
- dxfId: attributes.dxfId,
- };
- return true;
- }
- return false;
- }
- parseText() {}
- parseClose() {
- return false;
- }
- }
- module.exports = TableColumnXform;
|