forked from sheetjs/sheetjs
SheetJS
4880e9219f
- added more function argc counts and cleaned up error rendering - disabled XLS error on MTRSettings (fixes #466 h/t @dskrvk) - handle more unexpected XML empty tags (fixes #510 h/t @rahulsindc) - throw error if SheetNames is not unique (fixes #231 h/t @zippy1981)
45 lines
1.2 KiB
JavaScript
45 lines
1.2 KiB
JavaScript
/* XLS ranges enforced */
|
|
function shift_cell_xls(cell, tgt, opts) {
|
|
var out = dup(cell);
|
|
if(tgt.s) {
|
|
if(out.cRel) out.c += tgt.s.c;
|
|
if(out.rRel) out.r += tgt.s.r;
|
|
} else {
|
|
out.c += tgt.c;
|
|
out.r += tgt.r;
|
|
}
|
|
if(!opts || opts.biff < 12) {
|
|
while(out.c >= 0x100) out.c -= 0x100;
|
|
while(out.r >= 0x10000) out.r -= 0x10000;
|
|
}
|
|
return out;
|
|
}
|
|
|
|
function shift_range_xls(cell, range, opts) {
|
|
var out = dup(cell);
|
|
out.s = shift_cell_xls(out.s, range.s, opts);
|
|
out.e = shift_cell_xls(out.e, range.s, opts);
|
|
return out;
|
|
}
|
|
|
|
function encode_cell_xls(c)/*:string*/ {
|
|
var s = encode_cell(c);
|
|
if(c.cRel === 0) s = fix_col(s);
|
|
if(c.rRel === 0) s = fix_row(s);
|
|
return s;
|
|
}
|
|
|
|
function encode_range_xls(r, opts)/*:string*/ {
|
|
if(r.s.r == 0 && !r.s.rRel) {
|
|
if(r.e.r == opts.biff >= 12 ? 0xFFFFF : 0xFFFF && !r.e.rRel) {
|
|
return (r.s.cRel ? "" : "$") + encode_col(r.s.c) + ":" + (r.e.cRel ? "" : "$") + encode_col(r.e.c);
|
|
}
|
|
}
|
|
if(r.s.c == 0 && !r.s.cRel) {
|
|
if(r.e.c == opts.biff >= 12 ? 0xFFFF : 0xFF && !r.e.cRel) {
|
|
return (r.s.rRel ? "" : "$") + encode_row(r.s.r) + ":" + (r.e.rRel ? "" : "$") + encode_row(r.e.r);
|
|
}
|
|
}
|
|
return encode_cell_xls(r.s) + ":" + encode_cell_xls(r.e);
|
|
}
|