forked from sheetjs/sheetjs
SheetJS
3a310bd3a7
- XLSB/XLSX/XLML write comments - BIFF2 write date cells (see #586 h/t @roccomuso) - ODS read cell comments (fixed #315 h/t @yisk) - XLSX / XLSB emit empty comments when necessary - changed node detection logic (fixes #614 h/t @mhenris) - fixes #605 h/t @ylbweb - fixes #233 h/t @hanxi @osecki - fixes #192 h/t @abarik1981 @stla - fixes #183 h/t @aravindkoneru @ryangallen
74 lines
2.8 KiB
JavaScript
74 lines
2.8 KiB
JavaScript
function parse_wb(data, name/*:string*/, opts)/*:WorkbookFile*/ {
|
|
if(name.slice(-4)===".bin") return parse_wb_bin((data/*:any*/), opts);
|
|
return parse_wb_xml((data/*:any*/), opts);
|
|
}
|
|
|
|
function parse_ws(data, name/*:string*/, opts, rels, wb, themes, styles)/*:Worksheet*/ {
|
|
if(name.slice(-4)===".bin") return parse_ws_bin((data/*:any*/), opts, rels, wb, themes, styles);
|
|
return parse_ws_xml((data/*:any*/), opts, rels, wb, themes, styles);
|
|
}
|
|
|
|
function parse_cs(data, name/*:string*/, opts, rels, wb, themes, styles)/*:Worksheet*/ {
|
|
if(name.slice(-4)===".bin") return parse_cs_bin((data/*:any*/), opts, rels, wb, themes, styles);
|
|
return parse_cs_xml((data/*:any*/), opts, rels, wb, themes, styles);
|
|
}
|
|
|
|
function parse_ms(data, name/*:string*/, opts, rels, wb, themes, styles)/*:Worksheet*/ {
|
|
if(name.slice(-4)===".bin") return parse_ms_bin((data/*:any*/), opts, rels, wb, themes, styles);
|
|
return parse_ms_xml((data/*:any*/), opts, rels, wb, themes, styles);
|
|
}
|
|
|
|
function parse_ds(data, name/*:string*/, opts, rels, wb, themes, styles)/*:Worksheet*/ {
|
|
if(name.slice(-4)===".bin") return parse_ds_bin((data/*:any*/), opts, rels, wb, themes, styles);
|
|
return parse_ds_xml((data/*:any*/), opts, rels, wb, themes, styles);
|
|
}
|
|
|
|
function parse_sty(data, name/*:string*/, themes, opts) {
|
|
if(name.slice(-4)===".bin") return parse_sty_bin((data/*:any*/), themes, opts);
|
|
return parse_sty_xml((data/*:any*/), themes, opts);
|
|
}
|
|
|
|
function parse_theme(data/*:string*/, name/*:string*/, opts) {
|
|
return parse_theme_xml(data, opts);
|
|
}
|
|
|
|
function parse_sst(data, name/*:string*/, opts)/*:SST*/ {
|
|
if(name.slice(-4)===".bin") return parse_sst_bin((data/*:any*/), opts);
|
|
return parse_sst_xml((data/*:any*/), opts);
|
|
}
|
|
|
|
function parse_cmnt(data, name/*:string*/, opts) {
|
|
if(name.slice(-4)===".bin") return parse_comments_bin((data/*:any*/), opts);
|
|
return parse_comments_xml((data/*:any*/), opts);
|
|
}
|
|
|
|
function parse_cc(data, name/*:string*/, opts) {
|
|
if(name.slice(-4)===".bin") return parse_cc_bin((data/*:any*/), opts);
|
|
return parse_cc_xml((data/*:any*/), opts);
|
|
}
|
|
|
|
function write_wb(wb, name/*:string*/, opts) {
|
|
return (name.slice(-4)===".bin" ? write_wb_bin : write_wb_xml)(wb, opts);
|
|
}
|
|
|
|
function write_ws(data/*:Worksheet*/, name/*:string*/, opts, wb/*:Workbook*/, rels) {
|
|
return (name.slice(-4)===".bin" ? write_ws_bin : write_ws_xml)(data, opts, wb, rels);
|
|
}
|
|
|
|
function write_sty(data, name/*:string*/, opts) {
|
|
return (name.slice(-4)===".bin" ? write_sty_bin : write_sty_xml)(data, opts);
|
|
}
|
|
|
|
function write_sst(data/*:SST*/, name/*:string*/, opts) {
|
|
return (name.slice(-4)===".bin" ? write_sst_bin : write_sst_xml)(data, opts);
|
|
}
|
|
|
|
function write_cmnt(data/*:Array<any>*/, name/*:string*/, opts) {
|
|
return (name.slice(-4)===".bin" ? write_comments_bin : write_comments_xml)(data, opts);
|
|
}
|
|
/*
|
|
function write_cc(data, name:string, opts) {
|
|
return (name.slice(-4)===".bin" ? write_cc_bin : write_cc_xml)(data, opts);
|
|
}
|
|
*/
|