docs.sheetjs.com/docz/static/next/getStaticProps.js
2022-08-16 05:29:15 -04:00

30 lines
886 B
JavaScript

import Head from 'next/head';
import { readFile, set_fs, utils } from 'xlsx';
import { join } from 'path';
import { cwd } from 'process';
export default function Index({type, html}) { return ( <div>
<Head>
<meta httpEquiv="Content-Type" content="text/html; charset=UTF-8" />
<title>{`SheetJS Next.JS ${type} Demo`}</title>
<style jsx>{`body, #app { height: 100%; };`}</style>
</Head>
<pre>
<h3>{`SheetJS Next.JS ${type} Demo`}</h3>
This demo reads from /sheetjs.xlsx<br/><br/>
It generates HTML from the first sheet.<br/><br/>
<div dangerouslySetInnerHTML={{ __html: html }} />
</pre>
</div> ); }
export async function getStaticProps() {
set_fs(await import("fs"));
const wb = readFile(join(cwd(), "sheetjs.xlsx"))
return {
props: {
type: "getStaticProps",
html: utils.sheet_to_html(wb.Sheets[wb.SheetNames[0]]),
},
}
}