sheetjs/demos/react
SheetJS f03e32fc9a updated demos [ci skip]
- frameworks: react, react-native, preact, next.js, weex, nuxt.js
- deployments: nodejs server, duktape, chakra, electron, nw.js
2017-09-12 16:02:06 -04:00
..
pages updated demos [ci skip] 2017-09-12 16:02:06 -04:00
.gitignore updated demos [ci skip] 2017-09-12 16:02:06 -04:00
Makefile updated demos [ci skip] 2017-09-12 16:02:06 -04:00
README.md updated demos [ci skip] 2017-09-12 16:02:06 -04:00
index.html updated demos [ci skip] 2017-09-12 16:02:06 -04:00
native.sh updated demos [ci skip] 2017-09-12 16:02:06 -04:00
preact.html updated demos [ci skip] 2017-09-12 16:02:06 -04:00
react-native.js updated demos [ci skip] 2017-09-12 16:02:06 -04:00
screen.png updated demos [ci skip] 2017-09-12 16:02:06 -04:00
sheetjs.jsx updated demos [ci skip] 2017-09-12 16:02:06 -04:00

React

The xlsx.core.min.js and xlsx.full.min.js scripts are designed to be dropped into web pages with script tags e.g.

<script src="xlsx.full.min.js"></script>

The library can also be imported directly from JSX code with:

import * as XLSX from 'xlsx';

This demo shows a simple JSX component transpiled in the browser using the babel standalone library. Since there is no standard React table model, this demo settles on the array of arrays approach.

Other scripts in this demo show:

  • server-rendered React component (with next.js)
  • preact using the react compatibility library
  • react-native deployment for iOS and android

Internal State

The simplest state representation is an array of arrays. To avoid having the table component depend on the library, the column labels are precomputed. The state in this demo is shaped like the following object:

{
  cols: [
    { name: "A", key: 0 },
    { name: "B", key: 1 },
    { name: "C", key: 2 },
  ],
  data: [
    [ "id",    "name", "value" ],
    [    1, "sheetjs",    7262 ]
    [    2, "js-xlsx",    6969 ]
  ]
}

The appropriate state model is application-specific.

React Native

Reproducing the full project is straightforward:

react-native init SheetJS
cd SheetJS
npm i -S xlsx react react-native react-native-table-component react-native-fs
cp ../react-native.js index.ios.js
cp ../react-native.js index.android.js
react-native link

This uses react-native-fs to read and write files on devices. The app will prompt before reading and after writing data. The printed location will be:

  • android: path in the device filesystem
  • iOS simulator: local path to file
  • iOS device: a path accessible from iTunes App Documents view