mirror of
https://github.com/penpot/penpot-exporter-figma-plugin.git
synced 2025-01-06 23:00:55 -05:00
2920ac297b
* wip * implement bullet points * needs more ifs * refactor * revert * refactor * fix and refactor * refactor * refactor * refactor * add ordered class * wip * wip * fixes * package.json * little refactors * base list * fixes * abstract baselist * refactors * refactor * changeset * fix eslint issue * fix * fixes * fixes --------- Co-authored-by: Alex Sánchez <sion333@gmail.com>
27 lines
864 B
TypeScript
27 lines
864 B
TypeScript
import slugify from 'slugify';
|
|
|
|
import { translateFontVariantId } from '@plugin/translators/text/font/gfonts';
|
|
|
|
import { FontId } from '@ui/lib/types/shapes/textShape';
|
|
|
|
import { items as gfonts } from './gfonts.json';
|
|
import { GoogleFont } from './googleFont';
|
|
|
|
export const translateGoogleFont = (fontName: FontName, fontWeight: number): FontId | undefined => {
|
|
const googleFont = getGoogleFont(fontName);
|
|
|
|
if (googleFont === undefined) return;
|
|
|
|
return {
|
|
fontId: `gfont-${slugify(fontName.family.toLowerCase())}`,
|
|
fontVariantId: translateFontVariantId(googleFont, fontName, fontWeight)
|
|
};
|
|
};
|
|
|
|
export const isGoogleFont = (fontName: FontName): boolean => {
|
|
return getGoogleFont(fontName) !== undefined;
|
|
};
|
|
|
|
const getGoogleFont = (fontName: FontName): GoogleFont | undefined => {
|
|
return gfonts.find(font => font.family === fontName.family);
|
|
};
|