diff --git a/docz/docs/03-demos/03-net/02-server.md b/docz/docs/03-demos/03-net/02-server.md index 38797bdf..68b7b31f 100644 --- a/docz/docs/03-demos/03-net/02-server.md +++ b/docz/docs/03-demos/03-net/02-server.md @@ -587,7 +587,9 @@ That approach is not explored in this demo. :::note -This demo was verified on 2022 December 14 +This demo was last tested on 2023 March 14. + +Versions: NodeJS 18.15.0 + ExpressJS 4.18.2 + Formidable 2.1.1 ::: diff --git a/docz/docs/03-demos/04-static/01-lume.md b/docz/docs/03-demos/04-static/01-lume.md index 11d7fba5..de965876 100644 --- a/docz/docs/03-demos/04-static/01-lume.md +++ b/docz/docs/03-demos/04-static/01-lume.md @@ -14,11 +14,96 @@ load data from spreadsheets. New users should consult the official docs. Lume supports refreshing data during development. The generated static sites include the raw data without referencing the underlying spreadsheet files. -## Lume Demo +## Integration Details + +### Installation + +The `sheets` plugin can be imported and invoked in `_config.ts`: + +```ts title="_config.ts" +import lume from "lume/mod.ts"; +// highlight-next-line +import sheets from "lume/plugins/sheets.ts"; + +const site = lume(); + +// highlight-next-line +site.use(sheets()); + +export default site; +``` + +### Usage :::note -This was tested against `lume v1.14.2` on 2023 January 20. +The official documentation includes notes for more advanced use cases. + +::: + +Spreadsheet files added in the `_data` subdirectory are accessible from template +files using the name stem. + +For example, [`pres.numbers`](https://sheetjs.com/pres.numbers) can be accessed +using the variable `pres` in a template. + +#### Single-Sheet Workbooks + +When a workbook has one worksheet, the data is an array of row objects: + +```liquid title="single.njk" + + + {% for row in pres %} + + + + + {% endfor %} + +
NameIndex
{{ row.Name }}{{ row.Index }}
+``` + +#### Multi-Sheet Workbooks + +_Reading the First Worksheet_ + +The `sheets` plugin accepts an options argument. If the `sheets` property is +set to `"first"`, then the plugin will expose row objects for the first sheet: + +```ts title="_config.ts" +// the first sheet of each file will be parsed and converted to row objects +site.use(sheets({ sheets: "first" })); +``` + +_Reading all Worksheets_ + +The default behavior, when workbooks have multiple sheets, is to present objects +whose keys are worksheet names and whose values are arrays of row objects. + +For example, if `pres.numbers` had a sheet named `"Presidents"` and another +sheet named `"VicePresidents"`, then the following snippet would print data +from the `"Presidents"` sheet: + +```liquid title="multi.njk" + + + {% for row in pres["Presidents"] %} + + + + + {% endfor %} + +
NameIndex
{{ row.Name }}{{ row.Index }}
+``` + + +## Complete Example + +:::note + +This was tested against `lume v1.15.3` on 2023 March 14. This example uses the Nunjucks template format. Lume plugins support additional template formats, including Markdown and JSX. @@ -35,8 +120,9 @@ deno run -Ar https://deno.land/x/lume/init.ts When prompted, enter the following options: -- `Use TypeScript for the configuration file`: press Enter (use default `N`) -- `Do you want to use plugins`: type `sheets` and press Enter +- `Choose the configuration file format`: select `_config.ts` +- `Do you want to install some plugins now?`: select `Yes` +- `Select the plugins to install`: scroll down, select `sheets`, and submit The project will be configured and modules will be installed. @@ -54,12 +140,12 @@ curl -L -o _data/pres.numbers https://sheetjs.com/pres.numbers

Presidents

- {% for row in pres %}{% if (loop.index >= 1) %} + {% for row in pres %} - {% endif %}{% endfor %} + {% endfor %}
NameIndex
{{ row.Name }} {{ row.Index }}
``` diff --git a/docz/docs/03-demos/12-engines/08_quickjs.md b/docz/docs/03-demos/12-engines/08_quickjs.md index 327236d8..80faf867 100644 --- a/docz/docs/03-demos/12-engines/08_quickjs.md +++ b/docz/docs/03-demos/12-engines/08_quickjs.md @@ -8,6 +8,9 @@ QuickJS is an embeddable JS engine written in C. It provides a separate set of functions for interacting with the filesystem and the global object. It can run the standalone browser scripts. +The [Standalone scripts](/docs/getting-started/installation/standalone) can be +parsed and evaluated in a QuickJS context. + ## Integration Details _Initialize QuickJS_ diff --git a/docz/package.json b/docz/package.json index 627b1824..2dd048f5 100644 --- a/docz/package.json +++ b/docz/package.json @@ -15,12 +15,12 @@ }, "dependencies": { "@cmfcmf/docusaurus-search-local": "0.11.0", - "@docusaurus/core": "2.2.0", - "@docusaurus/plugin-client-redirects": "2.2.0", - "@docusaurus/preset-classic": "2.2.0", - "@docusaurus/theme-common": "2.2.0", - "@docusaurus/theme-live-codeblock": "2.2.0", - "@docusaurus/theme-mermaid": "2.2.0", + "@docusaurus/core": "2.3.1", + "@docusaurus/plugin-client-redirects": "2.3.1", + "@docusaurus/preset-classic": "2.3.1", + "@docusaurus/theme-common": "2.3.1", + "@docusaurus/theme-live-codeblock": "2.3.1", + "@docusaurus/theme-mermaid": "2.3.1", "@mdx-js/react": "1.6.22", "clsx": "1.2.1", "prism-react-renderer": "1.3.5", @@ -29,7 +29,7 @@ "xlsx": "https://cdn.sheetjs.com/xlsx-latest/xlsx-latest.tgz" }, "devDependencies": { - "@docusaurus/module-type-aliases": "2.2.0" + "@docusaurus/module-type-aliases": "2.3.1" }, "browserslist": { "production": [