feat: integrate Universal Design System with Web, Print, and Presentation examples
Some checks failed
Monorepo Pipeline / ⚡ Prioritize Release (push) Successful in 2s
Monorepo Pipeline / 🧪 Test (push) Successful in 1m16s
Monorepo Pipeline / 🧹 Lint (push) Failing after 1m27s
Monorepo Pipeline / 🏗️ Build (push) Failing after 1m29s
Monorepo Pipeline / 🚀 Release (push) Has been skipped
Monorepo Pipeline / 🐳 Build Gatekeeper (Product) (push) Has been skipped
Monorepo Pipeline / 🐳 Build Build-Base (push) Has been skipped
Monorepo Pipeline / 🐳 Build Production Runtime (push) Has been skipped
Some checks failed
Monorepo Pipeline / ⚡ Prioritize Release (push) Successful in 2s
Monorepo Pipeline / 🧪 Test (push) Successful in 1m16s
Monorepo Pipeline / 🧹 Lint (push) Failing after 1m27s
Monorepo Pipeline / 🏗️ Build (push) Failing after 1m29s
Monorepo Pipeline / 🚀 Release (push) Has been skipped
Monorepo Pipeline / 🐳 Build Gatekeeper (Product) (push) Has been skipped
Monorepo Pipeline / 🐳 Build Build-Base (push) Has been skipped
Monorepo Pipeline / 🐳 Build Production Runtime (push) Has been skipped
This commit is contained in:
30
apps/example-print/src/generator.tsx
Normal file
30
apps/example-print/src/generator.tsx
Normal file
@@ -0,0 +1,30 @@
|
||||
import React from 'react';
|
||||
import ReactPDF, { Document, Page } from '@react-pdf/renderer';
|
||||
import { Box, Text, EnvironmentProvider } from '@mintel/ui';
|
||||
|
||||
const InvoiceDocument = () => (
|
||||
<EnvironmentProvider env="print">
|
||||
<Document>
|
||||
<Page size="A4" style={{ padding: 40, backgroundColor: '#ffffff' }}>
|
||||
<Box pdfStyle={{ marginBottom: 20, borderBottom: '2px solid #1E40AF', paddingBottom: 10 }}>
|
||||
<Text pdfStyle={{ fontSize: 28, color: '#1E40AF', fontWeight: 'bold' }}>
|
||||
Mintel Universal Design
|
||||
</Text>
|
||||
</Box>
|
||||
<Box pdfStyle={{ padding: 20, backgroundColor: '#f3f4f6', borderRadius: 8 }}>
|
||||
<Text pdfStyle={{ fontSize: 14, color: '#374151' }}>
|
||||
This PDF is generated using the exact same React components as the Web application.
|
||||
</Text>
|
||||
</Box>
|
||||
</Page>
|
||||
</Document>
|
||||
</EnvironmentProvider>
|
||||
);
|
||||
|
||||
const generatePDF = async () => {
|
||||
console.log('Generating Universal PDF...');
|
||||
await ReactPDF.render(<InvoiceDocument />, `${__dirname}/output.pdf`);
|
||||
console.log('Successfully saved to output.pdf');
|
||||
};
|
||||
|
||||
generatePDF();
|
||||
Reference in New Issue
Block a user