0
Fork 0
mirror of https://github.com/penpot/penpot-exporter-figma-plugin.git synced 2024-12-31 12:03:58 -05:00
penpot-exporter-figma-plugin/ui-src/parser/parseFigmaId.ts
Alex Sánchez e8270cfd54
Refactor (#188)
* refactor

* fixes

* rename libraries

* refactor libraries

* fixes
2024-06-25 17:12:20 +02:00

26 lines
529 B
TypeScript

import { PenpotFile } from '@ui/lib/types/penpotFile';
import { Uuid } from '@ui/lib/types/utils/uuid';
import { identifiers } from '@ui/parser/libraries';
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.register(figmaId, newId);
return newId;
};