@gooddata/sdk-ui-dashboard 10.20.0-alpha.20 → 10.20.0-alpha.21
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/__version.d.ts +1 -1
- package/esm/__version.js +1 -1
- package/esm/presentation/widget/insight/ViewModeDashboardInsight/Insight/DashboardInsight.d.ts.map +1 -1
- package/esm/presentation/widget/insight/ViewModeDashboardInsight/Insight/DashboardInsight.js +20 -5
- package/esm/presentation/widget/insight/ViewModeDashboardInsight/Insight/DashboardInsight.js.map +1 -1
- package/package.json +15 -15
package/esm/__version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const LIB_VERSION = "10.20.0-alpha.
|
|
1
|
+
export declare const LIB_VERSION = "10.20.0-alpha.21";
|
|
2
2
|
//# sourceMappingURL=__version.d.ts.map
|
package/esm/__version.js
CHANGED
package/esm/presentation/widget/insight/ViewModeDashboardInsight/Insight/DashboardInsight.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DashboardInsight.d.ts","sourceRoot":"","sources":["../../../../../../src/presentation/widget/insight/ViewModeDashboardInsight/Insight/DashboardInsight.tsx"],"names":[],"mappings":";
|
|
1
|
+
{"version":3,"file":"DashboardInsight.d.ts","sourceRoot":"","sources":["../../../../../../src/presentation/widget/insight/ViewModeDashboardInsight/Insight/DashboardInsight.tsx"],"names":[],"mappings":";AAwCA,OAAO,EAAE,sBAAsB,EAAE,MAAM,gBAAgB,CAAC;AA4BxD;;GAEG;AACH,eAAO,MAAM,gBAAgB,UAAW,sBAAsB,KAAG,WA+NhE,CAAC"}
|
package/esm/presentation/widget/insight/ViewModeDashboardInsight/Insight/DashboardInsight.js
CHANGED
|
@@ -115,6 +115,11 @@ export const DashboardInsight = (props) => {
|
|
|
115
115
|
executionsHandler.onError(error);
|
|
116
116
|
}, [onError, executionsHandler.onError]);
|
|
117
117
|
const effectiveError = filtersError ?? visualizationError;
|
|
118
|
+
useEffect(() => {
|
|
119
|
+
// need reset custom error when filters changed
|
|
120
|
+
// one of custom error is no data
|
|
121
|
+
setVisualizationError(undefined);
|
|
122
|
+
}, [stringify(filtersForInsight)]);
|
|
118
123
|
// CSS
|
|
119
124
|
const insightPositionStyle = useMemo(() => {
|
|
120
125
|
return {
|
|
@@ -132,15 +137,25 @@ export const DashboardInsight = (props) => {
|
|
|
132
137
|
}, [isVisualizationLoading, effectiveError]);
|
|
133
138
|
const visualizationProperties = insightProperties(insightWithAddedWidgetProperties);
|
|
134
139
|
const isZoomable = visualizationProperties?.controls?.zoomInsight;
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
React.createElement(
|
|
140
|
+
const renderComponent = () => {
|
|
141
|
+
if (effectiveError) {
|
|
142
|
+
return (React.createElement(CustomError, { error: effectiveError, isCustomWidgetHeightEnabled: !!settings?.enableKDWidgetCustomHeight, height: clientHeight, width: clientWidth }));
|
|
143
|
+
}
|
|
144
|
+
else {
|
|
145
|
+
return (React.createElement(React.Fragment, null,
|
|
146
|
+
// we need wait with insight rendering until filters are successfully resolved
|
|
147
|
+
// loading of insight is initiated after filters are successful, until then show loading component
|
|
148
|
+
// if filter status is success and visualization is loading, render both loading and insight
|
|
138
149
|
filtersStatus === "running" || isVisualizationLoading ? React.createElement(LoadingComponent, null) : null,
|
|
139
|
-
effectiveError ? (React.createElement(CustomError, { error: effectiveError, isCustomWidgetHeightEnabled: !!settings?.enableKDWidgetCustomHeight, height: clientHeight, width: clientWidth })) : null,
|
|
140
150
|
filtersStatus === "success" ? (React.createElement("div", { className: "insight-view-visualization", style: insightWrapperStyle },
|
|
141
151
|
React.createElement(InsightBody, { widget: widget, insight: insightWithAddedWidgetProperties, backend: effectiveBackend, workspace: effectiveWorkspace, drillableItems: drillableItems, onDrill: onDrill, config: {
|
|
142
152
|
...chartConfig,
|
|
143
153
|
selectedPoints: crossFilteringSelectedPoints,
|
|
144
|
-
}, onLoadingChanged: handleLoadingChanged, locale: locale, settings: settings, colorPalette: colorPalette, onError: handleError, pushData: handlePushData, ErrorComponent: ErrorComponent, LoadingComponent: LoadingComponent, onExportReady: onExportReady }))) : null))
|
|
154
|
+
}, onLoadingChanged: handleLoadingChanged, locale: locale, settings: settings, colorPalette: colorPalette, onError: handleError, pushData: handlePushData, ErrorComponent: ErrorComponent, LoadingComponent: LoadingComponent, onExportReady: onExportReady }))) : null));
|
|
155
|
+
}
|
|
156
|
+
};
|
|
157
|
+
return (React.createElement("div", { className: cx("visualization-content", { "in-edit-mode": isInEditMode }) },
|
|
158
|
+
React.createElement("div", { className: cx("gd-visualization-content", { zoomable: isZoomable }), style: insightPositionStyle },
|
|
159
|
+
React.createElement(IntlWrapper, { locale: locale }, renderComponent()))));
|
|
145
160
|
};
|
|
146
161
|
//# sourceMappingURL=DashboardInsight.js.map
|
package/esm/presentation/widget/insight/ViewModeDashboardInsight/Insight/DashboardInsight.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DashboardInsight.js","sourceRoot":"","sources":["../../../../../../src/presentation/widget/insight/ViewModeDashboardInsight/Insight/DashboardInsight.tsx"],"names":[],"mappings":"AAAA,qCAAqC;AACrC,OAAO,KAAK,EAAE,EAAiB,WAAW,EAAE,SAAS,EAAE,OAAO,EAAE,QAAQ,EAAE,MAAM,OAAO,CAAC;AAExF,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAClD,OAAO,EACH,iBAAiB,EACjB,iBAAiB,EACjB,uBAAuB,EACvB,cAAc,EACd,SAAS,GACZ,MAAM,qBAAqB,CAAC;AAC7B,OAAO,EAKH,gBAAgB,EAChB,kBAAkB,GACrB,MAAM,kBAAkB,CAAC;AAC1B,OAAO,SAAS,MAAM,uBAAuB,CAAC;AAC9C,OAAO,EAAE,MAAM,YAAY,CAAC;AAE5B,OAAO,EAAE,6BAA6B,EAAE,MAAM,wCAAwC,CAAC;AACvF,OAAO,EACH,kBAAkB,EAClB,oBAAoB,EACpB,cAAc,EACd,YAAY,EACZ,iBAAiB,EACjB,gBAAgB,EAChB,cAAc,EACd,uBAAuB,EACvB,oBAAoB,EACpB,0BAA0B,EAC1B,kBAAkB,EAClB,6CAA6C,EAC7C,gBAAgB,GACnB,MAAM,+BAA+B,CAAC;
|
|
1
|
+
{"version":3,"file":"DashboardInsight.js","sourceRoot":"","sources":["../../../../../../src/presentation/widget/insight/ViewModeDashboardInsight/Insight/DashboardInsight.tsx"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gooddata/sdk-ui-dashboard",
|
|
3
|
-
"version": "10.20.0-alpha.
|
|
3
|
+
"version": "10.20.0-alpha.21",
|
|
4
4
|
"description": "GoodData SDK - Dashboard Component",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -57,17 +57,17 @@
|
|
|
57
57
|
"ts-invariant": "^0.7.5",
|
|
58
58
|
"tslib": "^2.5.0",
|
|
59
59
|
"uuid": "^8.3.2",
|
|
60
|
-
"@gooddata/sdk-backend-base": "10.20.0-alpha.
|
|
61
|
-
"@gooddata/sdk-backend-spi": "10.20.0-alpha.
|
|
62
|
-
"@gooddata/sdk-ui": "10.20.0-alpha.
|
|
63
|
-
"@gooddata/sdk-model": "10.20.0-alpha.
|
|
64
|
-
"@gooddata/sdk-ui-ext": "10.20.0-alpha.
|
|
65
|
-
"@gooddata/sdk-ui-filters": "10.20.0-alpha.
|
|
66
|
-
"@gooddata/sdk-ui-geo": "10.20.0-alpha.
|
|
67
|
-
"@gooddata/sdk-ui-kit": "10.20.0-alpha.
|
|
68
|
-
"@gooddata/sdk-ui-theme-provider": "10.20.0-alpha.
|
|
69
|
-
"@gooddata/sdk-ui-vis-commons": "10.20.0-alpha.
|
|
70
|
-
"@gooddata/util": "10.20.0-alpha.
|
|
60
|
+
"@gooddata/sdk-backend-base": "10.20.0-alpha.21",
|
|
61
|
+
"@gooddata/sdk-backend-spi": "10.20.0-alpha.21",
|
|
62
|
+
"@gooddata/sdk-ui": "10.20.0-alpha.21",
|
|
63
|
+
"@gooddata/sdk-model": "10.20.0-alpha.21",
|
|
64
|
+
"@gooddata/sdk-ui-ext": "10.20.0-alpha.21",
|
|
65
|
+
"@gooddata/sdk-ui-filters": "10.20.0-alpha.21",
|
|
66
|
+
"@gooddata/sdk-ui-geo": "10.20.0-alpha.21",
|
|
67
|
+
"@gooddata/sdk-ui-kit": "10.20.0-alpha.21",
|
|
68
|
+
"@gooddata/sdk-ui-theme-provider": "10.20.0-alpha.21",
|
|
69
|
+
"@gooddata/sdk-ui-vis-commons": "10.20.0-alpha.21",
|
|
70
|
+
"@gooddata/util": "10.20.0-alpha.21"
|
|
71
71
|
},
|
|
72
72
|
"peerDependencies": {
|
|
73
73
|
"react": "^16.10.0 || ^17.0.0 || ^18.0.0",
|
|
@@ -120,9 +120,9 @@
|
|
|
120
120
|
"typescript": "5.3.3",
|
|
121
121
|
"vitest": "1.0.4",
|
|
122
122
|
"vitest-dom": "0.1.1",
|
|
123
|
-
"@gooddata/reference-workspace": "10.20.0-alpha.
|
|
124
|
-
"@gooddata/i18n-toolkit": "10.20.0-alpha.
|
|
125
|
-
"@gooddata/sdk-backend-mockingbird": "10.20.0-alpha.
|
|
123
|
+
"@gooddata/reference-workspace": "10.20.0-alpha.21",
|
|
124
|
+
"@gooddata/i18n-toolkit": "10.20.0-alpha.21",
|
|
125
|
+
"@gooddata/sdk-backend-mockingbird": "10.20.0-alpha.21"
|
|
126
126
|
},
|
|
127
127
|
"scripts": {
|
|
128
128
|
"clean": "rm -rf ci dist esm coverage *.log styles/css tsconfig.tsbuildinfo",
|