mirror of
https://github.com/penpot/penpot-exporter-figma-plugin.git
synced 2024-12-31 12:03:58 -05:00
e8270cfd54
* refactor * fixes * rename libraries * refactor libraries * fixes
53 lines
1.4 KiB
TypeScript
53 lines
1.4 KiB
TypeScript
import { textStyles } from '@plugin/libraries';
|
|
import { translateTextStyle } from '@plugin/translators/styles';
|
|
import { sleep } from '@plugin/utils';
|
|
|
|
import { TypographyStyle } from '@ui/lib/types/shapes/textShape';
|
|
|
|
const isTextStyle = (style: BaseStyle): style is TextStyle => {
|
|
return style.type === 'TEXT';
|
|
};
|
|
|
|
export const registerTextStyles = async () => {
|
|
const localTextStyles = await figma.getLocalTextStylesAsync();
|
|
localTextStyles.forEach(style => {
|
|
textStyles.register(style.id, style);
|
|
});
|
|
};
|
|
|
|
export const processTextStyles = async (): Promise<Record<string, TypographyStyle>> => {
|
|
const stylesToFetch = Object.entries(textStyles.all());
|
|
const styles: Record<string, TypographyStyle> = {};
|
|
|
|
if (stylesToFetch.length === 0) return styles;
|
|
|
|
let currentStyle = 1;
|
|
|
|
figma.ui.postMessage({
|
|
type: 'PROGRESS_TOTAL_ITEMS',
|
|
data: stylesToFetch.length
|
|
});
|
|
|
|
figma.ui.postMessage({
|
|
type: 'PROGRESS_STEP',
|
|
data: 'typographies'
|
|
});
|
|
|
|
for (const [styleId, style] of stylesToFetch) {
|
|
const figmaStyle = style ?? (await figma.getStyleByIdAsync(styleId));
|
|
if (figmaStyle && isTextStyle(figmaStyle)) {
|
|
styles[styleId] = translateTextStyle(figmaStyle);
|
|
}
|
|
|
|
figma.ui.postMessage({
|
|
type: 'PROGRESS_PROCESSED_ITEMS',
|
|
data: currentStyle++
|
|
});
|
|
|
|
await sleep(0);
|
|
}
|
|
|
|
await sleep(20);
|
|
|
|
return styles;
|
|
};
|