mirror of
https://github.com/penpot/penpot-exporter-figma-plugin.git
synced 2024-12-22 21:53:27 -05:00
58f7b0ab2c
* moved validate font logic * google fonts working * fixes * minor improvements * fix linter * local fonts * fixes * Changeset * changeset * refactor * refactor * update branch * minor fix * move files around * try to refactor * refactor * add todo * refactor * refactor * refactor * refactor * refactor * refactor * refactor move files to their concrete location --------- Co-authored-by: Jordi Sala Morales <jordism91@gmail.com>
20 lines
655 B
TypeScript
20 lines
655 B
TypeScript
import { LocalFont, translateFontVariantId } from '@plugin/translators/text/local';
|
|
|
|
import { FontId } from '@ui/lib/types/text/textContent';
|
|
|
|
import { items as localFonts } from './localFonts.json';
|
|
|
|
export const translateLocalFont = (fontName: FontName, fontWeight: number): FontId | undefined => {
|
|
const localFont = getLocalFont(fontName);
|
|
|
|
if (localFont === undefined) return;
|
|
|
|
return {
|
|
fontId: localFont.id,
|
|
fontVariantId: translateFontVariantId(localFont, fontName, fontWeight)
|
|
};
|
|
};
|
|
|
|
const getLocalFont = (fontName: FontName): LocalFont | undefined => {
|
|
return localFonts.find(localFont => localFont.name === fontName.family);
|
|
};
|