forked from sheetjs/sheetjs
		
	- jscs linting to check for trailing comma issues (h/t @altkatz) - IE: phased out lazy string indexing in favor of charCodeAt - XLSX: replaced certain operations in hot functions with faster alternatives - updated SSF to 0.7.1 - improved coverage in tests
		
			
				
	
	
		
			176 lines
		
	
	
		
			4.7 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			176 lines
		
	
	
		
			4.7 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!DOCTYPE html>
 | 
						|
<!-- xlsx.js (C) 2013-2014 SheetJS http://sheetjs.com -->
 | 
						|
<!-- vim: set ts=2: -->
 | 
						|
<html>
 | 
						|
<head>
 | 
						|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
 | 
						|
<title>JS-XLSX 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%;
 | 
						|
}
 | 
						|
</style>
 | 
						|
</head>
 | 
						|
<body>
 | 
						|
<b>JS-XLSX (XLSX/XLSB/XLSM) Live Demo</b><br />
 | 
						|
<input type="radio" name="format" value="csv" checked> CSV<br>
 | 
						|
<input type="radio" name="format" value="json"> JSON<br>
 | 
						|
<input type="radio" name="format" value="form"> FORMULAE<br>
 | 
						|
 | 
						|
<div id="drop">Drop an XLSX or XLSM or XLSB file here to see sheet data.</div>
 | 
						|
<textarea id="b64data">... or paste a base64-encoding here</textarea>
 | 
						|
<input type="button" id="dotext" value="Click here to process the base64 text" onclick="b64it();"/>
 | 
						|
<pre id="out"></pre>
 | 
						|
<br />
 | 
						|
<!-- uncomment the next line here and in xlsxworker.js for encoding support -->
 | 
						|
<!--<script src="dist/cpexcel.js"></script>-->
 | 
						|
<script src="shim.js"></script>
 | 
						|
<script src="jszip.js"></script>
 | 
						|
<script src="xlsx.js"></script>
 | 
						|
<script>
 | 
						|
var rABS = typeof FileReader !== "undefined" && typeof FileReader.prototype !== "undefined" && typeof FileReader.prototype.readAsBinaryString !== "undefined";
 | 
						|
function fixdata(data) {
 | 
						|
	var o = "", l = 0, w = 10240;
 | 
						|
	for(; l<data.byteLength/w; ++l)
 | 
						|
		o+=String.fromCharCode.apply(null,new Uint8Array(data.slice(l*w,l*w+w)));
 | 
						|
	o+=String.fromCharCode.apply(null, new Uint8Array(data.slice(o.length)));
 | 
						|
	return o;
 | 
						|
}
 | 
						|
 | 
						|
function xlsxworker(data, cb) {
 | 
						|
	var worker = new Worker('./xlsxworker.js');
 | 
						|
	worker.onmessage = function(e) {
 | 
						|
		switch(e.data.t) {
 | 
						|
			case 'ready': break;
 | 
						|
			case 'e': console.error(e.data.d); break;
 | 
						|
			case 'xlsx': cb(JSON.parse(e.data.d)); break;
 | 
						|
		}
 | 
						|
	};
 | 
						|
	var arr = rABS ? data : btoa(fixdata(data));
 | 
						|
	worker.postMessage({d:arr,b:rABS});
 | 
						|
}
 | 
						|
 | 
						|
