-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Expand file tree
/
Copy pathtypes.ts
More file actions
176 lines (165 loc) · 4.95 KB
/
types.ts
File metadata and controls
176 lines (165 loc) · 4.95 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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
import {
useLoadOnDemandFeatureView,
useLoadStreamFeatureView,
useLoadRegularFeatureView,
} from "../pages/feature-views/useLoadFeatureView";
import useLoadFeature from "../pages/features/useLoadFeature";
import useLoadFeatureService from "../pages/feature-services/useLoadFeatureService";
import useLoadDataSource from "../pages/data-sources/useLoadDataSource";
import useLoadEntity from "../pages/entities/useLoadEntity";
import useLoadDataset from "../pages/saved-data-sets/useLoadDataset";
interface CustomTabRegistrationInterface {
label: string;
path: string;
Component: (...args: any[]) => JSX.Element;
}
// Type for Regular Feature View Custom Tabs
type RegularFeatureViewQueryReturnType = ReturnType<
typeof useLoadRegularFeatureView
>;
interface RegularFeatureViewCustomTabProps {
id: string | undefined;
feastObjectQuery: RegularFeatureViewQueryReturnType;
}
interface RegularFeatureViewCustomTabRegistrationInterface
extends CustomTabRegistrationInterface {
Component: ({
id,
feastObjectQuery,
...args
}: RegularFeatureViewCustomTabProps) => JSX.Element;
}
// Type for OnDemand Feature View Custom Tabs
type OnDemandFeatureViewQueryReturnType = ReturnType<
typeof useLoadOnDemandFeatureView
>;
interface OnDemandFeatureViewCustomTabProps {
id: string | undefined;
feastObjectQuery: OnDemandFeatureViewQueryReturnType;
}
interface OnDemandFeatureViewCustomTabRegistrationInterface
extends CustomTabRegistrationInterface {
Component: ({
id,
feastObjectQuery,
...args
}: OnDemandFeatureViewCustomTabProps) => JSX.Element;
}
// Type for Stream Feature View Custom Tabs
type StreamFeatureViewQueryReturnType = ReturnType<
typeof useLoadStreamFeatureView
>;
interface StreamFeatureViewCustomTabProps {
id: string | undefined;
feastObjectQuery: StreamFeatureViewQueryReturnType;
}
interface StreamFeatureViewCustomTabRegistrationInterface
extends CustomTabRegistrationInterface {
Component: ({
id,
feastObjectQuery,
...args
}: StreamFeatureViewCustomTabProps) => JSX.Element;
}
// Type for Entity Custom Tabs
interface EntityCustomTabProps {
id: string | undefined;
feastObjectQuery: ReturnType<typeof useLoadEntity>;
}
interface EntityCustomTabRegistrationInterface
extends CustomTabRegistrationInterface {
Component: ({
id,
feastObjectQuery,
...args
}: EntityCustomTabProps) => JSX.Element;
}
// Type for Feature Custom Tabs
interface FeatureCustomTabProps {
id: string | undefined;
feastObjectQuery: ReturnType<typeof useLoadFeature>;
}
interface FeatureCustomTabRegistrationInterface
extends CustomTabRegistrationInterface {
Component: ({
id,
feastObjectQuery,
...args
}: FeatureCustomTabProps) => JSX.Element;
}
// Type for Feature Service Custom Tabs
interface FeatureServiceCustomTabProps {
id: string | undefined;
feastObjectQuery: ReturnType<typeof useLoadFeatureService>;
}
interface FeatureServiceCustomTabRegistrationInterface
extends CustomTabRegistrationInterface {
Component: ({
id,
feastObjectQuery,
...args
}: FeatureServiceCustomTabProps) => JSX.Element;
}
// Type for Data Source Custom Tabs
interface DataSourceCustomTabProps {
id: string | undefined;
feastObjectQuery: ReturnType<typeof useLoadDataSource>;
}
interface DataSourceCustomTabRegistrationInterface
extends CustomTabRegistrationInterface {
Component: ({
id,
feastObjectQuery,
...args
}: DataSourceCustomTabProps) => JSX.Element;
}
// Type for Data Source Custom Tabs
interface DatasetCustomTabProps {
id: string | undefined;
feastObjectQuery: ReturnType<typeof useLoadDataset>;
}
interface DatasetCustomTabRegistrationInterface
extends CustomTabRegistrationInterface {
Component: ({
id,
feastObjectQuery,
...args
}: DatasetCustomTabProps) => JSX.Element;
}
// Type for Data Labeling Custom Tabs
interface DataLabelingCustomTabProps {
id: string | undefined;
feastObjectQuery: RegularFeatureViewQueryReturnType;
}
interface DataLabelingCustomTabRegistrationInterface
extends CustomTabRegistrationInterface {
Component: ({
id,
feastObjectQuery,
...args
}: DataLabelingCustomTabProps) => JSX.Element;
}
export type {
CustomTabRegistrationInterface,
RegularFeatureViewQueryReturnType,
RegularFeatureViewCustomTabRegistrationInterface,
RegularFeatureViewCustomTabProps,
OnDemandFeatureViewQueryReturnType,
OnDemandFeatureViewCustomTabProps,
OnDemandFeatureViewCustomTabRegistrationInterface,
StreamFeatureViewQueryReturnType,
StreamFeatureViewCustomTabProps,
StreamFeatureViewCustomTabRegistrationInterface,
FeatureServiceCustomTabRegistrationInterface,
FeatureServiceCustomTabProps,
DataSourceCustomTabRegistrationInterface,
DataSourceCustomTabProps,
EntityCustomTabRegistrationInterface,
EntityCustomTabProps,
FeatureCustomTabRegistrationInterface,
FeatureCustomTabProps,
DatasetCustomTabRegistrationInterface,
DatasetCustomTabProps,
DataLabelingCustomTabRegistrationInterface,
DataLabelingCustomTabProps,
};