0
Fork 0
mirror of https://github.com/penpot/penpot-exporter-figma-plugin.git synced 2024-12-22 21:53:27 -05:00
penpot-exporter-figma-plugin/plugin-src/transformers/partials/transformText.ts
Alex Sánchez 303cc833a0
Fix component overrides (#200)
* wip

* wip

* wip

* wip

* wip

* fixes

* fixes

* fixes

* fixes

* fixes

* fixes

* fixes

* fixes

* fixes
2024-06-28 12:17:56 +02:00

46 lines
1.3 KiB
TypeScript

import { transformFills } from '@plugin/transformers/partials';
import { transformTextStyle, translateTextSegments } from '@plugin/translators/text';
import { translateGrowType, translateVerticalAlign } from '@plugin/translators/text/properties';
import { TextAttributes, TextShape } from '@ui/lib/types/shapes/textShape';
export const transformText = (node: TextNode): TextAttributes & Pick<TextShape, 'growType'> => {
const styledTextSegments = node.getStyledTextSegments([
'fontName',
'fontSize',
'fontWeight',
'lineHeight',
'letterSpacing',
'textCase',
'textDecoration',
'indentation',
'listOptions',
'fills',
'fillStyleId',
'textStyleId'
]);
return {
characters: node.characters,
content: {
type: 'root',
verticalAlign: translateVerticalAlign(node.textAlignVertical),
children: styledTextSegments.length
? [
{
type: 'paragraph-set',
children: [
{
type: 'paragraph',
children: translateTextSegments(node, styledTextSegments),
...transformTextStyle(node, styledTextSegments[0]),
...transformFills(node)
}
]
}
]
: undefined
},
growType: translateGrowType(node)
};
};