| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- const _ = require('../../../utils/under-dash');
- const BaseXform = require('../base-xform');
- class PageMarginsXform extends BaseXform {
- get tag() {
- return 'pageMargins';
- }
- render(xmlStream, model) {
- if (model) {
- const attributes = {
- left: model.left,
- right: model.right,
- top: model.top,
- bottom: model.bottom,
- header: model.header,
- footer: model.footer,
- };
- if (_.some(attributes, value => value !== undefined)) {
- xmlStream.leafNode(this.tag, attributes);
- }
- }
- }
- parseOpen(node) {
- switch (node.name) {
- case this.tag:
- this.model = {
- left: parseFloat(node.attributes.left || 0.7),
- right: parseFloat(node.attributes.right || 0.7),
- top: parseFloat(node.attributes.top || 0.75),
- bottom: parseFloat(node.attributes.bottom || 0.75),
- header: parseFloat(node.attributes.header || 0.3),
- footer: parseFloat(node.attributes.footer || 0.3),
- };
- return true;
- default:
- return false;
- }
- }
- parseText() {}
- parseClose() {
- return false;
- }
- }
- module.exports = PageMarginsXform;
|