docs.sheetjs.com/docz/docs/03-demos/12-static/08-nextjs.md

841 lines
23 KiB
Markdown
Raw Permalink Normal View History

2023-01-15 03:36:13 +00:00
---
2023-08-21 23:07:34 +00:00
title: Sheets in ReactJS Sites with NextJS
sidebar_label: NextJS
description: Make static websites from spreadsheets using NextJS. Seamlessly integrate data into the data layer using SheetJS. Create content without leaving the comfort of Excel.
2023-02-28 11:40:44 +00:00
pagination_prev: demos/net/index
pagination_next: demos/mobile/index
2023-01-15 03:36:13 +00:00
---
2023-04-27 09:12:19 +00:00
import current from '/version.js';
2023-05-26 22:50:23 +00:00
import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
2023-04-29 11:21:37 +00:00
import CodeBlock from '@theme/CodeBlock';
2023-04-27 09:12:19 +00:00
2023-08-21 23:07:34 +00:00
[NextJS](https://nextjs.org/) is a server-side framework for building static
and dynamic sites using the ReactJS framework.
2023-01-15 03:36:13 +00:00
2023-08-21 23:07:34 +00:00
[SheetJS](https://sheetjs.com) is a JavaScript library for reading and writing
data from spreadsheets.
2023-05-26 22:50:23 +00:00
2023-08-21 23:07:34 +00:00
This discussion covers three key SheetJS + NextJS operations:
2023-05-26 22:50:23 +00:00
1) [Loading Data](#loading-data): NextJS can read files in lifecycle methods OR
custom Webpack loaders can create asset modules.
2) [Lifecycle Methods](#nextjs-strategies): NextJS includes strategies for
static pages (`getStaticProps`) as well as dynamic pages (`getServerSideProps`).
3) [Data Presentation](#data-presentation): Pages use React and JSX.
2023-08-21 23:07:34 +00:00
The ["Demo"](#demo) uses NextJS and SheetJS to pull data from a spreadsheet.
We'll explore how to create asset modules that process spreadsheet data at build
time and how to read files on the server in NextJS lifecycle methods.
2023-05-26 22:50:23 +00:00
:::danger Telemetry
2023-06-02 02:17:56 +00:00
NextJS collects telemetry by default. The `telemetry` subcommand can disable it:
```js
2023-12-05 03:46:54 +00:00
npx next@13.5.6 telemetry disable
2023-06-02 02:17:56 +00:00
```
The setting can be verified by running
```js
2023-12-05 03:46:54 +00:00
npx next@13.5.6 telemetry status
2023-08-21 23:07:34 +00:00
```
:::
2024-03-14 08:25:08 +00:00
:::info pass
This demo focuses on static sites where data files are processed at build time.
[The ReactJS demo](/docs/demos/frontend/react) shows NextJS "Client Components".
:::
2023-08-21 23:07:34 +00:00
:::caution Next 13+ and SWC
Next 13 switched to the SWC minifier. There are known issues with the minifier.
Until those issues are resolved, SWC should be disabled in `next.config.js`:
```js title="next.config.js"
module.exports = {
// highlight-next-line
swcMinify: false
};
2023-06-02 02:17:56 +00:00
```
:::
2023-12-05 03:46:54 +00:00
:::note Tested Deployments
2023-06-02 02:17:56 +00:00
2023-12-05 03:46:54 +00:00
This demo was tested in the following environments:
2023-06-02 02:17:56 +00:00
2023-08-21 23:07:34 +00:00
| NextJS | NodeJS | Date |
|:----------|:----------|:-----------|
2023-12-05 03:46:54 +00:00
| ` 9.5.5` | `16.20.2` | 2023-12-04 |
| `10.2.3` | `16.20.2` | 2023-12-04 |
| `11.1.4` | `16.20.2` | 2023-12-04 |
| `12.3.4` | `20.10.0` | 2023-12-04 |
| `13.5.6` | `20.10.0` | 2023-12-04 |
| `14.0.3` | `20.10.0` | 2023-12-04 |
2023-06-02 02:17:56 +00:00
:::
2023-05-26 22:50:23 +00:00
## Loading Data
2023-01-15 03:36:13 +00:00
At a high level, there are two ways to pull spreadsheet data into NextJS apps:
loading an asset module or performing the file read operations from the NextJS
2023-05-26 22:50:23 +00:00
lifecycle methods.
Asset modules are appropriate for static sites when the file names are known in
advance. Performing file read operations in lifecycle methods is more flexible
but does not support live reloading.
### Asset Module
2023-08-21 23:07:34 +00:00
:::caution pass
2023-05-26 22:50:23 +00:00
When the demo was last tested, Turbopack did not support true raw loaders. For
development use, the normal `npx next dev` should be used.
2023-01-15 03:36:13 +00:00
:::
2023-08-21 23:07:34 +00:00
The [SheetJS NodeJS module](/docs/getting-started/installation/nodejs) can be
imported in Webpack asset modules[^1].
2023-05-26 22:50:23 +00:00
The following diagram depicts the workbook waltz:
```mermaid
flowchart LR
file[(workbook\nfile)]
subgraph SheetJS operations
base64(base64\nstring)
aoo(array of\nobjects)
end
html{{HTML\nTABLE}}
file --> |base64-loader.js\ncustom plugin| base64
base64 --> |page\nlifecycle method| aoo
aoo --> |page\nIndex method| html
```
2023-01-15 03:36:13 +00:00
2023-05-26 22:50:23 +00:00
In this flow, it is strongly recommended to make a loader return a Base64 string:
2023-01-15 03:36:13 +00:00
2023-05-26 22:50:23 +00:00
```js title="base64-loader.js"
function loader(content) {
/* since `loader.raw` is true, `content` is a Buffer */
return `export default '${content.toString("base64")}'`;
}
/* ensure the function receives a Buffer */
loader.raw = true;
module.exports = loader;
```
The webpack configuration is controlled in `next.config.js`:
```js title="next.config.js"
module.exports = {
webpack: (config) => {
// highlight-start
/* add to the webpack config module.rules array */
config.module.rules.push({
/* `test` matches file extensions */
test: /\.(numbers|xls|xlsx|xlsb)/,
/* use the loader script */
use: [ { loader: './base64-loader' } ]
});
// highlight-end
return config;
}
};
```
Module alias directories can be defined in `jsconfig.json` or `tsconfig.json`:
```json title="jsconfig.json"
{
"compilerOptions": {
"baseUrl": ".",
"paths": {
// highlight-next-line
"@/*": ["*"]
}
}
}
```
Pages can import the files directly. It is strongly recommended to store files
2023-08-21 23:07:34 +00:00
in a `data` folder.
In this example, the import statement pulls the `sheetjs.xlsx` file as a Base64
string. The SheetJS `read` method[^2] parses the string and returns a workbook
object[^3]. The `sheet_to_json`[^4] utility function generates an array of
objects based on the data. As long as the `base64` variable is only used in
`getStaticProps`, the library and file will be processed at build time.
2023-05-26 22:50:23 +00:00
```jsx title="index.js"
import { read, utils } from 'xlsx';
2023-01-15 03:36:13 +00:00
// highlight-next-line
2023-05-26 22:50:23 +00:00
import base64 from '@/data/sheetjs.xlsx';
export async function getStaticProps() {
/* parse base64 data */
// highlight-next-line
const wb = read(base64, { type: "base64" });
return { props: {
/* generate array of objects from the first sheet */
data: utils.sheet_to_json(wb.Sheets[wb.SheetNames[0]])
} };
}
2023-01-15 03:36:13 +00:00
```
2023-05-26 22:50:23 +00:00
### Raw Operations
2023-01-15 03:36:13 +00:00
2023-08-21 23:07:34 +00:00
The [SheetJS NodeJS module](/docs/getting-started/installation/nodejs) can be
imported from page scripts.
:::danger pass
2023-08-21 23:07:34 +00:00
2023-12-05 03:46:54 +00:00
[The SheetJS ESM build](/docs/getting-started/installation/nodejs#esm-import)
does not load NodeJS native modules directly. The Installation section includes
a note on dynamic import of `fs` within lifecycle methods.
2023-08-21 23:07:34 +00:00
:::
Files can be read using the SheetJS `readFile`[^5] method in lifecycle methods.
The `cwd` method in the `process` module will point to the root of the project.
2023-05-26 22:50:23 +00:00
The following diagram depicts the workbook waltz:
```mermaid
flowchart LR
file[(workbook\nfile)]
subgraph SheetJS operations
buffer(NodeJS\nBuffer)
aoo(array of\nobjects)
end
html{{HTML\nTABLE}}
file --> |page\nlifecycle method| buffer
buffer --> |page\nlifecycle method| aoo
aoo --> |page\nIndex method| html
```
2023-08-21 23:07:34 +00:00
This example reads the file `sheetjs.xlsx` in the `data` folder in the project
and uses `sheet_to_json`[^6] to generate data rows.
2023-01-15 03:36:13 +00:00
```js
import { readFile, utils, set_fs } from 'xlsx';
import { join } from 'path';
import { cwd } from 'process';
export async function getServerSideProps() {
2023-05-26 22:50:23 +00:00
// highlight-start
2023-01-15 03:36:13 +00:00
set_fs(await import("fs")); // dynamically import 'fs' when needed
2023-05-26 22:50:23 +00:00
const filename = join(cwd(), "data", "sheetjs.xlsx"); // /data/sheetjs.xlsx
const wb = readFile(filename);
// highlight-end
/* generate and return the html from the first worksheet */
const data = utils.sheet_to_json(wb.Sheets[wb.SheetNames[0]]);
return { props: { data } };
2023-01-15 03:36:13 +00:00
}
```
:::danger Reading and writing files during the build process
2023-01-15 03:36:13 +00:00
2023-05-26 22:50:23 +00:00
As the NextJS workaround is non-traditional, it bears repeating:
2023-01-15 03:36:13 +00:00
2023-05-26 22:50:23 +00:00
`fs` cannot be statically imported from the top level in NextJS pages. The
dynamic import must happen within a lifecycle function.
2023-01-15 03:36:13 +00:00
:::
2023-05-26 22:50:23 +00:00
2023-01-15 03:36:13 +00:00
## NextJS Strategies
NextJS currently provides 3 strategies:
2023-08-21 23:07:34 +00:00
- "Static Site Generation" using `getStaticProps`[^7]
- "SSG with Dynamic Routes" using `getStaticPaths`[^8]
- "Server-Side Rendering" using `getServerSideProps`[^9]
2023-01-15 03:36:13 +00:00
### Static Site Generation
When using `getStaticProps`, the file will be read once during build time.
2023-05-26 22:50:23 +00:00
This example reads `sheetjs.xlsx` from the `data` folder:
<Tabs groupId="data">
<TabItem value="asset" label="Asset Module">
```js
import { read, utils } from 'xlsx';
import base64 from '@/data/sheetjs.xlsx';
export async function getStaticProps() {
const wb = read(base64, { type: "base64" });
/* generate and return the html from the first worksheet */
const html = utils.sheet_to_html(wb.Sheets[wb.SheetNames[0]]);
return { props: { html } };
};
```
</TabItem>
<TabItem value="raw" label="Raw Operations">
2023-01-15 03:36:13 +00:00
```js
import { readFile, set_fs, utils } from 'xlsx';
2023-05-26 22:50:23 +00:00
import { join } from 'path';
import { cwd } from 'process';
2023-01-15 03:36:13 +00:00
export async function getStaticProps() {
set_fs(await import("fs"));
2023-05-26 22:50:23 +00:00
const filename = join(cwd(), "data", "sheetjs.xlsx"); // /data/sheetjs.xlsx
const wb = readFile(filename);
2023-01-15 03:36:13 +00:00
/* generate and return the html from the first worksheet */
const html = utils.sheet_to_html(wb.Sheets[wb.SheetNames[0]]);
return { props: { html } };
};
```
2023-05-26 22:50:23 +00:00
</TabItem>
</Tabs>
2023-01-15 03:36:13 +00:00
### Dynamic Routes
Typically a static site with dynamic routes has an endpoint `/sheets/[id]` that
implements both `getStaticPaths` and `getStaticProps`.
- `getStaticPaths` should return an array of worksheet indices:
2023-05-26 22:50:23 +00:00
<Tabs groupId="data">
<TabItem value="asset" label="Asset Module">
2023-01-15 03:36:13 +00:00
```js
2023-05-26 22:50:23 +00:00
import { read } from 'xlsx';
import base64 from '@/data/sheetjs.xlsx';
export async function getStaticPaths() {
/* read file */
const wb = read(base64, { type: "base64" });
/* generate an array of objects that will be used for generating pages */
const paths = wb.SheetNames.map((name, idx) => ({ params: { id: idx.toString() } }));
return { paths, fallback: false };
};
```
</TabItem>
<TabItem value="raw" label="Raw Operations">
```js
import { readFile, set_fs } from 'xlsx';
import { join } from 'path';
import { cwd } from 'process';
2023-01-15 03:36:13 +00:00
export async function getStaticPaths() {
/* read file */
set_fs(await import("fs"));
2023-05-26 22:50:23 +00:00
const filename = join(cwd(), "data", "sheetjs.xlsx"); // /data/sheetjs.xlsx
2023-01-15 03:36:13 +00:00
const wb = readFile(path);
/* generate an array of objects that will be used for generating pages */
const paths = wb.SheetNames.map((name, idx) => ({ params: { id: idx.toString() } }));
return { paths, fallback: false };
};
```
2023-05-26 22:50:23 +00:00
</TabItem>
</Tabs>
2023-08-21 23:07:34 +00:00
:::note pass
2023-01-15 03:36:13 +00:00
2023-08-21 23:07:34 +00:00
For a pure static site, `fallback` must be set to `false`![^10]
2023-01-15 03:36:13 +00:00
:::
- `getStaticProps` will generate the actual HTML for each page:
2023-05-26 22:50:23 +00:00
<Tabs groupId="data">
<TabItem value="asset" label="Asset Module">
2023-01-15 03:36:13 +00:00
```js
2023-05-26 22:50:23 +00:00
import { read, utils } from 'xlsx';
import base64 from '@/data/sheetjs.xlsx';
export async function getStaticProps(ctx) {
/* read file */
const wb = read(base64, { type: "base64" });
/* get the corresponding worksheet and generate HTML */
const ws = wb.Sheets[wb.SheetNames[ctx.params.id]]; // id from getStaticPaths
const html = utils.sheet_to_html(ws);
return { props: { html } };
};
```
</TabItem>
<TabItem value="raw" label="Raw Operations">
```js
import { readFile, set_fs, utils } from 'xlsx';
import { join } from 'path';
import { cwd } from 'process';
2023-01-15 03:36:13 +00:00
export async function getStaticProps(ctx) {
/* read file */
set_fs(await import("fs"));
2023-05-26 22:50:23 +00:00
const filename = join(cwd(), "data", "sheetjs.xlsx"); // /data/sheetjs.xlsx
2023-01-15 03:36:13 +00:00
const wb = readFile(path);
/* get the corresponding worksheet and generate HTML */
const ws = wb.Sheets[wb.SheetNames[ctx.params.id]]; // id from getStaticPaths
const html = utils.sheet_to_html(ws);
return { props: { html } };
};
```
2023-05-26 22:50:23 +00:00
</TabItem>
</Tabs>
2023-01-15 03:36:13 +00:00
### Server-Side Rendering
:::caution Do not use on a static site
These routes require a NodeJS dynamic server. Static page generation will fail!
`getStaticProps` and `getStaticPaths` support static site generation (SSG).
`getServerSideProps` is suited for NodeJS hosted deployments where the workbook
changes frequently and a static site is undesirable.
:::
When using `getServerSideProps`, the file will be read on each request.
2023-05-26 22:50:23 +00:00
<Tabs groupId="data">
<TabItem value="asset" label="Asset Module">
:::caution Consider using a static strategy
When using asset modules, the file names and file paths are processed during the
build step. The content is fixed. In this situation, a static approach such as
`getStaticProps` is strongly recommended.
:::
```js
import { read } from 'xlsx';
import base64 from '@/data/sheetjs.xlsx';
export async function getServerSideProps() {
/* read file */
const wb = read(base64, { type: "base64" });
/* generate and return the html from the first worksheet */
const html = utils.sheet_to_html(wb.Sheets[wb.SheetNames[0]]);
return { props: { html } };
};
```
</TabItem>
<TabItem value="raw" label="Raw Operations">
2023-01-15 03:36:13 +00:00
```js
import { readFile, set_fs, utils } from 'xlsx';
2023-05-26 22:50:23 +00:00
import { join } from 'path';
import { cwd } from 'process';
2023-01-15 03:36:13 +00:00
export async function getServerSideProps() {
/* read file */
set_fs(await import("fs"));
2023-05-26 22:50:23 +00:00
const filename = join(cwd(), "data", "sheetjs.xlsx"); // /data/sheetjs.xlsx
const wb = readFile(path);
2023-01-15 03:36:13 +00:00
/* generate and return the html from the first worksheet */
const html = utils.sheet_to_html(wb.Sheets[wb.SheetNames[0]]);
return { props: { html } };
};
2023-05-26 22:50:23 +00:00
```
</TabItem>
</Tabs>
## Data Presentation
2023-08-21 23:07:34 +00:00
[The ReactJS demo](/docs/demos/frontend/react) compares common approaches.
2023-05-26 22:50:23 +00:00
### HTML
2023-08-21 23:07:34 +00:00
HTML output can be generated using the SheetJS `sheet_to_html`[^11] method and
inserted into the document using the `dangerouslySetInnerHTML`[^12] attribute:
2023-05-26 22:50:23 +00:00
```mermaid
flowchart LR
subgraph SheetJS operations
data(File\nData)
code{{HTML\nTABLE}}
end
html{{Rendered\nPage}}
data --> |lifecycle\nsheet_to_html| code
code --> |Index\ninnerHTML| html
```
```jsx
export default function Index({html, type}) { return (
<div dangerouslySetInnerHTML={{ __html: html }} />
); }
```
### Arrays of Objects
2023-08-21 23:07:34 +00:00
Arrays of objects can be generated using the SheetJS `sheet_to_json`[^13] method
and inserted into the document using standard JSX[^14]:
2023-05-26 22:50:23 +00:00
```mermaid
flowchart LR
subgraph SheetJS operations
data(File\nData)
aoo(array of\nobjects)
end
html{{Rendered\nPage}}
data --> |lifecycle\nsheet_to_json| aoo
aoo --> |Index\nReact + JSX| html
```
```jsx
export default function Index({aoo, type}) { return (
<table><thead><tr key={0}><th>Name</th><th>Index</th></tr></thead><tbody>
// highlight-start
{aoo.map(row => ( <tr>
<td>{row.Name}</td>
<td>{row.Index}</td>
</tr>))}
// highlight-end
</tbody></table>
); }
2023-01-15 03:36:13 +00:00
```
## Demo
2023-08-21 23:07:34 +00:00
:::note pass
2023-05-26 22:50:23 +00:00
This demo showcases the following SheetJS + NextJS flows:
| Page | Loading Data | Lifecycle Method | SheetJS API |
|:----------------------|:-------------|:---------------------|:----------------|
| `/getStaticProps` | asset module | `getStaticProps` | `sheet_to_json` |
| `/sheets/[id]` | asset module | `getStaticPaths` | `sheet_to_html` |
| `/getServerSideProps` | lifecycle | `getServerSideProps` | `sheet_to_html` |
2023-12-05 03:46:54 +00:00
The commands in this demo use `next@13.5.6`. Other versions were tested by
2023-07-23 21:01:30 +00:00
replacing the version number in the relevant commands.
2023-05-26 22:50:23 +00:00
:::
2023-08-21 23:07:34 +00:00
:::caution pass
Older versions of NextJS will refuse to run in newer versions of NodeJS. The
error message points to an issue with OpenSSL:
```
Error: error:0308010C:digital envelope routines::unsupported
```
When upgrading NextJS is not an option, NodeJS should be downgraded to v16.
:::
2023-05-26 22:50:23 +00:00
### Initial Setup
2023-01-15 03:36:13 +00:00
0) Disable NextJS telemetry:
```js
2023-12-05 03:46:54 +00:00
npx next@13.5.6 telemetry disable
2023-01-15 03:36:13 +00:00
```
Confirm it is disabled by running
```js
2023-12-05 03:46:54 +00:00
npx next@13.5.6 telemetry status
2023-01-15 03:36:13 +00:00
```
1) Set up folder structure. At the end, a `pages` folder with a `sheets`
subfolder must be created. On Linux or MacOS or WSL:
```bash
2023-05-26 22:50:23 +00:00
mkdir sheetjs-next
cd sheetjs-next
2023-01-15 03:36:13 +00:00
mkdir -p pages/sheets/
```
2) Download the [test file](pathname:///next/sheetjs.xlsx) and place in the
project root. On Linux or MacOS or WSL:
```bash
curl -LO https://docs.sheetjs.com/next/sheetjs.xlsx
```
3) Install dependencies:
2023-12-05 03:46:54 +00:00
:::note pass
The `next@13.5.6` dependency can be adjusted to pick a different version. For
example, NextJS `12.3.4` is installed with
<CodeBlock language="bash">{`\
npm i --save https://cdn.sheetjs.com/xlsx-${current}/xlsx-${current}.tgz next@12.3.4`}
</CodeBlock>
:::
2023-04-29 11:21:37 +00:00
<CodeBlock language="bash">{`\
2023-12-05 03:46:54 +00:00
npm i --save https://cdn.sheetjs.com/xlsx-${current}/xlsx-${current}.tgz next@13.5.6`}
2023-04-29 11:21:37 +00:00
</CodeBlock>
2023-01-15 03:36:13 +00:00
2023-05-26 22:50:23 +00:00
4) Download NextJS config scripts and place in the root folder:
- [`base64-loader.js`](pathname:///next/base64-loader.js)
- [`jsconfig.json`](pathname:///next/jsconfig.json)
- [`next.config.js`](pathname:///next/next.config.js)
- [`styles.css`](pathname:///next/styles.css)
On Linux or MacOS or WSL:
```bash
curl -LO https://docs.sheetjs.com/next/base64-loader.js
curl -LO https://docs.sheetjs.com/next/jsconfig.json
curl -LO https://docs.sheetjs.com/next/next.config.js
curl -LO https://docs.sheetjs.com/next/styles.css
```
5) Download test scripts:
2023-01-15 03:36:13 +00:00
Download and place the following scripts in the `pages` subfolder:
2023-05-26 22:50:23 +00:00
- [`_app.js`](pathname:///next/_app.js)
2023-01-15 03:36:13 +00:00
- [`index.js`](pathname:///next/index.js)
- [`getServerSideProps.js`](pathname:///next/getServerSideProps.js)
- [`getStaticPaths.js`](pathname:///next/getStaticPaths.js)
- [`getStaticProps.js`](pathname:///next/getStaticProps.js)
Download [`[id].js`](pathname:///next/%5Bid%5D.js) and place in the
`pages/sheets` subfolder.
:::caution Percent-Encoding in the script name
The `[id].js` script must have the literal square brackets in the name. If your
browser saved the file to `%5Bid%5D.js`. rename the file.
:::
On Linux or MacOS or WSL:
```bash
cd pages
2023-05-26 22:50:23 +00:00
curl -LO https://docs.sheetjs.com/next/_app.js
2023-01-15 03:36:13 +00:00
curl -LO https://docs.sheetjs.com/next/index.js
curl -LO https://docs.sheetjs.com/next/getServerSideProps.js
curl -LO https://docs.sheetjs.com/next/getStaticPaths.js
curl -LO https://docs.sheetjs.com/next/getStaticProps.js
cd sheets
curl -LOg 'https://docs.sheetjs.com/next/[id].js'
cd ../..
```
2023-05-26 22:50:23 +00:00
### Testing
6) Test the deployment:
2023-01-15 03:36:13 +00:00
```bash
2023-12-05 03:46:54 +00:00
npx next
2023-01-15 03:36:13 +00:00
```
Open a web browser and access:
2023-05-03 03:40:40 +00:00
- `http://localhost:3000` landing page
- `http://localhost:3000/getStaticProps` shows data from the first sheet
- `http://localhost:3000/getServerSideProps` shows data from the first sheet
2023-05-26 22:50:23 +00:00
- `http://localhost:3000/getStaticPaths` shows a list (2 sheets)
2023-01-15 03:36:13 +00:00
The individual worksheets are available at
2023-05-03 03:40:40 +00:00
- `http://localhost:3000/sheets/0`
- `http://localhost:3000/sheets/1`
2023-01-15 03:36:13 +00:00
2023-05-26 22:50:23 +00:00
7) While the development server is running, open the `/getStaticProps` page and
open `sheetjs.xlsx` with a spreadsheet editor. In the editor, add a row to the
2023-12-05 03:46:54 +00:00
bottom of the "Indices" worksheet (set `A7` to "SheetJS Dev" and `B7` to `47`)
2023-05-26 22:50:23 +00:00
After saving the file, the website should refresh with the new row.
### Production Build
8) Stop the server and run a production build:
2023-01-15 03:36:13 +00:00
```bash
2023-12-05 03:46:54 +00:00
npx next build
2023-01-15 03:36:13 +00:00
```
The final output will show a list of the routes and types:
```
Route (pages) Size First Load JS
2023-07-23 21:01:30 +00:00
┌ ○ / 563 B 75.3 kB
├ /_app 0 B 74.8 kB
├ ○ /404 182 B 75 kB
├ λ /getServerSideProps 522 B 75.3 kB
├ ● /getStaticPaths 2.91 kB 77.7 kB
├ ● /getStaticProps 586 B 75.4 kB
└ ● /sheets/[id] (303 ms) 522 B 75.3 kB
2023-01-15 03:36:13 +00:00
├ /sheets/0
2023-05-26 22:50:23 +00:00
└ /sheets/1
2023-01-15 03:36:13 +00:00
```
As explained in the summary, the `/getStaticPaths` and `/getStaticProps` routes
2023-05-26 22:50:23 +00:00
are completely static. 2 `/sheets/#` pages were generated, corresponding to 2
2023-01-15 03:36:13 +00:00
worksheets in the file. `/getServerSideProps` is server-rendered.
2023-05-26 22:50:23 +00:00
9) Try to build a static site:
2023-01-15 03:36:13 +00:00
2023-12-05 03:46:54 +00:00
<Tabs groupId="nextver">
<TabItem value="13" label="NextJS 9 - 13">
2023-01-15 03:36:13 +00:00
```bash
2023-12-05 03:46:54 +00:00
npx next export
2023-01-15 03:36:13 +00:00
```
2023-12-05 03:46:54 +00:00
</TabItem>
<TabItem value="14" label="NextJS 14">
:::danger NextJS breaking changes
2023-01-15 03:36:13 +00:00
2023-12-05 03:46:54 +00:00
**NextJS 14 removed the `export` subcommand!**
2023-01-15 03:36:13 +00:00
:::
2023-12-05 03:46:54 +00:00
Edit `next.config.js` and add the highlighted line:
```js title="next.config.js (add highlighted line)"
module.exports = {
// highlight-next-line
output: "export",
webpack: (config) => {
```
After adding the line, run the `build` command:
```bash
npx next build
```
</TabItem>
</Tabs>
This build will fail. A static page cannot be generated at this point because
`/getServerSideProps` is server-rendered.
2023-05-26 22:50:23 +00:00
### Static Site
10) Delete `pages/getServerSideProps.js` and rebuild:
2023-01-15 03:36:13 +00:00
2023-12-05 03:46:54 +00:00
<Tabs groupId="nextver">
<TabItem value="13" label="NextJS 9 - 13">
</TabItem>
<TabItem value="14" label="NextJS 14">
Edit `next.config.js` and comment the highlighted line:
```js title="next.config.js (comment highlighted line)"
module.exports = {
// highlight-next-line
// output: "export",
webpack: (config) => {
```
After editing `next.config.js`:
</TabItem>
</Tabs>
2023-01-15 03:36:13 +00:00
```bash
rm -f pages/getServerSideProps.js
2023-12-05 03:46:54 +00:00
npx next build
2023-01-15 03:36:13 +00:00
```
Inspecting the output, there should be no lines with the `λ` symbol:
```
Route (pages) Size First Load JS
2023-07-23 21:01:30 +00:00
┌ ○ / 563 B 75.3 kB
├ /_app 0 B 74.8 kB
├ ○ /404 182 B 75 kB
├ ● /getStaticPaths 2.91 kB 77.7 kB
├ ● /getStaticProps 586 B 75.4 kB
└ ● /sheets/[id] 522 B 75.3 kB
2023-01-15 03:36:13 +00:00
├ /sheets/0
2023-05-26 22:50:23 +00:00
└ /sheets/1
2023-01-15 03:36:13 +00:00
```
2023-05-26 22:50:23 +00:00
11) Generate the static site:
2023-01-15 03:36:13 +00:00
2023-12-05 03:46:54 +00:00
<Tabs groupId="nextver">
<TabItem value="13" label="NextJS 9 - 13">
2023-01-15 03:36:13 +00:00
```bash
2023-12-05 03:46:54 +00:00
npx next export
2023-01-15 03:36:13 +00:00
```
2023-12-05 03:46:54 +00:00
</TabItem>
<TabItem value="14" label="NextJS 14">
Edit `next.config.js` and restore the highlighted line:
```js title="next.config.js (restore highlighted line)"
module.exports = {
// highlight-next-line
output: "export",
webpack: (config) => {
```
After adding the line, run the `build` command:
```bash
npx next build
```
</TabItem>
</Tabs>
2023-05-26 22:50:23 +00:00
The static site will be written to the `out` subfolder
12) Serve the static site:
2023-01-15 03:36:13 +00:00
```bash
npx http-server out
```
2023-07-23 21:01:30 +00:00
The command will start a local HTTP server at `http://localhost:8080/` for
testing the generated site. Note that `/getServerSideProps` will 404 since the
page was removed.
2023-08-21 23:07:34 +00:00
[^1]: See the ["Webpack" asset module demo](/docs/demos/static/webpack) for more details.
[^2]: See [`read` in "Reading Files"](/docs/api/parse-options)
[^3]: See ["SheetJS Data Model"](/docs/csf/) for more details.
[^4]: See [`sheet_to_json` in "Utilities"](/docs/api/utilities/array#array-output)
[^5]: See [`readFile` in "Reading Files"](/docs/api/parse-options)
[^6]: See [`sheet_to_json` in "Utilities"](/docs/api/utilities/array#array-output)
[^7]: See [`getStaticProps`](https://nextjs.org/docs/pages/building-your-application/data-fetching/get-static-props) in the NextJS documentation.
[^8]: See [`getStaticPaths`](https://nextjs.org/docs/pages/building-your-application/data-fetching/get-static-paths) in the NextJS documentation.
[^9]: See [`getServerSideProps`](https://nextjs.org/docs/pages/building-your-application/data-fetching/get-server-side-props) in the NextJS documentation.
[^10]: See [`fallback` in getStaticPaths](https://nextjs.org/docs/pages/api-reference/functions/get-static-paths#fallback-false) in the NextJS documentation.
[^11]: See [`sheet_to_html` in "Utilities"](/docs/api/utilities/html#html-table-output)
[^12]: [`dangerouslySetInnerHTML`](https://react.dev/reference/react-dom/components/common#common-props) is a ReactJS prop supported for all built-in components.
[^13]: See [`sheet_to_json` in "Utilities"](/docs/api/utilities/array#array-output)
[^14]: See ["Array of Objects" in the ReactJS demo](/docs/demos/frontend/react#rendering-data)