@m4l/gclick 0.4.3 → 0.4.4
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/components/ReportsViewer/helpers/parseDataGridSection/index.d.ts.map +1 -1
- package/components/ReportsViewer/helpers/parseDataGridSection/index.js +52 -42
- package/components/ReportsViewer/helpers/parseTreeDataGridSection/index.d.ts.map +1 -1
- package/components/ReportsViewer/helpers/parseTreeDataGridSection/index.js +46 -43
- package/components/ReportsViewer/types.d.ts +3 -1
- package/components/ReportsViewer/types.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../packages/gclick/src/components/ReportsViewer/helpers/parseDataGridSection/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAwB,qBAAqB,EAAE,MAAM,aAAa,CAAC;AAC3F,OAAO,EAAE,MAAM,EAAE,MAAM,EAA0C,MAAM,iBAAiB,CAAC;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../packages/gclick/src/components/ReportsViewer/helpers/parseDataGridSection/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAwB,qBAAqB,EAAE,MAAM,aAAa,CAAC;AAC3F,OAAO,EAAE,MAAM,EAAE,MAAM,EAA0C,MAAM,iBAAiB,CAAC;AA4BzF;;;;GAIG;AACH,wBAAgB,oBAAoB,CAClC,OAAO,EAAE,eAAe,EACxB,eAAe,CAAC,EAAE,CAAC,OAAO,EAAE,qBAAqB,KAAK,IAAI,GACzD;IACD,OAAO,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC,EAAE,CAAC;IAC3C,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,EAAE,CAAC;IAChC,YAAY,EAAE,CAAC,GAAG,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,KAAK,MAAM,CAAC;CACxD,CAsEA"}
|
|
@@ -1,48 +1,58 @@
|
|
|
1
|
-
import { useColumnBoolean as
|
|
2
|
-
import { parseTypeToColumnType as
|
|
3
|
-
import {
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
for (const [s, r] of Object.entries(a))
|
|
8
|
-
r && typeof r == "object" && "mapPoint" in r && r.mapPoint && t.add(s);
|
|
9
|
-
return t;
|
|
1
|
+
import { useColumnBoolean as y, useColumnNestedValue as w } from "@m4l/components";
|
|
2
|
+
import { parseTypeToColumnType as P } from "../parseTypeToColumnType/index.js";
|
|
3
|
+
import { transformRow as h, MAP_POINTS_KEY as f } from "../transformRow/index.js";
|
|
4
|
+
import { wrapFormatterWithMapPointLink as T } from "../wrapFormatterWithMapPointLink/index.js";
|
|
5
|
+
function p(r) {
|
|
6
|
+
return r.replace(/\.v$/, "");
|
|
10
7
|
}
|
|
11
|
-
function V(
|
|
12
|
-
const
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
},
|
|
24
|
-
i,
|
|
25
|
-
t
|
|
26
|
-
)
|
|
27
|
-
} : {};
|
|
28
|
-
return {
|
|
29
|
-
key: e.name,
|
|
30
|
-
name: e.title,
|
|
31
|
-
width: e.width,
|
|
32
|
-
type: w(e.dataType),
|
|
33
|
-
align: e.align,
|
|
34
|
-
resizable: !0,
|
|
35
|
-
sortable: !0,
|
|
36
|
-
...m,
|
|
37
|
-
...u
|
|
38
|
-
};
|
|
39
|
-
}), r = (e) => e.id ?? 0;
|
|
8
|
+
function V(r) {
|
|
9
|
+
const o = /* @__PURE__ */ new Set();
|
|
10
|
+
for (const n of r) {
|
|
11
|
+
const s = n[f];
|
|
12
|
+
if (s)
|
|
13
|
+
for (const m of Object.keys(s))
|
|
14
|
+
o.add(m);
|
|
15
|
+
}
|
|
16
|
+
return o;
|
|
17
|
+
}
|
|
18
|
+
function G(r, o) {
|
|
19
|
+
const n = r.rows.map(h), s = o ? V(n) : /* @__PURE__ */ new Set();
|
|
40
20
|
return {
|
|
41
|
-
columns:
|
|
42
|
-
|
|
43
|
-
|
|
21
|
+
columns: r.columns.map((t) => {
|
|
22
|
+
const e = p(t.name), l = s.has(e), d = t.formatterProps?.fieldValue ? p(t.formatterProps.fieldValue) : e, a = t.formatterProps ? y({
|
|
23
|
+
presentationType: t.formatterProps.presentationType,
|
|
24
|
+
fieldValue: d
|
|
25
|
+
}) : w({ fieldValue: e }), c = l && o && "formatter" in a ? {
|
|
26
|
+
formatter: T(
|
|
27
|
+
a.formatter,
|
|
28
|
+
(i) => {
|
|
29
|
+
const u = i[f]?.[e];
|
|
30
|
+
if (u)
|
|
31
|
+
return { mapPoint: u, displayValue: i[e] };
|
|
32
|
+
},
|
|
33
|
+
e,
|
|
34
|
+
o
|
|
35
|
+
)
|
|
36
|
+
} : {};
|
|
37
|
+
return {
|
|
38
|
+
key: e,
|
|
39
|
+
name: t.title,
|
|
40
|
+
width: t.width,
|
|
41
|
+
type: P(t.dataType),
|
|
42
|
+
align: t.align,
|
|
43
|
+
resizable: !0,
|
|
44
|
+
sortable: !0,
|
|
45
|
+
...a,
|
|
46
|
+
...c
|
|
47
|
+
};
|
|
48
|
+
}),
|
|
49
|
+
rows: n,
|
|
50
|
+
rowKeyGetter: (t) => {
|
|
51
|
+
const e = t.id;
|
|
52
|
+
return typeof e == "number" || typeof e == "string" ? e : 0;
|
|
53
|
+
}
|
|
44
54
|
};
|
|
45
55
|
}
|
|
46
56
|
export {
|
|
47
|
-
|
|
57
|
+
G as parseDataGridSection
|
|
48
58
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../packages/gclick/src/components/ReportsViewer/helpers/parseTreeDataGridSection/index.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,mBAAmB,EAAwB,qBAAqB,EAAE,MAAM,aAAa,CAAC;AAC/F,OAAO,EAAE,MAAM,EAAE,MAAM,EAA0C,MAAM,iBAAiB,CAAC;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../packages/gclick/src/components/ReportsViewer/helpers/parseTreeDataGridSection/index.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,mBAAmB,EAAwB,qBAAqB,EAAE,MAAM,aAAa,CAAC;AAC/F,OAAO,EAAE,MAAM,EAAE,MAAM,EAA0C,MAAM,iBAAiB,CAAC;AAiCzF;;;;GAIG;AACH,wBAAgB,wBAAwB,CACtC,OAAO,EAAE,mBAAmB,EAC5B,eAAe,CAAC,EAAE,CAAC,OAAO,EAAE,qBAAqB,KAAK,IAAI,GACzD;IACD,OAAO,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC,EAAE,CAAC;IAC3C,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,EAAE,CAAC;IAChC,YAAY,EAAE,CAAC,GAAG,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,KAAK,MAAM,CAAC;IACvD,gBAAgB,EAAE,GAAG,CAAC,OAAO,CAAC,CAAC;CAChC,CA6GA"}
|
|
@@ -1,46 +1,49 @@
|
|
|
1
|
-
import { useColumnBoolean as
|
|
2
|
-
import { calculateExpandedGroupIds as
|
|
3
|
-
import { parseTypeToColumnType as
|
|
4
|
-
import { flattenAndTransformRows as
|
|
5
|
-
import { processAllGroupTotals as
|
|
1
|
+
import { useColumnBoolean as g, useColumnNestedValue as b } from "@m4l/components";
|
|
2
|
+
import { calculateExpandedGroupIds as C } from "../calculateExpandedGroupIds/index.js";
|
|
3
|
+
import { parseTypeToColumnType as M } from "../parseTypeToColumnType/index.js";
|
|
4
|
+
import { flattenAndTransformRows as V } from "../flattenAndTransformRows/index.js";
|
|
5
|
+
import { processAllGroupTotals as S } from "../processGroupTotals/index.js";
|
|
6
6
|
import { MAP_POINTS_KEY as f } from "../transformRow/index.js";
|
|
7
|
-
import { wrapFormatterWithMapPointLink as
|
|
8
|
-
import { GroupCellWithTotal as
|
|
9
|
-
function
|
|
7
|
+
import { wrapFormatterWithMapPointLink as W } from "../wrapFormatterWithMapPointLink/index.js";
|
|
8
|
+
import { GroupCellWithTotal as v } from "../../subcomponents/GroupCellWithTotal/GroupCellWithTotal.js";
|
|
9
|
+
function l(t) {
|
|
10
|
+
return t.replace(/\.v$/, "");
|
|
11
|
+
}
|
|
12
|
+
function I(t) {
|
|
10
13
|
const o = /* @__PURE__ */ new Set();
|
|
11
|
-
for (const
|
|
12
|
-
const
|
|
13
|
-
if (
|
|
14
|
-
for (const
|
|
15
|
-
o.add(
|
|
14
|
+
for (const n of t) {
|
|
15
|
+
const a = n[f];
|
|
16
|
+
if (a)
|
|
17
|
+
for (const s of Object.keys(a))
|
|
18
|
+
o.add(s);
|
|
16
19
|
}
|
|
17
20
|
return o;
|
|
18
21
|
}
|
|
19
|
-
function
|
|
20
|
-
const
|
|
21
|
-
|
|
22
|
-
const
|
|
23
|
-
const r = (t.columnsGroup?.includes(e.name) ?? !1) ||
|
|
24
|
-
presentationType:
|
|
25
|
-
fieldValue:
|
|
26
|
-
}) :
|
|
27
|
-
formatter:
|
|
22
|
+
function R(t, o) {
|
|
23
|
+
const n = /* @__PURE__ */ new Set(), a = /* @__PURE__ */ new Map();
|
|
24
|
+
S(t, n, a);
|
|
25
|
+
const s = V(t.group?.children, t.columnsGroup), d = o ? I(s) : /* @__PURE__ */ new Set(), m = t.columns.map((r) => {
|
|
26
|
+
const e = l(r.name), h = r.formatterProps?.fieldValue ? l(r.formatterProps.fieldValue) : e, T = (t.columnsGroup?.includes(e) ?? !1) || (t.columnsGroup?.includes(r.name) ?? !1) || r.grouped, P = n.has(e) || n.has(r.name), w = d.has(e), p = r.formatterProps ? g({
|
|
27
|
+
presentationType: r.formatterProps.presentationType,
|
|
28
|
+
fieldValue: h
|
|
29
|
+
}) : b({ fieldValue: e }), G = w && o && "formatter" in p ? {
|
|
30
|
+
formatter: W(
|
|
28
31
|
p.formatter,
|
|
29
|
-
(
|
|
30
|
-
const i =
|
|
32
|
+
(u) => {
|
|
33
|
+
const i = u[f]?.[e];
|
|
31
34
|
if (i)
|
|
32
|
-
return { mapPoint: i, displayValue:
|
|
35
|
+
return { mapPoint: i, displayValue: u[e] };
|
|
33
36
|
},
|
|
34
|
-
e
|
|
37
|
+
e,
|
|
35
38
|
o
|
|
36
39
|
)
|
|
37
40
|
} : {};
|
|
38
41
|
return {
|
|
39
|
-
key: e
|
|
40
|
-
name:
|
|
41
|
-
width:
|
|
42
|
-
type:
|
|
43
|
-
align:
|
|
42
|
+
key: e,
|
|
43
|
+
name: r.title,
|
|
44
|
+
width: r.width,
|
|
45
|
+
type: M(r.dataType),
|
|
46
|
+
align: r.align,
|
|
44
47
|
resizable: !0,
|
|
45
48
|
sortable: !0,
|
|
46
49
|
// Spread nestedColumn (formatter, renderGroupCell, customFilter, customSort)
|
|
@@ -49,24 +52,24 @@ function E(t, o) {
|
|
|
49
52
|
// 1. Columns with totals → GroupCellWithTotal
|
|
50
53
|
// 2. Boolean columns (formatterProps) → keep ColumnBooleanGroupFormatter from nestedColumn
|
|
51
54
|
// 3. Plain columns → undefined (default grid behavior, no representative value in group rows)
|
|
52
|
-
renderGroupCell:
|
|
55
|
+
renderGroupCell: P ? (u) => v({ ...u, groupTotalsMap: a }) : r.formatterProps ? p.renderGroupCell : void 0,
|
|
53
56
|
// Override formatter for columns with mapPoints (per-cell conditional link)
|
|
54
|
-
...
|
|
57
|
+
...G,
|
|
55
58
|
// Mark grouping columns
|
|
56
|
-
groupable:
|
|
57
|
-
grouped:
|
|
59
|
+
groupable: r.groupable ?? !1,
|
|
60
|
+
grouped: T
|
|
58
61
|
};
|
|
59
|
-
}),
|
|
60
|
-
const
|
|
61
|
-
return
|
|
62
|
-
}, y =
|
|
62
|
+
}), c = (r) => {
|
|
63
|
+
const e = r.id;
|
|
64
|
+
return e && typeof e == "object" && "r" in e ? e.r : typeof e == "number" || typeof e == "string" ? e : Math.random();
|
|
65
|
+
}, y = C(m, s);
|
|
63
66
|
return {
|
|
64
|
-
columns:
|
|
65
|
-
rows:
|
|
66
|
-
rowKeyGetter:
|
|
67
|
+
columns: m,
|
|
68
|
+
rows: s,
|
|
69
|
+
rowKeyGetter: c,
|
|
67
70
|
expandedGroupIds: y
|
|
68
71
|
};
|
|
69
72
|
}
|
|
70
73
|
export {
|
|
71
|
-
|
|
74
|
+
R as parseTreeDataGridSection
|
|
72
75
|
};
|
|
@@ -54,7 +54,8 @@ export interface DataGridCell {
|
|
|
54
54
|
*/
|
|
55
55
|
export interface DataGridColumn {
|
|
56
56
|
/**
|
|
57
|
-
*
|
|
57
|
+
* Base property key in the row object.
|
|
58
|
+
* Legacy `.v` suffix paths are still accepted for backward compatibility.
|
|
58
59
|
*/
|
|
59
60
|
name: string;
|
|
60
61
|
/**
|
|
@@ -79,6 +80,7 @@ export interface DataGridColumn {
|
|
|
79
80
|
dataType: 'decimal' | 'integer' | 'string' | 'date' | 'time' | 'date_time' | 'boolean';
|
|
80
81
|
/**
|
|
81
82
|
* Additional formatter configuration.
|
|
83
|
+
* fieldValue should use the base row key; legacy `.v` suffix paths are still accepted.
|
|
82
84
|
*/
|
|
83
85
|
formatterProps?: {
|
|
84
86
|
presentationType: PresentationType;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../../../packages/gclick/src/components/ReportsViewer/types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,MAAM,sBAAsB,CAAC;AAC7C,OAAO,EAAE,gBAAgB,EAAE,KAAK,EAAE,MAAM,aAAa,CAAC;AACtD,OAAO,EAAE,4BAA4B,EAAE,MAAM,aAAa,CAAC;AAC3D,OAAO,EAAE,kBAAkB,EAAE,MAAM,2BAA2B,CAAC;AAC/D,OAAO,EAAE,gBAAgB,EAAE,MAAM,iBAAiB,CAAC;AACnD,OAAO,EAAE,sBAAsB,EAAE,MAAM,iBAAiB,CAAC;AAEzD;;;GAGG;AACH,MAAM,MAAM,WAAW,GACnB,UAAU,GACV,gBAAgB,GAChB,cAAc,GACd,UAAU,GACV,aAAa,GACb,WAAW,GACX,KAAK,CAAC;AAEV;;;;GAIG;AACH,MAAM,WAAW,oBAAoB;IACnC;;OAEG;IACH,WAAW,EAAE,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;IAC9B;;OAEG;IACH,KAAK,CAAC,EAAE,MAAM,CAAC;IACf;;OAEG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB;;OAEG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB;AAED;;GAEG;AACH,MAAM,WAAW,YAAY;IAC3B;;OAEG;IACH,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC;IACpB;;OAEG;IACH,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,OAAO,GAAG,IAAI,CAAC;IACpC;;;OAGG;IACH,QAAQ,CAAC,EAAE,oBAAoB,CAAC;CACjC;AAED;;GAEG;AACH,MAAM,WAAW,cAAc;IAC7B
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../../../packages/gclick/src/components/ReportsViewer/types.ts"],"names":[],"mappings":"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"}
|