mirror of
https://github.com/penpot/penpot-exporter-figma-plugin.git
synced 2024-12-22 13:43:03 -05:00
761093564b
* masked groups * changeset * refactor * refactor * refactor * fixes * fixes * wip * try to fix * refactor * refactor for better undestanding of code * refactor * fix name --------- Co-authored-by: Jordi Sala Morales <jordism91@gmail.com>
41 lines
1.3 KiB
TypeScript
41 lines
1.3 KiB
TypeScript
import { transformGroupNodeLike, transformSceneNode } from '@plugin/transformers';
|
|
|
|
import { PenpotNode } from '@ui/lib/types/penpotNode';
|
|
|
|
/**
|
|
* Translates the children of a node that acts as a mask.
|
|
* We need to split the children into two groups: the ones that are masked and the ones that are not.
|
|
*
|
|
* The masked children will be grouped together in a mask group.
|
|
* The unmasked children will be returned as they are.
|
|
*
|
|
* @maskIndex The index of the mask node in the children array
|
|
*/
|
|
export const translateMaskChildren = async (
|
|
children: readonly SceneNode[],
|
|
maskIndex: number,
|
|
baseX: number,
|
|
baseY: number
|
|
): Promise<PenpotNode[]> => {
|
|
const maskChild = children[maskIndex];
|
|
const unmaskedChildren = await translateChildren(children.slice(0, maskIndex), baseX, baseY);
|
|
const maskedChildren = await translateChildren(children.slice(maskIndex), baseX, baseY);
|
|
|
|
const maskGroup = {
|
|
...transformGroupNodeLike(maskChild, baseX, baseY),
|
|
children: maskedChildren,
|
|
maskedGroup: true
|
|
};
|
|
|
|
return [...unmaskedChildren, maskGroup];
|
|
};
|
|
|
|
export const translateChildren = async (
|
|
children: readonly SceneNode[],
|
|
baseX: number,
|
|
baseY: number
|
|
): Promise<PenpotNode[]> => {
|
|
return (await Promise.all(children.map(child => transformSceneNode(child, baseX, baseY)))).filter(
|
|
(child): child is PenpotNode => !!child
|
|
);
|
|
};
|