function get_radio_value( radioName ) {
 | 
						|
	var radios = document.getElementsByName( radioName );
 | 
						|
	for( var i = 0; i < radios.length; i++ ) {
 | 
						|
		if( radios[i].checked ) {
 | 
						|
			return radios[i].value;
 | 
						|
		}
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
function to_json(workbook) {
 | 
						|
	var result = {};
 | 
						|
	workbook.SheetNames.forEach(function(sheetName) {
 | 
						|
		var roa = XLSX.utils.sheet_to_row_object_array(workbook.Sheets[sheetName]);
 | 
						|
		if(roa.length > 0){
 | 
						|
			result[sheetName] = roa;
 | 
						|
		}
 | 
						|
	});
 | 
						|
	return result;
 | 
						|
}
 | 
						|
 | 
						|
function to_csv(workbook) {
 | 
						|
	var result = [];
 | 
						|
	workbook.SheetNames.forEach(function(sheetName) {
 | 
						|
		var csv = XLSX.utils.sheet_to_csv(workbook.Sheets[sheetName]);
 | 
						|
		if(csv.length > 0){
 | 
						|
			result.push("SHEET: " + sheetName);
 | 
						|
			result.push("");
 | 
						|
			result.push(csv);
 | 
						|
		}
 | 
						|
	});
 | 
						|
	return result.join("\n");
 | 
						|
}
 | 
						|
 | 
						|
function to_formulae(workbook) {
 | 
						|
	var result = [];
 | 
						|
	workbook.SheetNames.forEach(function(sheetName) {
 | 
						|
		var formulae = XLSX.utils.get_formulae(workbook.Sheets[sheetName]);
 | 
						|
		if(formulae.length > 0){
 | 
						|
			result.push("SHEET: " + sheetName);
 | 
						|
			result.push("");
 | 
						|
			result.push(formulae.join("\n"));
 | 
						|
		}
 | 
						|
	});
 | 
						|
	return result.join("\n");
 | 
						|
}
 | 
						|
 | 
						|
var tarea = document.getElementById('b64data');
 | 
						|
function b64it() {
 | 
						|
	if(typeof console !== 'undefined') console.log("onload", new Date());
 | 
						|
	var wb = XLSX.read(tarea.value, {type: 'base64'});
 | 
						|
	process_wb(wb);
 | 
						|
}
 | 
						|
 | 
						|
function process_wb(wb) {
 | 
						|
	var output = "";
 | 
						|
	switch(get_radio_value("format")) {
 | 
						|
		case "json":
 | 
						|
			output = JSON.stringify(to_json(wb), 2, 2);
 | 
						|
			break;
 | 
						|
		case "form":
 | 
						|
			output = to_formulae(wb);
 | 
						|
			break;
 | 
						|
		default:
 | 
						|
		output = to_csv(wb);
 | 
						|
	}
 | 
						|
	if(out.innerText === undefined) out.textContent = output;
 | 
						|
	else out.innerText = output;
 | 
						|
	if(typeof console !== 'undefined') console.log("output", new Date());
 | 
						|
}
 | 
						|
 | 
						|
var drop = document.getElementById('drop');
 | 
						|
function handleDrop(e) {
 | 
						|
	e.stopPropagation();
 | 
						|
	e.preventDefault();
 | 
						|
	var files = e.dataTransfer.files;
 | 
						|
	var i,f;
 | 
						|
	for (i = 0, f = files[i]; i != files.length; ++i) {
 | 
						|
		var reader = new FileReader();
 | 
						|
		var name = f.name;
 | 
						|
		reader.onload = function(e) {
 | 
						|
			if(typeof console !== 'undefined') console.log("onload", new Date());
 | 
						|
			var data = e.target.result;
 | 
						|
			if(typeof Worker !== 'undefined') {
 | 
						|
				xlsxworker(data, process_wb);
 | 
						|
			} else {
 | 
						|
				var wb;
 | 
						|
				if(rABS) {
 | 
						|
					wb = XLSX.read(data, {type: 'binary'});
 | 
						|
				} else {
 | 
						|
				var arr = fixdata(data);
 | 
						|
					wb = XLSX.read(btoa(arr), {type: 'base64'});
 | 
						|
				}
 | 
						|
				process_wb(wb);
 | 
						|
			}
 | 
						|
		};
 | 
						|
		if(rABS) reader.readAsBinaryString(f);
 | 
						|
		else reader.readAsArrayBuffer(f);
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
function handleDragover(e) {
 | 
						|
	e.stopPropagation();
 | 
						|
	e.preventDefault();
 | 
						|
	e.dataTransfer.dropEffect = 'copy';
 | 
						|
}
 | 
						|
 | 
						|
if(drop.addEventListener) {
 | 
						|
	drop.addEventListener('dragenter', handleDragover, false);
 | 
						|
	drop.addEventListener('dragover', handleDragover, false);
 | 
						|
	drop.addEventListener('drop', handleDrop, false);
 | 
						|
}
 | 
						|
</script>
 | 
						|
</body>
 | 
						|
</html>
 |