mirror of
https://github.com/penpot/penpot-exporter-figma-plugin.git
synced 2024-12-22 21:53:27 -05:00
3094f05e98
* Optimize images before generating zip file * add changelog * refactor * fix lint
43 lines
1.3 KiB
TypeScript
43 lines
1.3 KiB
TypeScript
import { transformFills } from '@plugin/transformers/partials';
|
|
import { transformTextStyle, translateStyleTextSegments } 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'
|
|
]);
|
|
|
|
return {
|
|
content: {
|
|
type: 'root',
|
|
verticalAlign: translateVerticalAlign(node.textAlignVertical),
|
|
children: styledTextSegments.length
|
|
? [
|
|
{
|
|
type: 'paragraph-set',
|
|
children: [
|
|
{
|
|
type: 'paragraph',
|
|
children: translateStyleTextSegments(node, styledTextSegments),
|
|
...transformTextStyle(node, styledTextSegments[0]),
|
|
...transformFills(node)
|
|
}
|
|
]
|
|
}
|
|
]
|
|
: undefined
|
|
},
|
|
growType: translateGrowType(node)
|
|
};
|
|
};
|