mirror of
https://github.com/penpot/penpot-exporter-figma-plugin.git
synced 2024-12-22 13:43:03 -05:00
7b3192936e
* wip * wip * wipo * more structure * wip * id library wip * wip * main instance working * improvements * fix node order * refactor * remove not used method * refactor * fix component set translation * refactor * add changelog * penpot lib update --------- Co-authored-by: Jordi Sala Morales <jordism91@gmail.com>
27 lines
505 B
TypeScript
27 lines
505 B
TypeScript
import { PenpotFile } from '@ui/lib/types/penpotFile';
|
|
import { Uuid } from '@ui/lib/types/utils/uuid';
|
|
|
|
import { idLibrary } from '.';
|
|
|
|
export const parseFigmaId = (
|
|
file: PenpotFile,
|
|
figmaId?: string,
|
|
shapeRef: boolean = false
|
|
): Uuid | undefined => {
|
|
if (!figmaId) {
|
|
if (shapeRef) {
|
|
return;
|
|
}
|
|
|
|
return file.newId();
|
|
}
|
|
|
|
const id = idLibrary.get(figmaId);
|
|
if (id) {
|
|
return id;
|
|
}
|
|
|
|
const newId = file.newId();
|
|
idLibrary.register(figmaId, newId);
|
|
return newId;
|
|
};
|