--- title: Svelte pagination_prev: demos/index pagination_next: demos/grid/index sidebar_position: 4 --- import current from '/version.js'; import CodeBlock from '@theme/CodeBlock'; Svelte is a JS library for building user interfaces. This demo tries to cover common Svelte data flow ideas and strategies. Svelte familiarity is assumed. Other demos cover general Svelte deployments, including: - [Static Site Generation powered by SvelteKit](/docs/demos/static/svelte) - [iOS applications powered by CapacitorJS](/docs/demos/mobile/capacitor) - [Desktop application powered by Wails](/docs/demos/desktop/wails) ## Installation [The "Frameworks" section](/docs/getting-started/installation/frameworks) covers installation with Yarn and other package managers. The library can be imported directly from Svelte files with: ```js import { read, utils, writeFile } from 'xlsx'; ``` ## Internal State The various SheetJS APIs work with various data shapes. The preferred state depends on the application. ### Array of Objects Typically, some users will create a spreadsheet with source data that should be loaded into the site. This sheet will have known columns. For example, our [presidents sheet](https://sheetjs.com/pres.xlsx) has "Name" / "Index" columns: ![`pres.xlsx` data](pathname:///pres.png) This naturally maps to an array of typed objects, as in the TS example below: ```ts import { read, utils } from 'xlsx'; interface President { Name: string; Index: number; } const f = await (await fetch("https://sheetjs.com/pres.xlsx")).arrayBuffer(); const wb = read(f); const data = utils.sheet_to_json(wb.Sheets[wb.SheetNames[0]]); console.log(data); ``` `data` will be an array of objects: ```js [ { Name: "Bill Clinton", Index: 42 }, { Name: "GeorgeW Bush", Index: 43 }, { Name: "Barack Obama", Index: 44 }, { Name: "Donald Trump", Index: 45 }, { Name: "Joseph Biden", Index: 46 } ] ``` A component will typically map over the data. The following example generates a TABLE with a row for each President: ```html title="src/SheetJSSvelteAoO.svelte"
{#each pres as p}{/each}
NameIndex
{p.Name} {p.Index}
```
How to run the example (click to show) :::note This demo was last run on 2023 March 08 using `svelte@3.55.1`. When running `npm create`, the package `create-vite@4.1.0` was installed. ::: 1) Run `npm create vite@latest sheetjs-svelte -- --template svelte-ts`. 2) Install the SheetJS dependency and start the dev server: {`\ cd sheetjs-svelte npm i npm i --save https://cdn.sheetjs.com/xlsx-${current}/xlsx-${current}.tgz npm run dev`} 3) Open a web browser and access the displayed URL (`http://localhost:5173`) 4) Replace `src/App.svelte` with the `src/SheetJSSvelteAoO.svelte` example. The page will refresh and show a table with an Export button. Click the button and the page will attempt to download `SheetJSSvelteAoA.xlsx`. There may be a delay since Vite will try to optimize the SheetJS library on the fly. 5) Build the site with `npm run build`, then test with `npx http-server dist`. Access `http://localhost:8080` with a web browser to test the bundled site.
### HTML The main disadvantage of the Array of Objects approach is the specific nature of the columns. For more general use, passing around an Array of Arrays works. However, this does not handle merge cells well! The `sheet_to_html` function generates HTML that is aware of merges and other worksheet features. Svelte `@html` tag allows raw HTML strings: ```html title="src/SheetJSSvelteHTML.svelte"
{@html html}
```
How to run the example (click to show) :::note This demo was last run on 2023 March 08 using `svelte@3.55.1`. When running `npm create`, the package `create-vite@4.1.0` was installed. ::: 1) Run `npm create vite@latest sheetjs-svelte -- --template svelte-ts`. 2) Install the SheetJS dependency and start the dev server: {`\ cd sheetjs-svelte npm i npm i --save https://cdn.sheetjs.com/xlsx-${current}/xlsx-${current}.tgz npm run dev`} 3) Open a web browser and access the displayed URL (`http://localhost:5173`) 4) Replace `src/App.svelte` with the `src/SheetJSSvelteHTML.svelte` example. The page will refresh and show a table with an Export button. Click the button and the page will attempt to download `SheetJSSvelteHTML.xlsx`. There may be a delay since Vite will try to optimize the SheetJS library on the fly. 5) Build the site with `npm run build`, then test with `npx http-server dist`. Access `http://localhost:8080` with a web browser to test the bundled site.