2020-03-23 02:03:55 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<!-- xlsx.js (C) 2013-present SheetJS http://sheetjs.com -->
|
|
|
|
<!-- vim: set ts=2: -->
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
|
|
|
<title>SheetJS + x-spreadsheet Live Demo</title>
|
|
|
|
<style>
|
|
|
|
#drop{
|
|
|
|
border:2px dashed #bbb;
|
|
|
|
-moz-border-radius:5px;
|
|
|
|
-webkit-border-radius:5px;
|
|
|
|
border-radius:5px;
|
|
|
|
padding:25px;
|
|
|
|
text-align:center;
|
|
|
|
font:20pt bold,"Vollkorn";color:#bbb
|
|
|
|
}
|
|
|
|
#b64data{
|
|
|
|
width:100%;
|
|
|
|
}
|
|
|
|
a { text-decoration: none }
|
|
|
|
</style>
|
|
|
|
<!-- x-spreadsheet stylesheet -->
|
|
|
|
<link rel="stylesheet" href="https://unpkg.com/x-data-spreadsheet/dist/xspreadsheet.css"/>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<pre>
|
|
|
|
<b><a href="http://sheetjs.com">SheetJS Data Preview Live Demo</a></b>
|
|
|
|
|
|
|
|
<a href="https://github.com/myliang/x-spreadsheet">x-spreadsheet component library</a>
|
|
|
|
|
|
|
|
<a href="https://github.com/SheetJS/sheetjs">Source Code Repo</a>
|
|
|
|
<a href="https://github.com/SheetJS/sheetjs/issues">Issues? Something look weird? Click here and report an issue</a>
|
|
|
|
|
|
|
|
<div id="drop">Drop a spreadsheet file here to see sheet data</div>
|
|
|
|
<input type="file" name="xlfile" id="xlf" /> ... or click here to select a file
|
|
|
|
<textarea id="b64data">... or paste a base64-encoding here</textarea>
|
|
|
|
</pre>
|
2022-04-15 23:17:23 +00:00
|
|
|
<p><input type="submit" value="Export to XLSX!" id="xport" onclick="export_xlsx();"></p>
|
2020-03-23 02:03:55 +00:00
|
|
|
<div id="htmlout"></div>
|
|
|
|
<br />
|
|
|
|
<script src="https://unpkg.com/x-data-spreadsheet/dist/xspreadsheet.js"></script>
|
|
|
|
<script src="shim.js"></script>
|
|
|
|
<script src="xlsx.full.min.js"></script>
|
2022-04-15 23:17:23 +00:00
|
|
|
<script src="xlsxspread.js"></script>
|
2020-03-23 02:03:55 +00:00
|
|
|
<script>
|
|
|
|
/*jshint browser:true */
|
|
|
|
/* eslint-env browser */
|
|
|
|
/* eslint no-use-before-define:0 */
|
|
|
|
/*global Uint8Array, Uint16Array, ArrayBuffer */
|
|
|
|
/*global XLSX */
|
|
|
|
|
|
|
|
var HTMLOUT = document.getElementById('htmlout');
|
2021-09-12 02:23:41 +00:00
|
|
|
var xspr = x_spreadsheet(HTMLOUT);
|
2020-03-23 02:03:55 +00:00
|
|
|
HTMLOUT.style.height = (window.innerHeight - 400) + "px";
|
|
|
|
HTMLOUT.style.width = (window.innerWidth - 50) + "px";
|
|
|
|
|
|
|
|
var process_wb = (function() {
|
|
|
|
var XPORT = document.getElementById('xport');
|
|
|
|
|
|
|
|
return function process_wb(wb) {
|
|
|
|
/* convert to x-spreadsheet form */
|
|
|
|
var data = stox(wb);
|
|
|
|
|
|
|
|
/* update x-spreadsheet */
|
|
|
|
xspr.loadData(data);
|
|
|
|
XPORT.disabled = false;
|
|
|
|
|
|
|
|
if(typeof console !== 'undefined') console.log("output", new Date());
|
|
|
|
};
|
|
|
|
})();
|
|
|
|
|
|
|
|
var do_file = (function() {
|
|
|
|
return function do_file(files) {
|
|
|
|
var f = files[0];
|
|
|
|
var reader = new FileReader();
|
|
|
|
reader.onload = function(e) {
|
2022-04-15 23:17:23 +00:00
|
|
|
if(typeof console !== 'undefined') console.log("onload", new Date());
|
2020-03-23 02:03:55 +00:00
|
|
|
var data = e.target.result;
|
2022-04-15 23:17:23 +00:00
|
|
|
data = new Uint8Array(data);
|
|
|
|
process_wb(XLSX.read(data, {type: 'array'}));
|
2020-03-23 02:03:55 +00:00
|
|
|
};
|
2022-04-15 23:17:23 +00:00
|
|
|
reader.readAsArrayBuffer(f);
|
2020-03-23 02:03:55 +00:00
|
|
|
};
|
|
|
|
})();
|
|
|
|
|
|
|
|
(function() {
|
|
|
|
var drop = document.getElementById('drop');
|
|
|
|
if(!drop.addEventListener) return;
|
|
|
|
|
|
|
|
function handleDrop(e) {
|
|
|
|
e.stopPropagation();
|
|
|
|
e.preventDefault();
|
|
|
|
do_file(e.dataTransfer.files);
|
|
|
|
}
|
|
|
|
|
|
|
|
function handleDragover(e) {
|
|
|
|
e.stopPropagation();
|
|
|
|
e.preventDefault();
|
|
|
|
e.dataTransfer.dropEffect = 'copy';
|
|
|
|
}
|
|
|
|
|
|
|
|
drop.addEventListener('dragenter', handleDragover, false);
|
|
|
|
drop.addEventListener('dragover', handleDragover, false);
|
|
|
|
drop.addEventListener('drop', handleDrop, false);
|
|
|
|
})();
|
|
|
|
|
|
|
|
(function() {
|
|
|
|
var xlf = document.getElementById('xlf');
|
|
|
|
if(!xlf.addEventListener) return;
|
|
|
|
function handleFile(e) { do_file(e.target.files); }
|
|
|
|
xlf.addEventListener('change', handleFile, false);
|
|
|
|
})();
|
|
|
|
|
|
|
|
function export_xlsx() {
|
|
|
|
var new_wb = xtos(xspr.getData());
|
|
|
|
|
|
|
|
/* write file and trigger a download */
|
|
|
|
XLSX.writeFile(new_wb, 'sheetjs.xlsx', {});
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
<script type="text/javascript">
|
|
|
|
/* eslint no-use-before-define:0 */
|
|
|
|
var _gaq = _gaq || [];
|
|
|
|
_gaq.push(['_setAccount', 'UA-36810333-1']);
|
|
|
|
_gaq.push(['_trackPageview']);
|
|
|
|
|
|
|
|
(function() {
|
|
|
|
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
|
|
|
|
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
|
|
|
|
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
|
|
|
|
})();
|
|
|
|
</script>
|
|
|
|
</body>
|
|
|
|
</html>
|