sheetjs/demos/vue
SheetJS e43071fc64 more lotus 1-2-3 formula functions 2022-05-10 04:02:52 -04:00
..
content DBF preserve field properties 2022-03-10 00:31:13 -05:00
modify version bump 0.18.6 2022-04-14 03:27:38 -04:00
pages DBF preserve field properties 2022-03-10 00:31:13 -05:00
static version bump 0.11.19: browser `writeFile` 2018-02-03 15:46:32 -05:00
.gitignore updated demos [ci skip] 2017-09-12 16:02:06 -04:00
Makefile version bump 0.18.6 2022-04-14 03:27:38 -04:00
README.md DBF preserve field properties 2022-03-10 00:31:13 -05:00
SheetJS-vue.js more lotus 1-2-3 formula functions 2022-05-10 04:02:52 -04:00
index2.html Demos [ci skip] 2022-03-07 00:46:23 -08:00
index3.html VueJS 3 demo [ci skip] 2021-09-21 15:03:05 -04:00
native.vue DBF preserve field properties 2022-03-10 00:31:13 -05:00
nuxt.config.js DBF preserve field properties 2022-03-10 00:31:13 -05:00
package.json more lotus 1-2-3 formula functions 2022-05-10 04:02:52 -04:00
screen.png demo refresh [ci skip] 2017-09-24 19:40:09 -04:00
shim.js version bump 0.11.19: browser `writeFile` 2018-02-03 15:46:32 -05:00
weex.sh demo refresh [ci skip] 2017-09-24 19:40:09 -04:00
xlsx.full.min.js vue demo and typing fixes [ci skip] 2017-06-19 03:14:18 -04:00

VueJS

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

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

The library can also be imported directly from single-file components with:

// full import
import * as XLSX from 'xlsx';

// named imports
import { read, utils, writeFileXLSX } from 'xlsx';

This demo directly generates HTML using sheet_to_html and adds an element to a pre-generated template. It also has a button for exporting as XLSX.

Other scripts in this demo show:

  • server-rendered VueJS component (with nuxt.js)
  • weex deployment for iOS

Internal State

The plain JS demo embeds state in the DOM. Other demos use proper 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 ]
  ]
}

sheet_to_json and aoa_to_sheet utility functions can convert between arrays of arrays and worksheets:

/* convert from workbook to array of arrays */
var first_worksheet = workbook.Sheets[workbook.SheetNames[0]];
var data = XLSX.utils.sheet_to_json(first_worksheet, {header:1});

/* convert from array of arrays to workbook */
var worksheet = XLSX.utils.aoa_to_sheet(data);
var new_workbook = XLSX.utils.book_new();
XLSX.utils.book_append_sheet(new_workbook, worksheet, "SheetJS");

The column objects can be generated with the encode_col utility function:

function make_cols(refstr/*:string*/) {
  var o = [];
  var range = XLSX.utils.decode_range(refstr);
  for(var i = 0; i <= range.e.c; ++i) {
    o.push({name: XLSX.utils.encode_col(i), key:i});
  }
  return o;
}

WeeX

Reproducing the full project is a little bit tricky. The included weex.sh script performs the necessary installation steps.

WeeX is a framework for building real mobile apps, akin to React Native. The ecosystem is not quite as mature as React Native, missing basic features like document access. As a result, this demo uses the stream.fetch API to upload Base64-encoded documents to https://hastebin.com and download a precomputed Base64-encoded workbook.

Using NodeJS it is straightforward to convert to/from Base64:

/* convert sheetjs.xlsx -> sheetjs.xlsx.b64 */
var buf = fs.readFileSync("sheetjs.xlsx");
fs.writeFileSync("sheetjs.xlsx.b64", buf.toString("base64"));

/* convert sheetjs.xls.b64 -> sheetjs.xls */
var str = fs.readFileSync("sheetjs.xls.b64").toString();
fs.writeFileSync("sheetjs.xls", new Buffer(str, "base64"));

Other Demos

Nuxt Content

@nuxt/content parser can be extended to support spreadsheet hot reload:

// nuxt.config.js
import { readFile, utils } from 'xlsx';

const parseXLSX = (file, { path }) => {
  const wb = readFile(path);
  const o = wb.SheetNames.map(name => ({ name, data: utils.sheet_to_json(wb.Sheets[name])}));
  return { data: o };
}

export default {
  content: {
    extendParser: {
      ".numbers": parseXLSX,
      ".xlsx": parseXLSX,
      ".xls": parseXLSX
      // ... other extensions
    }
  }
}

Analytics