@ninebone/table 0.0.149 β 0.0.151
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/nine-table.js +224 -231
- package/dist/nine-table.js.map +1 -1
- package/dist/nine-table.umd.js +11 -6
- package/dist/nine-table.umd.js.map +1 -1
- package/package.json +1 -1
package/dist/nine-table.js
CHANGED
|
@@ -2,16 +2,16 @@ var Me = Object.defineProperty;
|
|
|
2
2
|
var $e = (w) => {
|
|
3
3
|
throw TypeError(w);
|
|
4
4
|
};
|
|
5
|
-
var ze = (w,
|
|
6
|
-
var a = (w,
|
|
7
|
-
var v = (w,
|
|
8
|
-
var e = (w,
|
|
9
|
-
var He = (w,
|
|
5
|
+
var ze = (w, i, t) => i in w ? Me(w, i, { enumerable: !0, configurable: !0, writable: !0, value: t }) : w[i] = t;
|
|
6
|
+
var a = (w, i) => Me(w, "name", { value: i, configurable: !0 });
|
|
7
|
+
var v = (w, i, t) => ze(w, typeof i != "symbol" ? i + "" : i, t), Ie = (w, i, t) => i.has(w) || $e("Cannot " + t);
|
|
8
|
+
var e = (w, i, t) => (Ie(w, i, "read from private field"), t ? t.call(w) : i.get(w)), u = (w, i, t) => i.has(w) ? $e("Cannot add the same private member more than once") : i instanceof WeakSet ? i.add(w) : i.set(w, t), p = (w, i, t, s) => (Ie(w, i, "write to private field"), s ? s.call(w, t) : i.set(w, t), t);
|
|
9
|
+
var He = (w, i, t, s) => ({
|
|
10
10
|
set _(n) {
|
|
11
|
-
p(w,
|
|
11
|
+
p(w, i, n, t);
|
|
12
12
|
},
|
|
13
13
|
get _() {
|
|
14
|
-
return e(w,
|
|
14
|
+
return e(w, i, s);
|
|
15
15
|
}
|
|
16
16
|
});
|
|
17
17
|
import { trace as We } from "@ninebone/util";
|
|
@@ -42,10 +42,10 @@ const Te = class Te extends HTMLElement {
|
|
|
42
42
|
}, "#observeResize"));
|
|
43
43
|
v(this, "refresh", /* @__PURE__ */ a(() => {
|
|
44
44
|
if (!e(this, _) || !e(this, y) || e(this, O)) return;
|
|
45
|
-
const t = e(this, y).container,
|
|
46
|
-
if (!
|
|
47
|
-
const n = e(this, y).track, o = e(this, y).thumb, r = e(this, _).querySelector(".ng-container-bottom"), l = t.clientWidth,
|
|
48
|
-
if (l !== 0 &&
|
|
45
|
+
const t = e(this, y).container, s = t.querySelector("table");
|
|
46
|
+
if (!s) return;
|
|
47
|
+
const n = e(this, y).track, o = e(this, y).thumb, r = e(this, _).querySelector(".ng-container-bottom"), l = t.clientWidth, g = s.scrollWidth;
|
|
48
|
+
if (l !== 0 && g > l)
|
|
49
49
|
r && (r.style.display = "flex");
|
|
50
50
|
else {
|
|
51
51
|
r && (r.style.display = "none");
|
|
@@ -53,32 +53,32 @@ const Te = class Te extends HTMLElement {
|
|
|
53
53
|
}
|
|
54
54
|
const c = n.clientWidth;
|
|
55
55
|
if (c <= 0) return;
|
|
56
|
-
const h = Math.max(Math.min(c * (l /
|
|
56
|
+
const h = Math.max(Math.min(c * (l / g), c), 20);
|
|
57
57
|
o.style.width = `${h}px`;
|
|
58
58
|
let d = 0;
|
|
59
|
-
const
|
|
60
|
-
if (
|
|
61
|
-
const x =
|
|
59
|
+
const b = s.style.transform;
|
|
60
|
+
if (b && b.includes("translateX")) {
|
|
61
|
+
const x = b.match(/translateX\(([-\d.]+)px\)/);
|
|
62
62
|
x && x[1] && (d = parseFloat(x[1]));
|
|
63
63
|
} else
|
|
64
|
-
d = parseInt(
|
|
65
|
-
let f = parseInt(Math.abs(d) * c /
|
|
64
|
+
d = parseInt(s.style.left || 0, 10);
|
|
65
|
+
let f = parseInt(Math.abs(d) * c / g, 10);
|
|
66
66
|
f < 0 && (f = 0);
|
|
67
67
|
const S = c - h;
|
|
68
68
|
f > S && (f = S), o.style.left = `${f}px`, e(this, y).left.disabled = f === 0, e(this, y).right.disabled = f >= S - 1;
|
|
69
69
|
}, "refresh"));
|
|
70
70
|
u(this, P, /* @__PURE__ */ a((t) => {
|
|
71
71
|
if (!e(this, y)) return !1;
|
|
72
|
-
const
|
|
72
|
+
const s = e(this, y).container, n = s.querySelector("table");
|
|
73
73
|
if (!n) return !1;
|
|
74
74
|
const o = e(this, y).track.getBoundingClientRect(), r = e(this, y).thumb.clientWidth;
|
|
75
75
|
let l = t;
|
|
76
76
|
l < 0 && (l = 0);
|
|
77
|
-
const
|
|
78
|
-
l >
|
|
79
|
-
const c =
|
|
80
|
-
let d =
|
|
81
|
-
return -d > h - c && (d = -(h - c)), -d + 5 > h - c && (d = -(h - c)), c >= h && (d = 0), n.style.transform = `translateX(${d}px)`, l > 0 && l <
|
|
77
|
+
const g = o.width - r;
|
|
78
|
+
l > g && (l = g), l = parseInt(l, 10), e(this, y).thumb.style.left = `${l}px`, e(this, y).left.disabled = l === 0, e(this, y).right.disabled = l >= g - 1;
|
|
79
|
+
const c = s.clientWidth, h = n.scrollWidth;
|
|
80
|
+
let d = g > 0 ? -l * (h - c) / g : 0;
|
|
81
|
+
return -d > h - c && (d = -(h - c)), -d + 5 > h - c && (d = -(h - c)), c >= h && (d = 0), n.style.transform = `translateX(${d}px)`, l > 0 && l < g - 1;
|
|
82
82
|
}, "#thumbMoveTo"));
|
|
83
83
|
u(this, te, /* @__PURE__ */ a(() => {
|
|
84
84
|
const t = /* @__PURE__ */ a((n) => {
|
|
@@ -90,11 +90,11 @@ const Te = class Te extends HTMLElement {
|
|
|
90
90
|
e(this, P).call(this, r + n) || clearInterval(e(this, D));
|
|
91
91
|
}, 50));
|
|
92
92
|
}, 500));
|
|
93
|
-
}, "delayScroll"),
|
|
93
|
+
}, "delayScroll"), s = /* @__PURE__ */ a(() => {
|
|
94
94
|
clearInterval(e(this, B)), clearInterval(e(this, D));
|
|
95
95
|
}, "clearTimer");
|
|
96
96
|
["mouseup", "mouseleave", "touchend"].forEach((n) => {
|
|
97
|
-
e(this, y).left.addEventListener(n,
|
|
97
|
+
e(this, y).left.addEventListener(n, s), e(this, y).right.addEventListener(n, s), e(this, y).track.addEventListener(n, s);
|
|
98
98
|
}), e(this, y).left.addEventListener("mousedown", (n) => {
|
|
99
99
|
n.button === 0 && t(-20);
|
|
100
100
|
}), e(this, y).right.addEventListener("mousedown", (n) => {
|
|
@@ -109,10 +109,10 @@ const Te = class Te extends HTMLElement {
|
|
|
109
109
|
n.stopPropagation(), n.preventDefault(), p(this, O, !0), this.shiftX = n.clientX - e(this, y).thumb.getBoundingClientRect().left;
|
|
110
110
|
const o = /* @__PURE__ */ a((l) => {
|
|
111
111
|
if (!e(this, O)) return;
|
|
112
|
-
const
|
|
113
|
-
e(this, P).call(this, l.clientX -
|
|
112
|
+
const g = e(this, y).track.getBoundingClientRect();
|
|
113
|
+
e(this, P).call(this, l.clientX - g.left - this.shiftX);
|
|
114
114
|
}, "onMouseMove"), r = /* @__PURE__ */ a(() => {
|
|
115
|
-
p(this, O, !1),
|
|
115
|
+
p(this, O, !1), s(), document.removeEventListener("mousemove", o), document.removeEventListener("mouseup", r), this.refresh();
|
|
116
116
|
}, "onMouseUp");
|
|
117
117
|
document.addEventListener("mousemove", o), document.addEventListener("mouseup", r);
|
|
118
118
|
});
|
|
@@ -184,13 +184,13 @@ const Te = class Te extends HTMLElement {
|
|
|
184
184
|
<button class='ng-scroll-right' disabled><div class='ng-scroll-icon'></div></button>
|
|
185
185
|
`;
|
|
186
186
|
const t = /* @__PURE__ */ a(() => {
|
|
187
|
-
const
|
|
188
|
-
if (!
|
|
187
|
+
const s = e(this, _).querySelector(".ng-container-body");
|
|
188
|
+
if (!s) {
|
|
189
189
|
setTimeout(t, 10);
|
|
190
190
|
return;
|
|
191
191
|
}
|
|
192
192
|
p(this, y, {
|
|
193
|
-
container:
|
|
193
|
+
container: s,
|
|
194
194
|
track: this.querySelector(".ng-scroll-track"),
|
|
195
195
|
thumb: this.querySelector(".ng-scroll-thumb"),
|
|
196
196
|
left: this.querySelector(".ng-scroll-left"),
|
|
@@ -206,68 +206,68 @@ const Te = class Te extends HTMLElement {
|
|
|
206
206
|
_ = new WeakMap(), O = new WeakMap(), y = new WeakMap(), B = new WeakMap(), D = new WeakMap(), N = new WeakMap(), ee = new WeakMap(), P = new WeakMap(), te = new WeakMap(), a(Te, "NineTableHScrollBar");
|
|
207
207
|
let ge = Te;
|
|
208
208
|
customElements.get("nine-table-hscrollbar") || customElements.define("nine-table-hscrollbar", ge);
|
|
209
|
-
var
|
|
209
|
+
var X, M, q, I, $, H, ie, se;
|
|
210
210
|
const qe = class qe {
|
|
211
|
-
constructor(
|
|
212
|
-
u(this,
|
|
211
|
+
constructor(i) {
|
|
212
|
+
u(this, X);
|
|
213
213
|
u(this, M, []);
|
|
214
214
|
u(this, q, null);
|
|
215
215
|
u(this, I, null);
|
|
216
216
|
u(this, $, 0);
|
|
217
217
|
u(this, H, 0);
|
|
218
|
-
u(this,
|
|
219
|
-
e(this,
|
|
218
|
+
u(this, ie, /* @__PURE__ */ a(() => {
|
|
219
|
+
e(this, se).call(this);
|
|
220
220
|
}, "#init"));
|
|
221
221
|
/**
|
|
222
222
|
* π― λ·°ν¬νΈ ν¬κΈ° λ³ν μμ μ λμ΄ κ³μ° λ° νμν ν κ°μ μ°μ Β·μΊμ±μ μκ²°
|
|
223
223
|
*/
|
|
224
|
-
u(this,
|
|
225
|
-
!e(this,
|
|
226
|
-
for (const t of
|
|
227
|
-
const
|
|
228
|
-
if (!
|
|
224
|
+
u(this, se, /* @__PURE__ */ a(() => {
|
|
225
|
+
!e(this, X) || !(e(this, X) instanceof HTMLElement) || (p(this, I, new ResizeObserver((i) => {
|
|
226
|
+
for (const t of i) {
|
|
227
|
+
const s = t.target;
|
|
228
|
+
if (!s.classList.contains("active"))
|
|
229
229
|
continue;
|
|
230
230
|
const n = t.contentRect.height || (t.borderBoxSize && t.borderBoxSize[0] ? t.borderBoxSize[0].blockSize : 0);
|
|
231
231
|
if (n > 0) {
|
|
232
|
-
const o =
|
|
232
|
+
const o = s.clientHeight || s.getBoundingClientRect().height || n;
|
|
233
233
|
let r = 0;
|
|
234
|
-
const l =
|
|
235
|
-
|
|
234
|
+
const l = s.querySelector(".ng-container-body") || s, g = l.querySelector("thead"), c = l.querySelector("tfoot");
|
|
235
|
+
g && (r += g.offsetHeight || g.getBoundingClientRect().height), c && (r += c.offsetHeight || c.getBoundingClientRect().height);
|
|
236
236
|
const h = Math.max(o - r, 100);
|
|
237
237
|
if (e(this, $) !== h && (p(this, $, h), e(this, q) !== null)) {
|
|
238
238
|
const d = Math.ceil(e(this, $) / e(this, q));
|
|
239
|
-
p(this, H, d + 20), j.log(`[RowManager] Resized. Height: ${e(this, $)}px | Target Rows: ${e(this, H)}`), [".ng-container-body", ".ng-container-left", ".ng-container-right"].forEach((
|
|
240
|
-
const f =
|
|
239
|
+
p(this, H, d + 20), j.log(`[RowManager] Resized. Height: ${e(this, $)}px | Target Rows: ${e(this, H)}`), [".ng-container-body", ".ng-container-left", ".ng-container-right"].forEach((b) => {
|
|
240
|
+
const f = s.querySelector(b);
|
|
241
241
|
f && f.querySelector("tbody") && this.renderRows(f);
|
|
242
242
|
});
|
|
243
243
|
}
|
|
244
244
|
}
|
|
245
245
|
}
|
|
246
|
-
})), e(this, I).observe(e(this,
|
|
246
|
+
})), e(this, I).observe(e(this, X)));
|
|
247
247
|
}, "#initResizeObserver"));
|
|
248
|
-
v(this, "initTemplate", /* @__PURE__ */ a((
|
|
249
|
-
const t =
|
|
248
|
+
v(this, "initTemplate", /* @__PURE__ */ a((i) => {
|
|
249
|
+
const t = i.querySelector("tbody.bindable") || i.querySelector("tbody");
|
|
250
250
|
if (!t) return;
|
|
251
|
-
const
|
|
252
|
-
p(this, M,
|
|
251
|
+
const s = Array.from(t.querySelectorAll("tr")).filter((n) => !n.classList.contains("nodata"));
|
|
252
|
+
p(this, M, s.map((n) => n.cloneNode(!0))), p(this, q, null), console.log(`[RowManager] Template initialized with ${e(this, M).length} row(s).`);
|
|
253
253
|
}, "initTemplate"));
|
|
254
|
-
v(this, "measureAndCacheHeight", /* @__PURE__ */ a((
|
|
254
|
+
v(this, "measureAndCacheHeight", /* @__PURE__ */ a((i) => {
|
|
255
255
|
if (e(this, q) !== null)
|
|
256
256
|
return e(this, q);
|
|
257
257
|
if (e(this, M).length === 0)
|
|
258
258
|
throw new Error("[RowManager] Template TRs are empty.");
|
|
259
|
-
const t =
|
|
259
|
+
const t = i.querySelector("tbody.bindable") || i.querySelector("tbody");
|
|
260
260
|
if (!t) return 24;
|
|
261
261
|
t.querySelectorAll("tr:not(.nodata)").forEach((l) => l.remove());
|
|
262
|
-
const
|
|
262
|
+
const s = t.querySelector("tr.nodata"), n = document.createDocumentFragment();
|
|
263
263
|
e(this, M).forEach((l) => {
|
|
264
264
|
n.appendChild(l.cloneNode(!0));
|
|
265
|
-
}),
|
|
265
|
+
}), s ? s.before(n) : t.appendChild(n);
|
|
266
266
|
let o = 0;
|
|
267
|
-
if (t.querySelectorAll("tr:not(.nodata)").forEach((l,
|
|
267
|
+
if (t.querySelectorAll("tr:not(.nodata)").forEach((l, g) => {
|
|
268
268
|
const c = l.offsetHeight;
|
|
269
269
|
if (c === 0)
|
|
270
|
-
throw new Error(`[RowManager] Rendered TR[${
|
|
270
|
+
throw new Error(`[RowManager] Rendered TR[${g}] height is 0. Check CSS styles.`);
|
|
271
271
|
o += c;
|
|
272
272
|
}), p(this, q, o), e(this, $) > 0) {
|
|
273
273
|
const l = Math.ceil(e(this, $) / e(this, q));
|
|
@@ -291,85 +291,85 @@ const qe = class qe {
|
|
|
291
291
|
/**
|
|
292
292
|
* π― μΊμλ ν κ°μλ₯Ό κ³§λ°λ‘ κ°μ Έμμ TR λΌλ μ£Όμ
(μ€λ³΅ κ³μ° μ κ±°)
|
|
293
293
|
*/
|
|
294
|
-
v(this, "renderRows", /* @__PURE__ */ a((
|
|
294
|
+
v(this, "renderRows", /* @__PURE__ */ a((i) => {
|
|
295
295
|
if (e(this, M).length === 0) return;
|
|
296
|
-
const t =
|
|
296
|
+
const t = i.querySelector("tbody.bindable") || i.querySelector("tbody");
|
|
297
297
|
if (!t) return;
|
|
298
298
|
t.querySelectorAll("tr:not(.nodata)").forEach((r) => r.remove());
|
|
299
|
-
const
|
|
299
|
+
const s = t.querySelector("tr.nodata"), n = document.createDocumentFragment(), o = e(this, H);
|
|
300
300
|
for (let r = 0; r < o; r++)
|
|
301
301
|
e(this, M).forEach((l) => {
|
|
302
302
|
n.appendChild(l.cloneNode(!0));
|
|
303
303
|
});
|
|
304
|
-
|
|
304
|
+
s ? s.before(n) : t.appendChild(n), console.log(`[RowManager] Rendered ${o} sets into DOM.`);
|
|
305
305
|
}, "renderRows"));
|
|
306
306
|
v(this, "destroy", /* @__PURE__ */ a(() => {
|
|
307
307
|
e(this, I) && (e(this, I).disconnect(), p(this, I, null));
|
|
308
308
|
}, "destroy"));
|
|
309
|
-
p(this,
|
|
309
|
+
p(this, X, i), e(this, ie).call(this);
|
|
310
310
|
}
|
|
311
311
|
get templateLength() {
|
|
312
312
|
return e(this, M).length || 1;
|
|
313
313
|
}
|
|
314
314
|
};
|
|
315
|
-
|
|
315
|
+
X = new WeakMap(), M = new WeakMap(), q = new WeakMap(), I = new WeakMap(), $ = new WeakMap(), H = new WeakMap(), ie = new WeakMap(), se = new WeakMap(), a(qe, "RowManager");
|
|
316
316
|
let pe = qe;
|
|
317
|
-
var
|
|
317
|
+
var A, F, ne;
|
|
318
318
|
const Z = class Z extends HTMLElement {
|
|
319
319
|
constructor() {
|
|
320
320
|
super();
|
|
321
|
-
u(this,
|
|
321
|
+
u(this, A, null);
|
|
322
322
|
u(this, F);
|
|
323
323
|
v(this, "init", /* @__PURE__ */ a((t) => {
|
|
324
324
|
if (!t) return;
|
|
325
|
-
const
|
|
326
|
-
const h = /* @__PURE__ */ a((
|
|
327
|
-
if (
|
|
328
|
-
const f =
|
|
325
|
+
const s = /* @__PURE__ */ a((c) => {
|
|
326
|
+
const h = /* @__PURE__ */ a((b) => {
|
|
327
|
+
if (b.querySelector("colgroup")) return;
|
|
328
|
+
const f = b.querySelector("tbody tr") || b.querySelector("tr"), S = f ? f.querySelectorAll("th, td").length : 1, x = document.createElement("colgroup"), C = Math.max(Math.floor((b.clientWidth || 600) / S), 100);
|
|
329
329
|
for (let R = 0; R < S; R++) {
|
|
330
330
|
const ue = document.createElement("col");
|
|
331
331
|
ue.setAttribute("width", C), x.appendChild(ue);
|
|
332
332
|
}
|
|
333
|
-
|
|
334
|
-
}, "ensureColgroup"), d = /* @__PURE__ */ a((
|
|
335
|
-
if (
|
|
336
|
-
const f = document.createElement("thead"), S =
|
|
337
|
-
S ? S.after(f) :
|
|
333
|
+
b.prepend(x);
|
|
334
|
+
}, "ensureColgroup"), d = /* @__PURE__ */ a((b) => {
|
|
335
|
+
if (b.querySelector("thead")) return;
|
|
336
|
+
const f = document.createElement("thead"), S = b.querySelector("colgroup");
|
|
337
|
+
S ? S.after(f) : b.prepend(f);
|
|
338
338
|
}, "ensureThead");
|
|
339
339
|
return h(c), d(c), c.classList.add("nine-table-element"), c;
|
|
340
340
|
}, "initializeTable"), n = t.cloneNode(!0);
|
|
341
|
-
p(this,
|
|
342
|
-
const o = this.querySelector(".ng-container-left"), r = this.querySelector(".ng-container-body"), l = this.querySelector(".ng-container-right"),
|
|
343
|
-
const
|
|
341
|
+
p(this, A, s(n)), e(this, A).style.display = "table", e(this, F).initTemplate(e(this, A));
|
|
342
|
+
const o = this.querySelector(".ng-container-left"), r = this.querySelector(".ng-container-body"), l = this.querySelector(".ng-container-right"), g = /* @__PURE__ */ a((c, h, d = !1) => {
|
|
343
|
+
const b = c.cloneNode(!0), f = Array.from(b.querySelectorAll("colgroup col")), S = [];
|
|
344
344
|
return f.forEach((x, C) => {
|
|
345
345
|
const R = x.getAttribute("fixed");
|
|
346
346
|
(d ? !R || R === "" : R === h) || S.push(C);
|
|
347
347
|
}), S.reverse().forEach((x) => {
|
|
348
|
-
f[x] && f[x].remove(),
|
|
348
|
+
f[x] && f[x].remove(), b.querySelectorAll("tr").forEach((C) => {
|
|
349
349
|
const R = C.querySelectorAll("th, td");
|
|
350
350
|
R[x] && R[x].remove();
|
|
351
351
|
});
|
|
352
|
-
}),
|
|
352
|
+
}), b;
|
|
353
353
|
}, "filterTableByFixed");
|
|
354
354
|
if (r) {
|
|
355
|
-
const c =
|
|
355
|
+
const c = g(e(this, A), null, !0);
|
|
356
356
|
r.innerHTML = "", r.appendChild(c), e(this, F).measureAndCacheHeight(r);
|
|
357
357
|
}
|
|
358
358
|
if (o) {
|
|
359
|
-
const c =
|
|
359
|
+
const c = g(e(this, A), "left", !1);
|
|
360
360
|
let h = 0;
|
|
361
|
-
c.querySelectorAll("col").forEach((
|
|
362
|
-
const f = parseInt(
|
|
361
|
+
c.querySelectorAll("col").forEach((b) => {
|
|
362
|
+
const f = parseInt(b.getAttribute("width"), 10);
|
|
363
363
|
isNaN(f) || (h += f);
|
|
364
364
|
}), o.innerHTML = "", o.appendChild(c);
|
|
365
365
|
const d = h > 0 ? h : 0;
|
|
366
366
|
o.style.flex = `0 0 ${d}px`, o.style.width = `${d}px`;
|
|
367
367
|
}
|
|
368
368
|
if (l) {
|
|
369
|
-
const c =
|
|
369
|
+
const c = g(e(this, A), "right", !1);
|
|
370
370
|
let h = 0;
|
|
371
|
-
c.querySelectorAll("col").forEach((
|
|
372
|
-
const f = parseInt(
|
|
371
|
+
c.querySelectorAll("col").forEach((b) => {
|
|
372
|
+
const f = parseInt(b.getAttribute("width"), 10);
|
|
373
373
|
isNaN(f) || (h += f);
|
|
374
374
|
}), l.innerHTML = "", l.appendChild(c);
|
|
375
375
|
const d = h > 0 ? h : 0;
|
|
@@ -387,14 +387,14 @@ const Z = class Z extends HTMLElement {
|
|
|
387
387
|
c && typeof c.refresh == "function" && c.refresh();
|
|
388
388
|
}, 0), j.log(`NineTableSheet 3-split initialized with rows: ${this.getRowCount()}`);
|
|
389
389
|
}, "init"));
|
|
390
|
-
v(this, "getRowCount", /* @__PURE__ */ a(() => e(this,
|
|
390
|
+
v(this, "getRowCount", /* @__PURE__ */ a(() => e(this, A) ? e(this, A).querySelectorAll("tbody tr").length : 0, "getRowCount"));
|
|
391
391
|
v(this, "scrollToX", /* @__PURE__ */ a((t) => {
|
|
392
|
-
const
|
|
393
|
-
|
|
392
|
+
const s = this.querySelector(".ng-container-body");
|
|
393
|
+
s && (s.scrollLeft = t);
|
|
394
394
|
}, "scrollToX"));
|
|
395
395
|
v(this, "scrollToY", /* @__PURE__ */ a((t) => {
|
|
396
|
-
const
|
|
397
|
-
|
|
396
|
+
const s = this.querySelector(".ng-container-body");
|
|
397
|
+
s && (s.scrollTop = t);
|
|
398
398
|
}, "scrollToY"));
|
|
399
399
|
u(this, ne, /* @__PURE__ */ a(() => {
|
|
400
400
|
const t = Z.SCROLLBAR_SIZE;
|
|
@@ -522,7 +522,7 @@ const Z = class Z extends HTMLElement {
|
|
|
522
522
|
this.innerHTML = "", j.log("NineTableSheet destroyed.");
|
|
523
523
|
}
|
|
524
524
|
};
|
|
525
|
-
|
|
525
|
+
A = new WeakMap(), F = new WeakMap(), ne = new WeakMap(), a(Z, "NineTableSheet"), v(Z, "SCROLLBAR_SIZE", 16);
|
|
526
526
|
let ye = Z;
|
|
527
527
|
customElements.get("nine-table-sheet") || customElements.define("nine-table-sheet", ye);
|
|
528
528
|
var re;
|
|
@@ -531,33 +531,33 @@ const ke = class ke extends HTMLElement {
|
|
|
531
531
|
super();
|
|
532
532
|
u(this, re, /* @__PURE__ */ a(() => {
|
|
533
533
|
const t = this.querySelector(".nine-tab-bar");
|
|
534
|
-
t && (t.addEventListener("click", (
|
|
535
|
-
const n =
|
|
534
|
+
t && (t.addEventListener("click", (s) => {
|
|
535
|
+
const n = s.target.closest(".nine-tab-item");
|
|
536
536
|
if (!n) return;
|
|
537
|
-
const o =
|
|
537
|
+
const o = s.ctrlKey || s.metaKey || s.shiftKey, r = parseInt(n.dataset.index, 10);
|
|
538
538
|
this.switchSheet(r, o);
|
|
539
539
|
}), this.switchSheet(0, !1));
|
|
540
540
|
}, "#init"));
|
|
541
|
-
v(this, "switchSheet", /* @__PURE__ */ a((t,
|
|
541
|
+
v(this, "switchSheet", /* @__PURE__ */ a((t, s = !1) => {
|
|
542
542
|
const n = /* @__PURE__ */ a(() => {
|
|
543
543
|
const d = this.querySelector("nine-table-sheets-body");
|
|
544
544
|
d.querySelectorAll("nine-splitter").forEach((f) => {
|
|
545
545
|
const S = parseInt(f.dataset.splitIndex, 10), x = d.querySelector(`nine-table-sheet[data-index="${S - 1}"]`), C = d.querySelector(`nine-table-sheet[data-index="${S}"]`);
|
|
546
546
|
x && C && x.classList.contains("active") && C.classList.contains("active") ? f.classList.add("active") : f.classList.remove("active");
|
|
547
547
|
});
|
|
548
|
-
}, "updateSplitters"), o = this.querySelector(".nine-tab-bar"), r = this.querySelector("nine-table-sheets-body"), l = o.querySelectorAll(".nine-tab-item"),
|
|
548
|
+
}, "updateSplitters"), o = this.querySelector(".nine-tab-bar"), r = this.querySelector("nine-table-sheets-body"), l = o.querySelectorAll(".nine-tab-item"), g = r.querySelectorAll("nine-table-sheet");
|
|
549
549
|
if (!l[t]) return;
|
|
550
|
-
if (!
|
|
551
|
-
l.forEach((d,
|
|
552
|
-
d.classList.toggle("active",
|
|
553
|
-
const f = r.querySelector(`nine-table-sheet[data-index="${
|
|
550
|
+
if (!s)
|
|
551
|
+
l.forEach((d, b) => {
|
|
552
|
+
d.classList.toggle("active", b === t);
|
|
553
|
+
const f = r.querySelector(`nine-table-sheet[data-index="${b}"]`);
|
|
554
554
|
f && (f.style.flex = "");
|
|
555
|
-
}),
|
|
556
|
-
d.classList.toggle("active",
|
|
555
|
+
}), g.forEach((d, b) => {
|
|
556
|
+
d.classList.toggle("active", b === t);
|
|
557
557
|
});
|
|
558
558
|
else {
|
|
559
|
-
const d = l[t],
|
|
560
|
-
if (d.classList.contains("active") &&
|
|
559
|
+
const d = l[t], b = o.querySelectorAll(".nine-tab-item.active");
|
|
560
|
+
if (d.classList.contains("active") && b.length <= 1)
|
|
561
561
|
return;
|
|
562
562
|
d.classList.toggle("active");
|
|
563
563
|
const f = r.querySelector(`nine-table-sheet[data-index="${t}"]`);
|
|
@@ -566,8 +566,8 @@ const ke = class ke extends HTMLElement {
|
|
|
566
566
|
const c = Array.from(r.querySelectorAll("nine-table-sheet.active"));
|
|
567
567
|
if (c.length > 1) {
|
|
568
568
|
const d = 1 / c.length;
|
|
569
|
-
c.forEach((
|
|
570
|
-
(!
|
|
569
|
+
c.forEach((b) => {
|
|
570
|
+
(!b.style.flex || b.style.flex === "1 1 100%") && (b.style.flex = `${d} ${d} 0px`);
|
|
571
571
|
});
|
|
572
572
|
} else
|
|
573
573
|
c.forEach((d) => {
|
|
@@ -588,45 +588,33 @@ const ke = class ke extends HTMLElement {
|
|
|
588
588
|
re = new WeakMap(), a(ke, "NineTableSheets");
|
|
589
589
|
let we = ke;
|
|
590
590
|
customElements.get("nine-table-sheets") || customElements.define("nine-table-sheets", we);
|
|
591
|
-
var
|
|
592
|
-
const
|
|
593
|
-
constructor(
|
|
594
|
-
u(this,
|
|
591
|
+
var L, G, oe, J, le;
|
|
592
|
+
const Ce = class Ce {
|
|
593
|
+
constructor(i) {
|
|
594
|
+
u(this, L);
|
|
595
595
|
u(this, G, null);
|
|
596
596
|
u(this, oe, /* @__PURE__ */ a(() => {
|
|
597
|
-
const
|
|
598
|
-
|
|
599
|
-
for (let
|
|
600
|
-
|
|
601
|
-
})), e(this, G).observe(
|
|
597
|
+
const i = e(this, L).host;
|
|
598
|
+
i && (p(this, G, new ResizeObserver((t) => {
|
|
599
|
+
for (let s of t)
|
|
600
|
+
i.getAttribute("auto-height") === "true" && e(this, J).call(this, i);
|
|
601
|
+
})), e(this, G).observe(i));
|
|
602
602
|
}, "#observeResize"));
|
|
603
|
-
u(this, J, /* @__PURE__ */ a((
|
|
603
|
+
u(this, J, /* @__PURE__ */ a((i) => {
|
|
604
604
|
var C, R;
|
|
605
|
-
const t = (C =
|
|
605
|
+
const t = (C = i.shadowRoot) == null ? void 0 : C.querySelector("nine-table-sheet.active");
|
|
606
606
|
if (!t) return;
|
|
607
|
-
const
|
|
608
|
-
|
|
609
|
-
const x = e(this,
|
|
610
|
-
x && (x.style.overflowY =
|
|
607
|
+
const s = ((R = t.getRowCount) == null ? void 0 : R.call(t)) || 0, n = parseInt(i.getAttribute("max-display-row"), 10) || 10, o = Math.min(s, n), r = t.querySelector("tbody tr") || t.querySelector("tr"), l = r ? r.getBoundingClientRect().height : 32, g = e(this, L).querySelector("nine-table-header"), c = e(this, L).querySelector("nine-table-sheets-footer"), h = g ? g.getBoundingClientRect().height : 40, d = c ? c.getBoundingClientRect().height : 32, f = h + d + 16, S = o * l + f;
|
|
608
|
+
i.style.height = `${S}px`, i.style.maxHeight = `${n * l + f}px`;
|
|
609
|
+
const x = e(this, L).querySelector("nine-table-sheets-body");
|
|
610
|
+
x && (x.style.overflowY = s > n ? "auto" : "hidden");
|
|
611
611
|
}, "#applyAutoHeight"));
|
|
612
|
-
/**
|
|
613
|
-
* π― μνΈ κ°μμ λ·° μνμ λ§κ² μ€νλ¦¬ν° κ°μμ± μΌκ΄ λκΈ°ν
|
|
614
|
-
*/
|
|
615
|
-
v(this, "updateSplitters", /* @__PURE__ */ a(() => {
|
|
616
|
-
const s = e(this, k).querySelector("nine-table-sheets-body");
|
|
617
|
-
if (!s) return;
|
|
618
|
-
const t = Array.from(s.querySelectorAll("nine-table-sheet")), i = Array.from(s.querySelectorAll("nine-splitter.h")), o = t.filter((r) => r.classList.contains("active")).length > 1;
|
|
619
|
-
i.forEach((r, l) => {
|
|
620
|
-
const b = t[l], c = t[l + 1];
|
|
621
|
-
o && b && c && b.classList.contains("active") && c.classList.contains("active") ? r.style.display = "block" : r.style.display = "none";
|
|
622
|
-
});
|
|
623
|
-
}, "updateSplitters"));
|
|
624
612
|
u(this, le, /* @__PURE__ */ a(() => {
|
|
625
|
-
const
|
|
626
|
-
const
|
|
627
|
-
return
|
|
628
|
-
}).join(""), l =
|
|
629
|
-
e(this,
|
|
613
|
+
const i = e(this, L).host, s = Array.from(i.children).filter((c) => c.tagName === "TABLE"), n = i.getAttribute("auto-height") === "true", o = s.length, r = s.map((c, h) => {
|
|
614
|
+
const b = `<nine-table-sheet class="${h === 0 ? "active" : ""}" data-index="${h}"></nine-table-sheet>`, f = o > 1 && h < o - 1 ? `<nine-splitter class="h" data-split-index="${h}"></nine-splitter>` : "";
|
|
615
|
+
return b + f;
|
|
616
|
+
}).join(""), l = s.map((c, h) => `<div class="nine-tab-item ${h === 0 ? "active" : ""}" data-index="${h}">Sheet ${h + 1}</div>`).join("");
|
|
617
|
+
e(this, L).innerHTML = `
|
|
630
618
|
<style>
|
|
631
619
|
:host {
|
|
632
620
|
display: flex;
|
|
@@ -669,13 +657,18 @@ const Ae = class Ae {
|
|
|
669
657
|
display: block !important;
|
|
670
658
|
}
|
|
671
659
|
|
|
672
|
-
/* π―
|
|
660
|
+
/* π― 1λ¨κ³: κΈ°λ³Έμ μΌλ‘ μ€ν리ν°λ 무쑰건 μ¨κΉ */
|
|
673
661
|
nine-table-sheets-body nine-splitter.h {
|
|
674
662
|
width: 4px;
|
|
675
663
|
background: #e5e7eb;
|
|
676
664
|
cursor: col-resize;
|
|
677
665
|
flex-shrink: 0;
|
|
678
|
-
display:
|
|
666
|
+
display: none;
|
|
667
|
+
}
|
|
668
|
+
|
|
669
|
+
/* π― 2λ¨κ³: μμμ μνΈκ° λ λ€ .active ν΄λμ€λ₯Ό κ°μ§ λλ§ κ·Έ μ¬μ΄μ μ€ν리ν°κ° νμ
λ
ΈμΆ */
|
|
670
|
+
nine-table-sheet.active + nine-splitter.h + nine-table-sheet.active {
|
|
671
|
+
display: block;
|
|
679
672
|
}
|
|
680
673
|
|
|
681
674
|
nine-table-sheets-footer {
|
|
@@ -735,62 +728,62 @@ const Ae = class Ae {
|
|
|
735
728
|
</nine-table-body>
|
|
736
729
|
<nine-table-footer></nine-table-footer>
|
|
737
730
|
`;
|
|
738
|
-
const
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
c.init(
|
|
731
|
+
const g = e(this, L).querySelectorAll("nine-table-sheet");
|
|
732
|
+
g == null || g.forEach((c, h) => {
|
|
733
|
+
s[h] && setTimeout(() => {
|
|
734
|
+
c.init(s[h]), n && e(this, J).call(this, i);
|
|
742
735
|
});
|
|
743
736
|
});
|
|
744
737
|
}, "#render"));
|
|
745
|
-
p(this,
|
|
738
|
+
p(this, L, i), e(this, le).call(this), e(this, oe).call(this);
|
|
746
739
|
}
|
|
747
740
|
};
|
|
748
|
-
|
|
749
|
-
let me =
|
|
750
|
-
var z,
|
|
751
|
-
const
|
|
752
|
-
constructor(
|
|
741
|
+
L = new WeakMap(), G = new WeakMap(), oe = new WeakMap(), J = new WeakMap(), le = new WeakMap(), a(Ce, "LayoutManager");
|
|
742
|
+
let me = Ce;
|
|
743
|
+
var z, V;
|
|
744
|
+
const Ae = class Ae {
|
|
745
|
+
constructor(i) {
|
|
753
746
|
u(this, z);
|
|
754
|
-
u(this,
|
|
747
|
+
u(this, V, -1);
|
|
755
748
|
v(this, "count", /* @__PURE__ */ a(() => e(this, z).rawRecords.length, "count"));
|
|
756
|
-
p(this, z,
|
|
749
|
+
p(this, z, i);
|
|
757
750
|
}
|
|
758
751
|
get at() {
|
|
759
|
-
return e(this,
|
|
752
|
+
return e(this, V);
|
|
760
753
|
}
|
|
761
|
-
set at(
|
|
762
|
-
var
|
|
763
|
-
p(this,
|
|
764
|
-
const t = ((n = (
|
|
765
|
-
t && !t.querySelector(`tbody.bindable tr[data-row="${e(this,
|
|
754
|
+
set at(i) {
|
|
755
|
+
var s, n;
|
|
756
|
+
p(this, V, parseInt(i, 10));
|
|
757
|
+
const t = ((n = (s = e(this, z).owner).querySelector) == null ? void 0 : n.call(s, ".ng-container-body")) || e(this, z).owner.body;
|
|
758
|
+
t && !t.querySelector(`tbody.bindable tr[data-row="${e(this, V)}"]`) && setTimeout(() => {
|
|
766
759
|
var o, r;
|
|
767
|
-
(r = (o = e(this, z).owner).scrollTo_V1) == null || r.call(o, e(this,
|
|
760
|
+
(r = (o = e(this, z).owner).scrollTo_V1) == null || r.call(o, e(this, V));
|
|
768
761
|
});
|
|
769
762
|
}
|
|
770
763
|
};
|
|
771
|
-
z = new WeakMap(),
|
|
772
|
-
let ve =
|
|
773
|
-
var E, m,
|
|
764
|
+
z = new WeakMap(), V = new WeakMap(), a(Ae, "ngRow");
|
|
765
|
+
let ve = Ae;
|
|
766
|
+
var E, m, k, U, ae, W, ce, Q, he, de, K;
|
|
774
767
|
const T = class T {
|
|
775
|
-
constructor(
|
|
768
|
+
constructor(i, t) {
|
|
776
769
|
u(this, E);
|
|
777
770
|
u(this, m);
|
|
778
|
-
u(this,
|
|
771
|
+
u(this, k, []);
|
|
779
772
|
u(this, U, []);
|
|
780
773
|
u(this, ae, 0);
|
|
781
774
|
u(this, W, []);
|
|
782
775
|
u(this, ce, /* @__PURE__ */ a(() => {
|
|
783
776
|
p(this, W, []);
|
|
784
|
-
const
|
|
785
|
-
Array.from(
|
|
786
|
-
var
|
|
787
|
-
e(this, W).push(((
|
|
777
|
+
const i = e(this, E).template || [];
|
|
778
|
+
Array.from(i).forEach((t) => {
|
|
779
|
+
var s;
|
|
780
|
+
e(this, W).push(((s = t.getBoundingClientRect) == null ? void 0 : s.call(t).height) || 24);
|
|
788
781
|
}), (e(this, m).rawRecords || []).forEach((t) => {
|
|
789
782
|
t.__ng || (t.__ng = e(this, Q).call(this)), t.__ng.height = e(this, W).slice();
|
|
790
783
|
});
|
|
791
784
|
}, "#initialize"));
|
|
792
|
-
v(this, "set", /* @__PURE__ */ a((
|
|
793
|
-
this.clear(), this.add(
|
|
785
|
+
v(this, "set", /* @__PURE__ */ a((i) => {
|
|
786
|
+
this.clear(), this.add(i, !1);
|
|
794
787
|
}, "set"));
|
|
795
788
|
u(this, Q, /* @__PURE__ */ a(() => ({
|
|
796
789
|
rowState: T.ROW_STATE.EMPTY,
|
|
@@ -802,105 +795,105 @@ const T = class T {
|
|
|
802
795
|
_: [0, 0, 0, 0, T.ROW_STATE.EMPTY, !1, !1, !0, !1, !0, !0, !1, e(this, W).slice(), -1, {}, {}]
|
|
803
796
|
}), "#getDefaultMeta"));
|
|
804
797
|
v(this, "reset", /* @__PURE__ */ a(() => {
|
|
805
|
-
p(this,
|
|
798
|
+
p(this, k, []), p(this, U, []);
|
|
806
799
|
}, "reset"));
|
|
807
800
|
v(this, "clear", /* @__PURE__ */ a(() => {
|
|
808
|
-
var
|
|
809
|
-
e(this, m).rawRecords = [], p(this,
|
|
801
|
+
var i;
|
|
802
|
+
e(this, m).rawRecords = [], p(this, k, []), p(this, U, []), (i = e(this, m).viewRecords) != null && i.reset && e(this, m).viewRecords.reset();
|
|
810
803
|
}, "clear"));
|
|
811
|
-
u(this, he, /* @__PURE__ */ a((
|
|
804
|
+
u(this, he, /* @__PURE__ */ a((i) => {
|
|
812
805
|
var n;
|
|
813
|
-
Array.isArray(
|
|
814
|
-
const t = typeof ((n = e(this, E).fields) == null ? void 0 : n.get) == "function" ? e(this, E).fields.get() : Object.keys(
|
|
815
|
-
return
|
|
806
|
+
Array.isArray(i) || (i = [i]);
|
|
807
|
+
const t = typeof ((n = e(this, E).fields) == null ? void 0 : n.get) == "function" ? e(this, E).fields.get() : Object.keys(i[0] || {}), s = [];
|
|
808
|
+
return i.forEach((o) => {
|
|
816
809
|
const r = { v: [] };
|
|
817
810
|
t.forEach((l) => {
|
|
818
811
|
r.v.push(o[l] !== void 0 && o[l] !== null ? o[l] : "");
|
|
819
|
-
}),
|
|
820
|
-
}),
|
|
812
|
+
}), s.push(r);
|
|
813
|
+
}), s;
|
|
821
814
|
}, "#json2Array"));
|
|
822
|
-
u(this, de, /* @__PURE__ */ a((
|
|
815
|
+
u(this, de, /* @__PURE__ */ a((i) => (Array.isArray(i) || (i = [i]), i.forEach((t) => {
|
|
823
816
|
t.__ng = e(this, Q).call(this), t.__ng.rowid = this.nextId, t.__ng.rowState = T.ROW_STATE.INSERT, t.__ng._[0] = t.__ng.rowid;
|
|
824
|
-
}),
|
|
825
|
-
v(this, "add", /* @__PURE__ */ a((
|
|
817
|
+
}), i), "#defaultInsert"));
|
|
818
|
+
v(this, "add", /* @__PURE__ */ a((i, t = !0) => {
|
|
826
819
|
var o;
|
|
827
|
-
|
|
828
|
-
const
|
|
829
|
-
e(this, m).rawRecords = e(this, m).rawRecords.concat(e(this, de).call(this,
|
|
820
|
+
i === void 0 && (i = {});
|
|
821
|
+
const s = e(this, he).call(this, i);
|
|
822
|
+
e(this, m).rawRecords = e(this, m).rawRecords.concat(e(this, de).call(this, s)), this.resetRecords();
|
|
830
823
|
const n = this.count() - 1;
|
|
831
|
-
return t ||
|
|
832
|
-
const
|
|
833
|
-
|
|
824
|
+
return t || s.forEach((r, l) => {
|
|
825
|
+
const g = e(this, m).rawRecords[n - l];
|
|
826
|
+
g && (g.__ng.rowState = T.ROW_STATE.EMPTY);
|
|
834
827
|
}), (o = e(this, m).viewRecords) != null && o.reset && e(this, m).viewRecords.reset(), n;
|
|
835
828
|
}, "add"));
|
|
836
|
-
v(this, "delete", /* @__PURE__ */ a((
|
|
837
|
-
var
|
|
829
|
+
v(this, "delete", /* @__PURE__ */ a((i) => {
|
|
830
|
+
var s;
|
|
838
831
|
let t = [];
|
|
839
|
-
Array.isArray(
|
|
840
|
-
if (e(this,
|
|
841
|
-
const o = e(this,
|
|
842
|
-
e(this,
|
|
832
|
+
Array.isArray(i) ? t = i : typeof i > "u" ? t = [e(this, m).owner.row.at] : t = [parseInt(i, 10)], t.sort((n, o) => o - n).forEach((n) => {
|
|
833
|
+
if (e(this, k)[n]) {
|
|
834
|
+
const o = e(this, k)[n].__ng.rowid;
|
|
835
|
+
e(this, k)[n].__ng.rowState === T.ROW_STATE.INSERT ? e(this, m).rawRecords = e(this, m).rawRecords.filter((r) => r.__ng.rowid !== o) : e(this, m).rawRecords.forEach((r) => {
|
|
843
836
|
r.__ng.rowid === o && (r.__ng.deleted = !0, r.__ng.rowState = T.ROW_STATE.DELETE);
|
|
844
837
|
});
|
|
845
838
|
}
|
|
846
|
-
}), this.resetRecords(), (
|
|
839
|
+
}), this.resetRecords(), (s = e(this, m).viewRecords) != null && s.reset && e(this, m).viewRecords.reset();
|
|
847
840
|
}, "delete"));
|
|
848
|
-
v(this, "setValue", /* @__PURE__ */ a((
|
|
849
|
-
var
|
|
850
|
-
|
|
851
|
-
const o = (typeof ((
|
|
841
|
+
v(this, "setValue", /* @__PURE__ */ a((i, t, s) => {
|
|
842
|
+
var g;
|
|
843
|
+
i = parseInt(i, 10);
|
|
844
|
+
const o = (typeof ((g = e(this, E).fields) == null ? void 0 : g.get) == "function" ? e(this, E).fields.get() : []).indexOf(t);
|
|
852
845
|
if (o < 0) return;
|
|
853
|
-
const r = this.getValidData()[
|
|
846
|
+
const r = this.getValidData()[i];
|
|
854
847
|
if (!r) return;
|
|
855
848
|
const l = r.v[o];
|
|
856
|
-
l !==
|
|
849
|
+
l !== s && r.__ng.rowState !== T.ROW_STATE.INSERT && (r.__ng.o.hasOwnProperty(t) || (r.__ng.o[t] = l), r.__ng.rowState = T.ROW_STATE.UPDATE), r.v[o] = s, e(this, m).owner.refreshData && e(this, m).owner.refreshData(i);
|
|
857
850
|
}, "setValue"));
|
|
858
851
|
v(this, "resetRecords", /* @__PURE__ */ a(() => {
|
|
859
|
-
p(this, U, e(this, m).rawRecords.filter((
|
|
860
|
-
|
|
861
|
-
}), e(this,
|
|
862
|
-
|
|
852
|
+
p(this, U, e(this, m).rawRecords.filter((i) => !i.__ng.deleted)), p(this, k, e(this, m).rawRecords.filter((i) => !i.__ng.deleted && !i.__ng.filtered)), e(this, m).rawRecords.forEach((i, t) => {
|
|
853
|
+
i.__ng.rowidx = t;
|
|
854
|
+
}), e(this, k).forEach((i, t) => {
|
|
855
|
+
i.__ng.i = t;
|
|
863
856
|
});
|
|
864
857
|
}, "resetRecords"));
|
|
865
|
-
v(this, "getValidData", /* @__PURE__ */ a(() => (e(this,
|
|
866
|
-
u(this, K, /* @__PURE__ */ a((
|
|
867
|
-
var
|
|
868
|
-
if (!
|
|
869
|
-
const t = typeof ((
|
|
870
|
-
return Array.isArray(
|
|
858
|
+
v(this, "getValidData", /* @__PURE__ */ a(() => (e(this, k).length === 0 && e(this, m).rawRecords.length > 0 && this.resetRecords(), e(this, k)), "getValidData"));
|
|
859
|
+
u(this, K, /* @__PURE__ */ a((i) => {
|
|
860
|
+
var s;
|
|
861
|
+
if (!i) return i;
|
|
862
|
+
const t = typeof ((s = e(this, E).fields) == null ? void 0 : s.get) == "function" ? e(this, E).fields.get() : [];
|
|
863
|
+
return Array.isArray(i) ? i.filter((n) => !n.__ng.deleted).map((n) => {
|
|
871
864
|
const o = {};
|
|
872
865
|
return t.forEach((r, l) => {
|
|
873
866
|
o[r] = n.v ? n.v[l] : n[r];
|
|
874
867
|
}), o.__ng = n.__ng, o;
|
|
875
|
-
}) :
|
|
868
|
+
}) : i;
|
|
876
869
|
}, "#conv2"));
|
|
877
870
|
v(this, "count", /* @__PURE__ */ a(() => this.getValidData().length, "count"));
|
|
878
|
-
v(this, "get", /* @__PURE__ */ a((
|
|
871
|
+
v(this, "get", /* @__PURE__ */ a((i, t) => {
|
|
879
872
|
var o;
|
|
880
|
-
const
|
|
881
|
-
if (!
|
|
882
|
-
if (
|
|
883
|
-
if (
|
|
873
|
+
const s = this.getValidData();
|
|
874
|
+
if (!s || s.length <= 0) return;
|
|
875
|
+
if (i == null) return e(this, K).call(this, s);
|
|
876
|
+
if (i < 0 || i >= s.length) return null;
|
|
884
877
|
const n = typeof ((o = e(this, E).fields) == null ? void 0 : o.get) == "function" ? e(this, E).fields.get() : [];
|
|
885
878
|
if (t != null) {
|
|
886
879
|
const r = n.indexOf(t);
|
|
887
|
-
return r >= 0 ? i
|
|
880
|
+
return r >= 0 ? s[i].v[r] : null;
|
|
888
881
|
}
|
|
889
|
-
return e(this, K).call(this, i
|
|
882
|
+
return e(this, K).call(this, s[i]);
|
|
890
883
|
}, "get"));
|
|
891
|
-
p(this, E,
|
|
884
|
+
p(this, E, i), p(this, m, t), e(this, ce).call(this);
|
|
892
885
|
}
|
|
893
886
|
get source() {
|
|
894
887
|
return e(this, K).call(this, e(this, m).rawRecords);
|
|
895
888
|
}
|
|
896
|
-
set source(
|
|
897
|
-
this.clear(), this.add(
|
|
889
|
+
set source(i) {
|
|
890
|
+
this.clear(), this.add(i, !1);
|
|
898
891
|
}
|
|
899
892
|
get nextId() {
|
|
900
893
|
return ++He(this, ae)._;
|
|
901
894
|
}
|
|
902
895
|
};
|
|
903
|
-
E = new WeakMap(), m = new WeakMap(),
|
|
896
|
+
E = new WeakMap(), m = new WeakMap(), k = new WeakMap(), U = new WeakMap(), ae = new WeakMap(), W = new WeakMap(), ce = new WeakMap(), Q = new WeakMap(), he = new WeakMap(), de = new WeakMap(), K = new WeakMap(), a(T, "ngData"), // π― ν μν μ μ μμλ₯Ό ν΄λμ€ λ΄λΆλ‘ λ΄μ¬ν
|
|
904
897
|
v(T, "ROW_STATE", {
|
|
905
898
|
EMPTY: "EMPTY",
|
|
906
899
|
NORMAL: "NORMAL",
|
|
@@ -910,21 +903,21 @@ v(T, "ROW_STATE", {
|
|
|
910
903
|
});
|
|
911
904
|
let xe = T;
|
|
912
905
|
const Le = class Le {
|
|
913
|
-
constructor(
|
|
914
|
-
this.owner =
|
|
906
|
+
constructor(i) {
|
|
907
|
+
this.owner = i, this.row = new ve(this), this.data = new xe(i, this), this.rawRecords = [], this.viewRecords = [], this.delRecords = [], this.pageCnt = 25, this.viewRecords.reset = () => {
|
|
915
908
|
var t;
|
|
916
909
|
(t = this.owner.view) != null && t.redraw && this.owner.view.redraw();
|
|
917
910
|
}, this.setDataSource = (t) => {
|
|
918
911
|
this.data && this.data.reset(), this.rawRecords = [], this.viewRecords = [], this.delRecords = [], this.data.set(t || []);
|
|
919
912
|
}, this.getRowState = (t) => {
|
|
920
913
|
var n, o;
|
|
921
|
-
const
|
|
922
|
-
if (!(
|
|
923
|
-
return (o = (n = this.data.getValidData()[
|
|
914
|
+
const s = parseInt(t, 10);
|
|
915
|
+
if (!(s >= this.data.count()))
|
|
916
|
+
return (o = (n = this.data.getValidData()[s]) == null ? void 0 : n.__ng) == null ? void 0 : o.rowState;
|
|
924
917
|
}, this.getRowPosition = () => this.row.at, this.setRowPosition = (t) => {
|
|
925
918
|
this.row.at = t;
|
|
926
|
-
}, this.scrollTo_V1 = (t) => (t < 0 && (t = 0), t >= this.rawRecords.length && (t = this.rawRecords.length - 1), this.viewRecords.rawIndex = t, this.viewRecords.reset && this.viewRecords.reset(), !(t <= 0 || t >= this.rawRecords.length - 1)), this.getColumn = (t,
|
|
927
|
-
t = parseInt(t, 10), this.data.setValue(t,
|
|
919
|
+
}, this.scrollTo_V1 = (t) => (t < 0 && (t = 0), t >= this.rawRecords.length && (t = this.rawRecords.length - 1), this.viewRecords.rawIndex = t, this.viewRecords.reset && this.viewRecords.reset(), !(t <= 0 || t >= this.rawRecords.length - 1)), this.getColumn = (t, s) => this.data.get(t, s), this.setColumn = (t, s, n) => {
|
|
920
|
+
t = parseInt(t, 10), this.data.setValue(t, s, n);
|
|
928
921
|
}, this.setDataSource([]);
|
|
929
922
|
}
|
|
930
923
|
};
|