forked from deephaven/web-client-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathuseIrisGridSimplePivotModel.ts
More file actions
134 lines (118 loc) · 3.1 KB
/
useIrisGridSimplePivotModel.ts
File metadata and controls
134 lines (118 loc) · 3.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
import { type dh } from '@deephaven/jsapi-types';
import { useApi } from '@deephaven/jsapi-bootstrap';
import { useCallback, useEffect, useState } from 'react';
import {
type IrisGridModel,
IrisGridSimplePivotModel,
type KeyColumnArray,
type SimplePivotSchema,
} from '@deephaven/iris-grid';
import Log from '@deephaven/log';
const log = Log.module('useIrisGridSimplePivotModel');
export interface SimplePivotFetchResult {
columnMap: KeyColumnArray;
schema: SimplePivotSchema;
table: dh.Table;
keyTable: dh.Table;
totalsTable: dh.Table | null;
pivotWidget: dh.Widget;
}
export type IrisGridModelFetch = () => Promise<SimplePivotFetchResult>;
export type IrisGridModelFetchErrorResult = {
error: NonNullable<unknown>;
status: 'error';
};
export type IrisGridModelFetchLoadingResult = {
status: 'loading';
};
export type IrisGridModelFetchSuccessResult = {
status: 'success';
model: IrisGridModel;
};
export type IrisGridModelFetchResult = (
| IrisGridModelFetchErrorResult
| IrisGridModelFetchLoadingResult
| IrisGridModelFetchSuccessResult
) & {
reload: () => void;
};
/** Pass in a table `fetch` function, will load the model and handle any errors */
export function useIrisGridSimplePivotModel(
fetch: IrisGridModelFetch
): IrisGridModelFetchResult {
const dh = useApi();
const [model, setModel] = useState<IrisGridModel>();
const [error, setError] = useState<unknown>();
const [isLoading, setIsLoading] = useState(true);
log.debug('render useIrisGridSimplePivotModel', model, error);
// Close the model when component is unmounted
useEffect(
() => () => {
if (model) {
model.close();
}
},
[model]
);
const makeModel = useCallback(async () => {
log.debug('Fetching model');
const { columnMap, keyTable, pivotWidget, schema, table, totalsTable } =
await fetch();
log.debug('Fetching model before new Model');
return new IrisGridSimplePivotModel(
dh,
table,
keyTable,
totalsTable,
columnMap,
schema,
pivotWidget
);
}, [dh, fetch]);
const reload = useCallback(async () => {
setIsLoading(true);
setError(undefined);
try {
const newModel = await makeModel();
setModel(newModel);
setIsLoading(false);
} catch (e) {
setError(e);
setIsLoading(false);
}
}, [makeModel]);
useEffect(() => {
log.debug('useEffect makeModel');
let cancelled = false;
async function init() {
setIsLoading(true);
setError(undefined);
try {
const newModel = await makeModel();
if (!cancelled) {
setModel(newModel);
setIsLoading(false);
}
} catch (e) {
if (!cancelled) {
setError(e);
setIsLoading(false);
}
}
}
init();
return () => {
cancelled = true;
};
}, [makeModel]);
if (isLoading) {
return { reload, status: 'loading' };
}
if (error != null) {
return { error, reload, status: 'error' };
}
if (model != null) {
return { model, reload, status: 'success' };
}
throw new Error('Invalid state');
}