mirror of
https://github.com/penpot/penpot-exporter-figma-plugin.git
synced 2025-01-03 05:10:13 -05:00
Move to function component (#11)
This commit is contained in:
parent
0d10f51238
commit
bbaaeaebcc
2 changed files with 67 additions and 80 deletions
|
@ -1,110 +1,97 @@
|
|||
import { Component } from 'react';
|
||||
import { useEffect, useState } from 'react';
|
||||
import slugify from 'slugify';
|
||||
|
||||
import { createPenpotFile } from './converters';
|
||||
import { validateFont } from './validators';
|
||||
|
||||
type PenpotExporterState = {
|
||||
missingFonts: Set<string>;
|
||||
exporting: boolean;
|
||||
};
|
||||
export const PenpotExporter = () => {
|
||||
const [missingFonts, setMissingFonts] = useState(new Set<string>());
|
||||
const [exporting, setExporting] = useState(false);
|
||||
|
||||
export default class PenpotExporter extends Component<unknown, PenpotExporterState> {
|
||||
state: PenpotExporterState = {
|
||||
missingFonts: new Set(),
|
||||
exporting: false
|
||||
};
|
||||
|
||||
componentDidMount = () => {
|
||||
window.addEventListener('message', this.onMessage);
|
||||
};
|
||||
|
||||
componentDidUpdate = () => {
|
||||
this.setDimensions();
|
||||
};
|
||||
|
||||
componentWillUnmount = () => {
|
||||
window.removeEventListener('message', this.onMessage);
|
||||
};
|
||||
addFontWarning(font: string) {
|
||||
const newMissingFonts = this.state.missingFonts;
|
||||
newMissingFonts.add(font);
|
||||
|
||||
this.setState(() => ({ missingFonts: newMissingFonts }));
|
||||
}
|
||||
|
||||
onCreatePenpot = () => {
|
||||
this.setState(() => ({ exporting: true }));
|
||||
parent.postMessage({ pluginMessage: { type: 'export' } }, '*');
|
||||
};
|
||||
|
||||
onCancel = () => {
|
||||
parent.postMessage({ pluginMessage: { type: 'cancel' } }, '*');
|
||||
const addFontWarning = (font: string) => {
|
||||
setMissingFonts(missingFonts => missingFonts.add(font));
|
||||
};
|
||||
|
||||
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
||||
onMessage = (event: any) => {
|
||||
const onMessage = (event: any) => {
|
||||
if (event.data.pluginMessage.type == 'FIGMAFILE') {
|
||||
const file = createPenpotFile(event.data.pluginMessage.data);
|
||||
// validate file.fontNames
|
||||
|
||||
file.fontNames.forEach(font => {
|
||||
if (!validateFont(font)) {
|
||||
this.addFontWarning(slugify(font.family.toLowerCase()));
|
||||
addFontWarning(slugify(font.family.toLowerCase()));
|
||||
}
|
||||
});
|
||||
|
||||
file.penpotFile.export();
|
||||
this.setState(() => ({ exporting: false }));
|
||||
|
||||
setExporting(false);
|
||||
}
|
||||
};
|
||||
|
||||
setDimensions = () => {
|
||||
const isMissingFonts = this.state.missingFonts.size > 0;
|
||||
const onCreatePenpot = () => {
|
||||
setExporting(true);
|
||||
|
||||
parent.postMessage({ pluginMessage: { type: 'export' } }, '*');
|
||||
};
|
||||
|
||||
const onCancel = () => {
|
||||
parent.postMessage({ pluginMessage: { type: 'cancel' } }, '*');
|
||||
};
|
||||
|
||||
const setDimensions = () => {
|
||||
const isMissingFonts = missingFonts.size > 0;
|
||||
|
||||
let width = 300;
|
||||
let height = 280;
|
||||
|
||||
if (isMissingFonts) {
|
||||
height += this.state.missingFonts.size * 20;
|
||||
height += missingFonts.size * 20;
|
||||
width = 400;
|
||||
parent.postMessage({ pluginMessage: { type: 'resize', width: width, height: height } }, '*');
|
||||
}
|
||||
};
|
||||
|
||||
renderFontWarnings = () => {
|
||||
return (
|
||||
<ul>
|
||||
{Array.from(this.state.missingFonts).map(font => (
|
||||
<li key={font}>{font}</li>
|
||||
))}
|
||||
</ul>
|
||||
);
|
||||
};
|
||||
useEffect(() => {
|
||||
window.addEventListener('message', onMessage);
|
||||
|
||||
render() {
|
||||
// Update the dimensions of the plugin window based on available data and selections
|
||||
return (
|
||||
<main>
|
||||
<header>
|
||||
<img src={require('./logo.svg')} />
|
||||
<h2>Penpot Exporter</h2>
|
||||
</header>
|
||||
<section>
|
||||
<div style={{ display: this.state.missingFonts.size > 0 ? 'inline' : 'none' }}>
|
||||
<div id="missing-fonts">
|
||||
{this.state.missingFonts.size} non-default font
|
||||
{this.state.missingFonts.size > 1 ? 's' : ''}:{' '}
|
||||
</div>
|
||||
<small>Ensure fonts are installed in Penpot before importing.</small>
|
||||
<div id="missing-fonts-list">{this.renderFontWarnings()}</div>
|
||||
return () => {
|
||||
window.removeEventListener('message', onMessage);
|
||||
};
|
||||
}, []);
|
||||
|
||||
useEffect(() => {
|
||||
setDimensions();
|
||||
}, [missingFonts]);
|
||||
|
||||
return (
|
||||
<main>
|
||||
<header>
|
||||
<img src={require('./logo.svg')} />
|
||||
<h2>Penpot Exporter</h2>
|
||||
</header>
|
||||
<section>
|
||||
<div style={{ display: missingFonts.size > 0 ? 'inline' : 'none' }}>
|
||||
<div id="missing-fonts">
|
||||
{missingFonts.size} non-default font
|
||||
{missingFonts.size > 1 ? 's' : ''}:{' '}
|
||||
</div>
|
||||
</section>
|
||||
<footer>
|
||||
<button className="brand" disabled={this.state.exporting} onClick={this.onCreatePenpot}>
|
||||
{this.state.exporting ? 'Exporting...' : 'Export to Penpot'}
|
||||
</button>
|
||||
<button onClick={this.onCancel}>Cancel</button>
|
||||
</footer>
|
||||
</main>
|
||||
);
|
||||
}
|
||||
}
|
||||
<small>Ensure fonts are installed in Penpot before importing.</small>
|
||||
<div id="missing-fonts-list">
|
||||
<ul>
|
||||
{Array.from(missingFonts).map(font => (
|
||||
<li key={font}>{font}</li>
|
||||
))}
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<footer>
|
||||
<button className="brand" disabled={exporting} onClick={onCreatePenpot}>
|
||||
{exporting ? 'Exporting...' : 'Export to Penpot'}
|
||||
</button>
|
||||
<button onClick={onCancel}>Cancel</button>
|
||||
</footer>
|
||||
</main>
|
||||
);
|
||||
};
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
import { StrictMode } from 'react';
|
||||
import { createRoot } from 'react-dom/client';
|
||||
|
||||
import PenpotExporter from './PenpotExporter';
|
||||
import { PenpotExporter } from './PenpotExporter';
|
||||
import './ui.css';
|
||||
|
||||
createRoot(document.getElementById('penpot-export-page') as HTMLElement).render(
|
||||
|
|
Loading…
Reference in a new issue