Skip to content

Commit

Permalink
refactor(mergePaths): improve performance (#1904)
Browse files Browse the repository at this point in the history
  • Loading branch information
SethFalco authored Dec 25, 2023
1 parent 52961ba commit a287a2a
Showing 1 changed file with 40 additions and 24 deletions.
64 changes: 40 additions & 24 deletions plugins/mergePaths.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
'use strict';

const { detachNodeFromParent } = require('../lib/xast.js');
/**
* @typedef {import('../lib/types').XastChild} XastChild
*/

const { collectStylesheet, computeStyle } = require('../lib/style.js');
const { path2js, js2path, intersects } = require('./_path.js');

Expand All @@ -25,12 +28,18 @@ exports.fn = (root, params) => {
return {
element: {
enter: (node) => {
let prevChild = null;
if (node.children.length <= 1) {
return;
}

/** @type {XastChild[]} */
const elementsToRemove = [];
let prevChild = node.children[0];

for (let i = 1; i < node.children.length; i++) {
const child = node.children[i];

for (const child of node.children) {
// skip if previous element is not path or contains animation elements
if (
prevChild == null ||
prevChild.type !== 'element' ||
prevChild.name !== 'path' ||
prevChild.children.length !== 0 ||
Expand All @@ -40,7 +49,6 @@ exports.fn = (root, params) => {
continue;
}

// skip if element is not path or contains animation elements
if (
child.type !== 'element' ||
child.name !== 'path' ||
Expand All @@ -51,7 +59,6 @@ exports.fn = (root, params) => {
continue;
}

// preserve paths with markers
const computedStyle = computeStyle(stylesheet, child);
if (
computedStyle['marker-start'] ||
Expand All @@ -62,36 +69,45 @@ exports.fn = (root, params) => {
continue;
}

const prevChildAttrs = Object.keys(prevChild.attributes);
const childAttrs = Object.keys(child.attributes);
let attributesAreEqual = prevChildAttrs.length === childAttrs.length;
for (const name of childAttrs) {
if (name !== 'd') {
if (
prevChild.attributes[name] == null ||
prevChild.attributes[name] !== child.attributes[name]
) {
attributesAreEqual = false;
}
}
if (childAttrs.length !== Object.keys(prevChild.attributes).length) {
prevChild = child;
continue;
}

const areAttrsEqual = childAttrs.some((attr) => {
return (
attr !== 'd' &&
prevChild.type === 'element' &&
prevChild.attributes[attr] !== child.attributes[attr]
);
});

if (areAttrsEqual) {
prevChild = child;
continue;
}

const prevPathJS = path2js(prevChild);
const curPathJS = path2js(child);

if (
attributesAreEqual &&
(force || !intersects(prevPathJS, curPathJS))
) {
js2path(prevChild, prevPathJS.concat(curPathJS), {
if (force || !intersects(prevPathJS, curPathJS)) {
prevPathJS.push(...curPathJS);
js2path(prevChild, prevPathJS, {
floatPrecision,
noSpaceAfterFlags,
});
detachNodeFromParent(child, node);

elementsToRemove.push(child);
continue;
}

prevChild = child;
}

node.children = node.children.filter(
(child) => !elementsToRemove.includes(child),
);
},
},
};
Expand Down

0 comments on commit a287a2a

Please sign in to comment.