mirror of
https://github.com/penpot/penpot-exporter-figma-plugin.git
synced 2025-01-02 21:00:12 -05:00
move component out of the ui (#10)
This commit is contained in:
parent
77cfd0b800
commit
0d10f51238
3 changed files with 115 additions and 112 deletions
110
src/ui/PenpotExporter.tsx
Normal file
110
src/ui/PenpotExporter.tsx
Normal file
|
@ -0,0 +1,110 @@
|
||||||
|
import { Component } from 'react';
|
||||||
|
import slugify from 'slugify';
|
||||||
|
|
||||||
|
import { createPenpotFile } from './converters';
|
||||||
|
import { validateFont } from './validators';
|
||||||
|
|
||||||
|
type PenpotExporterState = {
|
||||||
|
missingFonts: Set<string>;
|
||||||
|
exporting: boolean;
|
||||||
|
};
|
||||||
|
|
||||||
|
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' } }, '*');
|
||||||
|
};
|
||||||
|
|
||||||
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
||||||
|
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()));
|
||||||
|
}
|
||||||
|
});
|
||||||
|
file.penpotFile.export();
|
||||||
|
this.setState(() => ({ exporting: false }));
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
setDimensions = () => {
|
||||||
|
const isMissingFonts = this.state.missingFonts.size > 0;
|
||||||
|
|
||||||
|
let width = 300;
|
||||||
|
let height = 280;
|
||||||
|
|
||||||
|
if (isMissingFonts) {
|
||||||
|
height += this.state.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>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
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>
|
||||||
|
</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>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
115
src/ui/ui.tsx
115
src/ui/ui.tsx
|
@ -1,118 +1,11 @@
|
||||||
import * as React from 'react';
|
import { StrictMode } from 'react';
|
||||||
import { createRoot } from 'react-dom/client';
|
import { createRoot } from 'react-dom/client';
|
||||||
import slugify from 'slugify';
|
|
||||||
|
|
||||||
import { createPenpotFile } from './converters';
|
import PenpotExporter from './PenpotExporter';
|
||||||
import './ui.css';
|
import './ui.css';
|
||||||
import { validateFont } from './validators';
|
|
||||||
|
|
||||||
type PenpotExporterState = {
|
|
||||||
missingFonts: Set<string>;
|
|
||||||
exporting: boolean;
|
|
||||||
};
|
|
||||||
|
|
||||||
export default class PenpotExporter extends React.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' } }, '*');
|
|
||||||
};
|
|
||||||
|
|
||||||
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
||||||
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()));
|
|
||||||
}
|
|
||||||
});
|
|
||||||
file.penpotFile.export();
|
|
||||||
this.setState(() => ({ exporting: false }));
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
setDimensions = () => {
|
|
||||||
const isMissingFonts = this.state.missingFonts.size > 0;
|
|
||||||
|
|
||||||
let width = 300;
|
|
||||||
let height = 280;
|
|
||||||
|
|
||||||
if (isMissingFonts) {
|
|
||||||
height += this.state.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>
|
|
||||||
);
|
|
||||||
};
|
|
||||||
|
|
||||||
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>
|
|
||||||
</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>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
createRoot(document.getElementById('penpot-export-page') as HTMLElement).render(
|
createRoot(document.getElementById('penpot-export-page') as HTMLElement).render(
|
||||||
<React.StrictMode>
|
<StrictMode>
|
||||||
<PenpotExporter />
|
<PenpotExporter />
|
||||||
</React.StrictMode>
|
</StrictMode>
|
||||||
);
|
);
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
"esModuleInterop": true,
|
"esModuleInterop": true,
|
||||||
"isolatedModules": true,
|
"isolatedModules": true,
|
||||||
"skipLibCheck": true,
|
"skipLibCheck": true,
|
||||||
"jsx": "react",
|
"jsx": "react-jsx",
|
||||||
"lib": ["DOM", "ES6"],
|
"lib": ["DOM", "ES6"],
|
||||||
"target": "es2017",
|
"target": "es2017",
|
||||||
"module": "ESNext",
|
"module": "ESNext",
|
||||||
|
|
Loading…
Reference in a new issue