0
Fork 0
mirror of https://github.com/penpot/penpot-exporter-figma-plugin.git synced 2024-12-22 13:43:03 -05:00
penpot-exporter-figma-plugin/ui-src/parser/parseFigmaId.ts
2024-06-26 08:11:57 +02:00

27 lines
503 B
TypeScript

import { PenpotFile } from '@ui/lib/types/penpotFile';
import { Uuid } from '@ui/lib/types/utils/uuid';
import { identifiers } from '@ui/parser';
export const parseFigmaId = (
file: PenpotFile,
figmaId?: string,
shapeRef: boolean = false
): Uuid | undefined => {
if (!figmaId) {
if (shapeRef) return;
return file.newId();
}
const id = identifiers.get(figmaId);
if (id) {
return id;
}
const newId = file.newId();
identifiers.set(figmaId, newId);
return newId;
};