Skip to content

Commit bd39629

Browse files
jacob-xhioJacob Haddad
and
Jacob Haddad
authoredMar 14, 2024
Improve Error Handling in Portfolio example chart panels (#701)
Fixes #695 --------- Co-authored-by: Jacob Haddad <[email protected]>
1 parent 9eb0589 commit bd39629

File tree

3 files changed

+22
-7
lines changed

3 files changed

+22
-7
lines changed
 

‎client-app/src/examples/portfolio/detail/charts/LineChart.ts

+9-4
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,14 @@ import {creates, hoistCmp, HoistModel, lookup, managed, XH} from '@xh/hoist/core
33
import {fmtDate} from '@xh/hoist/format';
44
import {ChartsPanelModel} from './ChartsPanelModel';
55
import {panel} from '@xh/hoist/desktop/cmp/panel';
6+
import {errorMessage} from '@xh/hoist/dynamics/desktop';
67

78
export const lineChart = hoistCmp.factory({
89
model: creates(() => LineChartModel),
9-
render() {
10+
render({model}) {
11+
if (model.lastLoadException) {
12+
return errorMessage({error: model.lastLoadException});
13+
}
1014
return panel({
1115
item: chart(),
1216
mask: 'onLoad',
@@ -70,13 +74,14 @@ class LineChartModel extends HoistModel {
7074

7175
try {
7276
const series = await XH.portfolioService.getLineChartSeriesAsync({symbol, loadSpec});
73-
74-
if (!loadSpec.isObsolete) {
77+
if (!loadSpec.isStale) {
7578
chartModel.setSeries(series);
7679
}
7780
} catch (e) {
81+
if (loadSpec.isAutoRefresh || loadSpec.isStale) return;
7882
chartModel.clear();
79-
XH.handleException(e);
83+
XH.handleException(e, {showAlert: false});
84+
throw e;
8085
}
8186
}
8287
}

‎client-app/src/examples/portfolio/detail/charts/OHLCChart.ts

+9-3
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,14 @@ import {creates, hoistCmp, HoistModel, lookup, managed, XH} from '@xh/hoist/core
33
import {fmtDate, fmtPrice} from '@xh/hoist/format';
44
import {ChartsPanelModel} from './ChartsPanelModel';
55
import {panel} from '@xh/hoist/desktop/cmp/panel';
6+
import {errorMessage} from '@xh/hoist/dynamics/desktop';
67

78
export const ohlcChart = hoistCmp.factory({
89
model: creates(() => OHLCChartModel),
9-
render() {
10+
render({model}) {
11+
if (model.lastLoadException) {
12+
return errorMessage({error: model.lastLoadException});
13+
}
1014
return panel({
1115
item: chart(),
1216
mask: 'onLoad',
@@ -88,12 +92,14 @@ class OHLCChartModel extends HoistModel {
8892

8993
try {
9094
const series = await XH.portfolioService.getOHLCChartSeriesAsync({symbol, loadSpec});
91-
if (!loadSpec.isObsolete) {
95+
if (!loadSpec.isStale) {
9296
chartModel.setSeries(series);
9397
}
9498
} catch (e) {
99+
if (loadSpec.isAutoRefresh || loadSpec.isStale) return;
95100
chartModel.clear();
96-
XH.handleException(e);
101+
XH.handleException(e, {showAlert: false});
102+
throw e;
97103
}
98104
}
99105
}

‎grails-app/controllers/io/xh/toolbox/portfolio/PortfolioController.groovy

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
package io.xh.toolbox.portfolio
22

3+
import io.xh.hoist.exception.DataNotAvailableException
34
import io.xh.hoist.security.AccessAll
45
import io.xh.toolbox.BaseController
56

@@ -48,6 +49,9 @@ class PortfolioController extends BaseController {
4849
// List of MarketPrices for the given instrument identified by its symbol
4950
def prices() {
5051
List<MarketPrice> historicalPrices = portfolioService.getData().historicalPrices[params.id]
52+
if (!historicalPrices) {
53+
throw new DataNotAvailableException("No historical prices available for ${params.id}")
54+
}
5155
MarketPrice intradayPrices = portfolioService.getData().intradayPrices[params.id]
5256
List<MarketPrice> allPrices = intradayPrices ? historicalPrices.dropRight(1)+[intradayPrices] : historicalPrices
5357
renderJSON(allPrices)

0 commit comments

Comments
 (0)
Please sign in to comment.