'use strict'; const { pathElems, referencesProps } = require('./_collections.js'); exports.name = 'moveGroupAttrsToElems'; exports.description = 'moves some group attributes to the content elements'; const pathElemsWithGroupsAndText = [...pathElems, 'g', 'text']; /** * Move group attrs to the content elements. * * @example * * * * * ⬇ * * * * * * @author Kir Belevich * * @type {import('./plugins-types').Plugin<'moveGroupAttrsToElems'>} */ exports.fn = () => { return { element: { enter: (node) => { // move group transform attr to content's pathElems if ( node.name === 'g' && node.children.length !== 0 && node.attributes.transform != null && Object.entries(node.attributes).some( ([name, value]) => referencesProps.includes(name) && value.includes('url(') ) === false && node.children.every( (child) => child.type === 'element' && pathElemsWithGroupsAndText.includes(child.name) && child.attributes.id == null ) ) { for (const child of node.children) { const value = node.attributes.transform; if (child.type === 'element') { if (child.attributes.transform != null) { child.attributes.transform = `${value} ${child.attributes.transform}`; } else { child.attributes.transform = value; } } } delete node.attributes.transform; } }, }, }; };