@gooddata/sdk-ui-geo 11.57.0-alpha.5 → 11.57.0-alpha.6
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/esm/next/layers/common/resolveReferencesFromGeoFeature.d.ts +1 -1
- package/esm/next/layers/common/resolveReferencesFromGeoFeature.d.ts.map +1 -1
- package/esm/next/layers/common/resolveReferencesFromGeoFeature.js +8 -4
- package/esm/next/layers/common/tooltipReferenceMaps.d.ts +3 -0
- package/esm/next/layers/common/tooltipReferenceMaps.d.ts.map +1 -1
- package/esm/next/layers/common/tooltipReferenceMaps.js +10 -2
- package/esm/next/layers/registry/adapterTypes.d.ts +7 -0
- package/esm/next/layers/registry/adapterTypes.d.ts.map +1 -1
- package/package.json +14 -14
|
@@ -6,7 +6,7 @@ import { type ITooltipReferenceMaps } from "../registry/adapterTypes.js";
|
|
|
6
6
|
*
|
|
7
7
|
* Walks the standard tooltip payload slots in default-tooltip render order
|
|
8
8
|
* (`locationName → size → color → measures[] → segment → tooltipText`) and
|
|
9
|
-
* registers values keyed by `metric/<ldmId>` and `
|
|
9
|
+
* registers values keyed by `metric/<ldmId>`, `label/<id>` and `computed_attribute/<id>`. The first slot
|
|
10
10
|
* that contributes a key wins — this matches the order users see in the
|
|
11
11
|
* default tooltip, so a `{metric/foo}` reference in markdown resolves to the
|
|
12
12
|
* same value the user can already see above it.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"resolveReferencesFromGeoFeature.d.ts","sourceRoot":"","sources":["../../../../src/next/layers/common/resolveReferencesFromGeoFeature.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,KAAK,WAAW,EAAE,MAAM,qBAAqB,CAAC;AACvD,OAAO,EACH,KAAK,wBAAwB,
|
|
1
|
+
{"version":3,"file":"resolveReferencesFromGeoFeature.d.ts","sourceRoot":"","sources":["../../../../src/next/layers/common/resolveReferencesFromGeoFeature.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,KAAK,WAAW,EAAE,MAAM,qBAAqB,CAAC;AACvD,OAAO,EACH,KAAK,wBAAwB,EAMhC,MAAM,8BAA8B,CAAC;AAEtC,OAAO,EAAE,KAAK,qBAAqB,EAAE,MAAM,6BAA6B,CAAC;AAIzE;;;;;;;;;;;;;;;GAeG;AACH,wBAAgB,+BAA+B,CAC3C,UAAU,EAAE,OAAO,CAAC,iBAAiB,EACrC,aAAa,EAAE,qBAAqB,GAAG,SAAS,EAChD,UAAU,EAAE,WAAW,GAAG,SAAS,GACpC,wBAAwB,CAwE1B"}
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
// (C) 2026 GoodData Corporation
|
|
2
|
-
import { labelKey, labelReference, measureReference, metricKey, } from "@gooddata/sdk-ui-vis-commons";
|
|
2
|
+
import { computedAttributeKey, labelKey, labelReference, measureReference, metricKey, } from "@gooddata/sdk-ui-vis-commons";
|
|
3
3
|
import { getTooltipProperties, parseTooltipPayload } from "./tooltipUtils.js";
|
|
4
4
|
/**
|
|
5
5
|
* Builds the resolver lookup table for a hovered GeoJSON feature.
|
|
6
6
|
*
|
|
7
7
|
* Walks the standard tooltip payload slots in default-tooltip render order
|
|
8
8
|
* (`locationName → size → color → measures[] → segment → tooltipText`) and
|
|
9
|
-
* registers values keyed by `metric/<ldmId>` and `
|
|
9
|
+
* registers values keyed by `metric/<ldmId>`, `label/<id>` and `computed_attribute/<id>`. The first slot
|
|
10
10
|
* that contributes a key wins — this matches the order users see in the
|
|
11
11
|
* default tooltip, so a `{metric/foo}` reference in markdown resolves to the
|
|
12
12
|
* same value the user can already see above it.
|
|
@@ -25,12 +25,16 @@ export function resolveReferencesFromGeoFeature(properties, referenceMaps, separ
|
|
|
25
25
|
const props = getTooltipProperties(properties);
|
|
26
26
|
const measureLdmByLocalId = referenceMaps?.measures ?? {};
|
|
27
27
|
const attributeIdByDisplayFormId = referenceMaps?.attributes ?? {};
|
|
28
|
+
const computedAttributeIds = new Set(referenceMaps?.computedAttributeIds ?? []);
|
|
28
29
|
const registerAttribute = (payload) => {
|
|
29
30
|
if (!payload?.attrId || payload.value === undefined) {
|
|
30
31
|
return;
|
|
31
32
|
}
|
|
32
33
|
const status = labelReference(String(payload.value));
|
|
33
|
-
|
|
34
|
+
// A computed attribute publishes under its own namespace, so it cannot be answered by -
|
|
35
|
+
// or answer - a label that happens to share its identifier.
|
|
36
|
+
const buildKey = computedAttributeIds.has(payload.attrId) ? computedAttributeKey : labelKey;
|
|
37
|
+
const displayFormKey = buildKey(payload.attrId);
|
|
34
38
|
if (values[displayFormKey] === undefined) {
|
|
35
39
|
values[displayFormKey] = status;
|
|
36
40
|
}
|
|
@@ -39,7 +43,7 @@ export function resolveReferencesFromGeoFeature(properties, referenceMaps, separ
|
|
|
39
43
|
// under first-wins — no self-equality check needed.
|
|
40
44
|
const attributeId = attributeIdByDisplayFormId[payload.attrId];
|
|
41
45
|
if (attributeId) {
|
|
42
|
-
const attributeKey =
|
|
46
|
+
const attributeKey = buildKey(attributeId);
|
|
43
47
|
if (values[attributeKey] === undefined) {
|
|
44
48
|
values[attributeKey] = status;
|
|
45
49
|
}
|
|
@@ -10,6 +10,9 @@ import { type ITooltipReferenceMaps } from "../registry/adapterTypes.js";
|
|
|
10
10
|
* payloads as `attrId`) paired with `formOf.identifier` (the parent
|
|
11
11
|
* attribute id). Entries where both ids are equal are still emitted so
|
|
12
12
|
* callers can do a single lookup without a self-equality check.
|
|
13
|
+
* - `computedAttributeIds`: which of those ids name a computed attribute, read from the
|
|
14
|
+
* descriptor ref the backend types honestly, so the resolver can publish them under their own
|
|
15
|
+
* key namespace instead of the label one.
|
|
13
16
|
*
|
|
14
17
|
* @internal
|
|
15
18
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tooltipReferenceMaps.d.ts","sourceRoot":"","sources":["../../../../src/next/layers/common/tooltipReferenceMaps.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,KAAK,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAGvD,OAAO,EAAE,KAAK,qBAAqB,EAAE,MAAM,6BAA6B,CAAC;AAEzE
|
|
1
|
+
{"version":3,"file":"tooltipReferenceMaps.d.ts","sourceRoot":"","sources":["../../../../src/next/layers/common/tooltipReferenceMaps.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,KAAK,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAGvD,OAAO,EAAE,KAAK,qBAAqB,EAAE,MAAM,6BAA6B,CAAC;AAEzE;;;;;;;;;;;;;;;GAeG;AACH,wBAAgB,yBAAyB,CAAC,QAAQ,EAAE,cAAc,GAAG,qBAAqB,CA6BzF"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
// (C) 2026 GoodData Corporation
|
|
2
|
-
import { measureLocalId } from "@gooddata/sdk-model";
|
|
2
|
+
import { isComputedAttributeRef, measureLocalId } from "@gooddata/sdk-model";
|
|
3
3
|
import { resolveMeasureLdmIdentifier } from "@gooddata/sdk-ui-vis-commons";
|
|
4
4
|
/**
|
|
5
5
|
* Builds the per-layer reference maps the custom-tooltip resolver needs.
|
|
@@ -11,6 +11,9 @@ import { resolveMeasureLdmIdentifier } from "@gooddata/sdk-ui-vis-commons";
|
|
|
11
11
|
* payloads as `attrId`) paired with `formOf.identifier` (the parent
|
|
12
12
|
* attribute id). Entries where both ids are equal are still emitted so
|
|
13
13
|
* callers can do a single lookup without a self-equality check.
|
|
14
|
+
* - `computedAttributeIds`: which of those ids name a computed attribute, read from the
|
|
15
|
+
* descriptor ref the backend types honestly, so the resolver can publish them under their own
|
|
16
|
+
* key namespace instead of the label one.
|
|
14
17
|
*
|
|
15
18
|
* @internal
|
|
16
19
|
*/
|
|
@@ -24,6 +27,7 @@ export function buildTooltipReferenceMaps(dataView) {
|
|
|
24
27
|
}
|
|
25
28
|
}
|
|
26
29
|
const attributes = {};
|
|
30
|
+
const computedAttributeIds = [];
|
|
27
31
|
for (const descriptor of dataView.meta().attributeDescriptors()) {
|
|
28
32
|
const header = descriptor.attributeHeader;
|
|
29
33
|
// `identifier` is the display-form id (URI-typed display forms fall
|
|
@@ -32,7 +36,11 @@ export function buildTooltipReferenceMaps(dataView) {
|
|
|
32
36
|
const attributeId = header.formOf?.identifier;
|
|
33
37
|
if (displayFormId && attributeId) {
|
|
34
38
|
attributes[displayFormId] = attributeId;
|
|
39
|
+
if (isComputedAttributeRef(header.ref)) {
|
|
40
|
+
// For a computed attribute both ids are its own, so one entry covers both.
|
|
41
|
+
computedAttributeIds.push(displayFormId);
|
|
42
|
+
}
|
|
35
43
|
}
|
|
36
44
|
}
|
|
37
|
-
return { measures, attributes };
|
|
45
|
+
return { measures, attributes, computedAttributeIds };
|
|
38
46
|
}
|
|
@@ -106,6 +106,13 @@ export interface ITooltipReferenceMaps {
|
|
|
106
106
|
* so users may reference an attribute by either id, mirroring Highcharts.
|
|
107
107
|
*/
|
|
108
108
|
attributes: Record<string, string>;
|
|
109
|
+
/**
|
|
110
|
+
* The ids among {@link ITooltipReferenceMaps.attributes} that name a computed attribute rather
|
|
111
|
+
* than a label. Their values are published under the `computed_attribute/` key namespace: an
|
|
112
|
+
* id is unique only within its object type, so a label and a computed attribute may both be
|
|
113
|
+
* called `tier` and must not answer each other's reference.
|
|
114
|
+
*/
|
|
115
|
+
computedAttributeIds: string[];
|
|
109
116
|
}
|
|
110
117
|
/**
|
|
111
118
|
* Legend computation result.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"adapterTypes.d.ts","sourceRoot":"","sources":["../../../../src/next/layers/registry/adapterTypes.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,YAAY,CAAC;AAE5C,OAAO,KAAK,EAAE,kBAAkB,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,MAAM,2BAA2B,CAAC;AAC3G,OAAO,KAAK,EACR,aAAa,EACb,gBAAgB,EAChB,oBAAoB,EACpB,eAAe,EAClB,MAAM,qBAAqB,CAAC;AAC7B,OAAO,KAAK,EAAE,cAAc,EAAE,gBAAgB,EAAE,MAAM,kBAAkB,CAAC;AACzE,OAAO,KAAK,EAAE,aAAa,EAAE,cAAc,EAAE,MAAM,8BAA8B,CAAC;AAElF,OAAO,KAAK,EAAE,iBAAiB,EAAE,cAAc,EAAE,MAAM,+BAA+B,CAAC;AACvF,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,+BAA+B,CAAC;AACrE,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,6BAA6B,CAAC;AAChE,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,gCAAgC,CAAC;AACtE,OAAO,KAAK,EAAE,YAAY,EAAE,SAAS,EAAE,aAAa,EAAE,gBAAgB,EAAE,MAAM,6BAA6B,CAAC;AAC5G,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,6BAA6B,CAAC;AAChE,OAAO,KAAK,EACR,+BAA+B,EAC/B,sBAAsB,EACzB,MAAM,qCAAqC,CAAC;AAC7C,OAAO,KAAK,EACR,mBAAmB,EACnB,0BAA0B,EAC1B,UAAU,EACV,YAAY,EACf,MAAM,wBAAwB,CAAC;AAEhC;;;;;;;;GAQG;AACH,MAAM,WAAW,kBAAkB;IAC/B;;OAEG;IACH,OAAO,EAAE,kBAAkB,CAAC;IAE5B;;OAEG;IACH,SAAS,EAAE,MAAM,CAAC;IAElB;;OAEG;IACH,MAAM,CAAC,EAAE,eAAe,CAAC;IAEzB;;OAEG;IACH,UAAU,CAAC,EAAE,gBAAgB,CAAC;IAE9B;;;;;;;OAOG;IACH,aAAa,CAAC,EAAE,eAAe,EAAE,CAAC;IAElC;;;;;;OAMG;IACH,gBAAgB,CAAC,EAAE,iBAAiB,CAAC;IAErC;;;;;OAKG;IACH,YAAY,CAAC,EAAE,aAAa,CAAC;IAE7B;;;;;OAKG;IACH,YAAY,CAAC,EAAE,aAAa,EAAE,CAAC;IAE/B;;;;;OAKG;IACH,IAAI,CAAC,EAAE,SAAS,CAAC;CACpB;AAED;;;;;;;;;;;;;GAaG;AACH,MAAM,WAAW,qBAAqB;IAClC;;;;;;;OAOG;IACH,QAAQ,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;IAEjC;;;;OAIG;IACH,UAAU,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;
|
|
1
|
+
{"version":3,"file":"adapterTypes.d.ts","sourceRoot":"","sources":["../../../../src/next/layers/registry/adapterTypes.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gooddata/sdk-ui-geo",
|
|
3
|
-
"version": "11.57.0-alpha.
|
|
3
|
+
"version": "11.57.0-alpha.6",
|
|
4
4
|
"description": "GoodData.UI SDK - Geo Charts",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "GoodData Corporation",
|
|
@@ -43,12 +43,12 @@
|
|
|
43
43
|
"ts-invariant": "0.10.3",
|
|
44
44
|
"tslib": "2.8.1",
|
|
45
45
|
"uuid": "11.1.1",
|
|
46
|
-
"@gooddata/sdk-
|
|
47
|
-
"@gooddata/sdk-ui
|
|
48
|
-
"@gooddata/sdk-
|
|
49
|
-
"@gooddata/sdk-ui-
|
|
50
|
-
"@gooddata/sdk-ui-
|
|
51
|
-
"@gooddata/sdk-
|
|
46
|
+
"@gooddata/sdk-backend-spi": "11.57.0-alpha.6",
|
|
47
|
+
"@gooddata/sdk-ui": "11.57.0-alpha.6",
|
|
48
|
+
"@gooddata/sdk-model": "11.57.0-alpha.6",
|
|
49
|
+
"@gooddata/sdk-ui-theme-provider": "11.57.0-alpha.6",
|
|
50
|
+
"@gooddata/sdk-ui-vis-commons": "11.57.0-alpha.6",
|
|
51
|
+
"@gooddata/sdk-ui-kit": "11.57.0-alpha.6"
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {
|
|
54
54
|
"@microsoft/api-documenter": "7.30.10",
|
|
@@ -75,22 +75,22 @@
|
|
|
75
75
|
"eslint-plugin-react": "7.37.5",
|
|
76
76
|
"eslint-plugin-sonarjs": "3.0.6",
|
|
77
77
|
"npm-run-all": "4.1.5",
|
|
78
|
-
"oxfmt": "0.
|
|
79
|
-
"oxlint": "1.
|
|
78
|
+
"oxfmt": "0.68.0",
|
|
79
|
+
"oxlint": "1.83.0",
|
|
80
80
|
"oxlint-plugin-eslint": "1.82.0",
|
|
81
81
|
"oxlint-tsgolint": "7.0.2001",
|
|
82
82
|
"raf": "3.4.1",
|
|
83
83
|
"react": "19.1.1",
|
|
84
84
|
"react-dom": "19.1.1",
|
|
85
|
-
"sass": "1.104.
|
|
85
|
+
"sass": "1.104.1",
|
|
86
86
|
"stylelint": "16.26.1",
|
|
87
87
|
"typescript": "7.0.2",
|
|
88
88
|
"vitest": "4.1.8",
|
|
89
89
|
"vitest-dom": "0.1.1",
|
|
90
|
-
"@gooddata/eslint-config": "11.57.0-alpha.
|
|
91
|
-
"@gooddata/oxlint-config": "11.57.0-alpha.
|
|
92
|
-
"@gooddata/sdk-backend-mockingbird": "11.57.0-alpha.
|
|
93
|
-
"@gooddata/stylelint-config": "11.57.0-alpha.
|
|
90
|
+
"@gooddata/eslint-config": "11.57.0-alpha.6",
|
|
91
|
+
"@gooddata/oxlint-config": "11.57.0-alpha.6",
|
|
92
|
+
"@gooddata/sdk-backend-mockingbird": "11.57.0-alpha.6",
|
|
93
|
+
"@gooddata/stylelint-config": "11.57.0-alpha.6"
|
|
94
94
|
},
|
|
95
95
|
"peerDependencies": {
|
|
96
96
|
"react": "^18.0.0 || ^19.0.0",
|