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/translators/fills/translateImageFill.ts

27 lines
688 B
TypeScript
Raw Permalink Normal View History

import { imagesLibrary } from '@plugin/ImageLibrary';
import { Fill } from '@ui/lib/types/utils/fill';
import { PartialImageColor } from '@ui/lib/types/utils/imageColor';
export const translateImageFill = (fill: ImagePaint): Fill | undefined => {
const fillImage = translateImage(fill.imageHash);
if (!fillImage) return;
return {
fillOpacity: !fill.visible ? 0 : fill.opacity,
fillImage
};
};
const translateImage = (imageHash: string | null): PartialImageColor | undefined => {
if (!imageHash) return;
if (imagesLibrary.get(imageHash) === undefined) {
imagesLibrary.register(imageHash, figma.getImageByHash(imageHash));
}
return {
imageHash
};
};