forked from kwameopareasiedu/react-simple-widgets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtypes.ts
463 lines (379 loc) · 12.4 KB
/
types.ts
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
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
import { AllHTMLAttributes, ButtonHTMLAttributes, InputHTMLAttributes, SelectHTMLAttributes } from "react";
import { FieldHelperProps, FieldInputProps, FieldMetaProps } from "formik";
/** DialogProvider */
export enum DialogSize {
SMALL,
MEDIUM,
WIDE,
FULL
}
export interface Dialog {
id: string;
widget?: JSX.Element;
options?: DialogOptions;
onDismiss?: () => void;
}
export interface DialogOptions {
size?: DialogSize;
escapeDismissible?: boolean;
backgroundDismissible?: boolean;
onDismissed?: (returnValue?: any) => void;
}
export interface DialogHelper {
dismiss: (returnValue?: any) => void;
}
export type DialogBuilder = (helper: DialogHelper) => JSX.Element;
export interface DialogView {
dialog: Dialog;
}
export interface DialogProviderContext {
showDialog: (builder: DialogBuilder, options?: DialogOptions) => void;
}
export interface DialogProvider {
children: any;
}
/** FlashProvider */
export enum FlashType {
ERROR,
WARNING,
INFO,
SUCCESS
}
export interface Flash {
type: FlashType;
title: string;
message: any;
btnText?: string;
closeTimerMs?: number;
onFlashDismissed?: () => void;
}
export interface FlashOptionalArgs {
btnText?: string;
closeTimerMs?: number;
}
export type FlashFunction = (
title: string,
message?: any,
onFlashDismissed?: () => void,
optionalArgs?: FlashOptionalArgs
) => void;
export type FlashViewBuilder = (flash: Flash) => JSX.Element;
export interface FlashView {
type: FlashType;
title: string;
message: string;
buttonText: string;
closeTimerMs?: number;
onDismiss: () => void;
}
export interface FlashProviderContext {
flashError: FlashFunction;
flashWarning: FlashFunction;
flashInfo: FlashFunction;
flashSuccess: FlashFunction;
}
export interface FlashProvider {
children: any;
builder?: FlashViewBuilder;
}
/** LocalStorageProvider */
export interface LocalStorageProviderContext {
getItem: (key: string) => string;
setItem: (key: string, value: string) => void;
removeItems: (...keys: Array<string>) => void;
clear: () => void;
}
export interface LocalStorageProvider {
children: any;
}
/** PopupMenu */
export type PopupMenuFunctionChild = (closePopup: () => void) => any;
export type PopupMenuChild = string | JSX.Element | PopupMenuFunctionChild;
export interface PopupMenu {
children: PopupMenuChild | Array<PopupMenuChild>;
}
/** TableView */
export enum SortDirection {
NONE = 0,
ASC = 1,
DESC = -1
}
export interface TableViewSortData {
prop: string;
direction: SortDirection;
}
export type TableViewCellResolverFunction = (item: any, itemIndex?: number) => any;
export type TableViewCellResolver = string | TableViewCellResolverFunction;
export type TableViewHeaderRowBuilder = (columnValues: Array<string>, sort?: TableViewSortData) => JSX.Element;
export type TableViewBodyRowBuilder = (
item: any,
cellResolvers: Array<TableViewCellResolver>,
itemIndex?: number
) => JSX.Element;
export type TableViewFooterRowBuilder = () => JSX.Element;
export type TableViewCaptionBuilder = () => JSX.Element;
export type TableViewOptionsBuilder = (item: any, itemIndex?: number) => JSX.Element;
export type TableViewSortChangeCallback = (prop: string, direction: SortDirection) => void;
export interface TableView extends AllHTMLAttributes<HTMLTableElement> {
items: Array<any>;
props: Array<[string, TableViewCellResolver, string?]>;
headerRowBuilder?: TableViewHeaderRowBuilder;
bodyRowBuilder?: TableViewBodyRowBuilder;
footerRowBuilder?: TableViewFooterRowBuilder;
captionBuilder?: TableViewCaptionBuilder;
optionsBuilder?: TableViewOptionsBuilder;
onSort?: TableViewSortChangeCallback;
}
/** Pagination */
export interface Pagination extends Omit<AllHTMLAttributes<HTMLDivElement>, "onChange"> {
page: number;
total: number;
pageSize: number;
onChange: (page: number) => void;
}
/** BusyButton */
export interface BusyButton extends ButtonHTMLAttributes<HTMLButtonElement> {
busy?: boolean;
invert?: boolean;
}
/** Loader */
export interface Loader extends AllHTMLAttributes<HTMLDivElement> {
children?: any;
invert?: boolean;
}
/** ConfirmButton */
export interface ConfirmButtonDialog {
message: any;
confirmButtonClassName: string;
helper: DialogHelper;
}
export type ConfirmButtonDialogBuilder = (helper: DialogHelper, message: any) => JSX.Element;
export interface ConfirmButton extends BusyButton {
message?: any;
busy?: boolean;
builder?: ConfirmButtonDialogBuilder;
onCancel?: () => void;
onConfirm: () => void;
}
/** Breadcrumbs */
export interface Breadcrumbs extends AllHTMLAttributes<HTMLDivElement> {
children?: any;
}
/** ActionBar */
export interface ActionBar extends AllHTMLAttributes<HTMLDivElement> {
children?: any;
}
/** ObjectView */
export type ObjectViewCellResolverFunction = (item: any) => any;
export type ObjectViewCellResolver = string | ObjectViewCellResolverFunction;
export interface ObjectView extends AllHTMLAttributes<HTMLTableElement> {
object: any;
props: Array<[string, ObjectViewCellResolver]>;
split?: number;
}
/** CustomField */
export type CustomFieldBuilder = (options: FieldMetaProps<any> & FieldInputProps<any> & FieldHelperProps<any>) => any;
export type CustomFieldErrorBuilder = (originalError: any) => string;
export interface CustomField extends InputHTMLAttributes<HTMLInputElement> {
errorBuilder?: CustomFieldErrorBuilder;
children: CustomFieldBuilder;
}
/** FieldDecoration */
export interface FieldDecorationBuilderProps {
onFieldFocus: () => void;
onFieldBlur: () => void;
}
export type FieldDecorationBuilder = (hooks: FieldDecorationBuilderProps) => JSX.Element;
export interface FieldDecoration extends AllHTMLAttributes<HTMLDivElement> {
label?: any;
error?: any;
helper?: any;
disabled?: boolean;
leading?: JSX.Element;
trailing?: JSX.Element;
children: FieldDecorationBuilder;
}
/** TextField */
export interface TextField
extends Omit<InputHTMLAttributes<HTMLInputElement>, "onChange">,
Pick<FieldDecoration, "label" | "leading" | "trailing" | "helper"> {
onChange?: (value: string) => void;
}
/** TextEditorField */
export interface TextEditorField extends Pick<FieldDecoration, "label" | "helper"> {
name: string;
disabled?: boolean;
onChange?: (data: any) => void;
onFocus?: () => void;
onBlur?: () => void;
}
/** TextAreaField */
export interface TextAreaField
extends Omit<InputHTMLAttributes<HTMLTextAreaElement>, "onChange">,
Pick<FieldDecoration, "label" | "leading" | "trailing" | "helper"> {
onChange?: (value: string) => void;
}
/** PasswordField */
export type PasswordField = Omit<TextField, "trailing" | "type">;
/** DropdownField */
export interface DropdownField
extends Omit<SelectHTMLAttributes<HTMLSelectElement>, "onChange">,
Pick<FieldDecoration, "label" | "leading" | "trailing" | "helper"> {
onChange?: (value: string) => void;
}
/** CheckboxField */
export interface CheckboxField
extends Omit<InputHTMLAttributes<HTMLInputElement>, "type" | "onChange">,
Pick<FieldDecoration, "label"> {
onChange?: (checked: boolean) => void;
}
/** SelectField */
export interface SelectOption extends AllHTMLAttributes<HTMLInputElement> {
label: string;
multi?: boolean;
selected?: boolean;
onFocus?: () => void;
onSelect: () => void;
}
export interface SelectField
extends Omit<AllHTMLAttributes<HTMLDivElement>, "label" | "onChange">,
Pick<FieldDecoration, "label"> {
name: string;
label?: string;
inline?: boolean;
readOnly?: boolean;
disabled?: boolean;
options: Array<[any, any]>;
onChange?: (value: any) => void;
}
/** MultiSelectField */
export interface MultiSelectField
extends Omit<AllHTMLAttributes<HTMLDivElement>, "label" | "onChange">,
Pick<FieldDecoration, "label"> {
name: string;
label?: string;
inline?: boolean;
readOnly?: boolean;
disabled?: boolean;
options: Array<[any, any]>;
onChange?: (value: Array<any>) => void;
}
/** GrowableItemsContainer */
export interface GrowableItemsContainer extends AllHTMLAttributes<HTMLDivElement> {
busy: boolean;
total: number;
itemCount: number;
error?: boolean;
onLoadMore: () => void;
}
/** Calendar */
export interface Calendar extends Omit<AllHTMLAttributes<HTMLDivElement>, "onChange"> {
initialDate: string;
isDateOutlined?: (year: number, month: number, day: number) => boolean;
isDateActive?: (year: number, month: number, day: number) => boolean;
validator?: (date: string) => string;
onChange: (date: string) => void;
}
/** DatePicker */
export interface DatePicker extends Omit<AllHTMLAttributes<HTMLDivElement>, "onChange"> {
value: string;
displayFormat?: string;
validator?: (date: string) => string;
onChange: (date: string) => void;
}
/** DateField */
export interface DateField
extends Omit<DatePicker, "label" | "value" | "onChange">,
Pick<FieldDecoration, "label" | "leading" | "trailing" | "helper"> {
onChange?: (date: string) => void;
}
/** MultiDatePicker */
export interface MultiDatePicker extends Omit<AllHTMLAttributes<HTMLDivElement>, "onChange"> {
value: Array<string>;
displayFormat?: string;
validator?: (date: string) => string;
onChange: (dates: Array<string>) => void;
}
/** MultiDateField */
export interface MultiDateField
extends Omit<MultiDatePicker, "label" | "value" | "onChange">,
Pick<FieldDecoration, "label" | "leading" | "trailing" | "helper"> {
onChange?: (dates: Array<string>) => void;
}
/** MonthDatePicker */
export interface MonthDatePicker extends Omit<AllHTMLAttributes<HTMLDivElement>, "onChange"> {
value: string;
validator?: (date: string) => string;
onChange: (date: string) => void;
}
/** MonthDateField */
export interface MonthDateField
extends Omit<MonthDatePicker, "label" | "value" | "onChange">,
Pick<FieldDecoration, "label" | "leading" | "trailing" | "helper"> {
onChange?: (date: string) => void;
}
/** TimePicker */
export interface TimePicker extends Omit<AllHTMLAttributes<HTMLDivElement>, "onChange"> {
value: string;
onChange: (time: string) => void;
}
/** TimeField */
export interface TimeField
extends Omit<TimePicker, "label" | "value" | "onChange">,
Pick<FieldDecoration, "label" | "leading" | "trailing" | "helper"> {
onChange?: (time: string) => void;
}
/** FilePicker */
export type FilePickerValidator = (file: File) => boolean;
export interface FilePicker extends Omit<AllHTMLAttributes<HTMLDivElement>, "onChange"> {
limit?: number;
extensions?: Array<string>;
validator?: FilePickerValidator;
onChange?: (file: File) => void;
}
export interface FilePickerDialog extends FilePicker {
helper: DialogHelper;
}
/** FileField */
export interface FileField
extends Omit<FilePicker, "label" | "onChange">,
Pick<FieldDecoration, "label" | "leading" | "trailing" | "helper"> {
onChange?: (file: File) => void;
}
/** UseQueryParams */
export type UseQueryParamsState = {
set: (key: string, value: string) => void;
unset: (key: string) => void;
[k: string]: any;
};
export type UseQueryParams = () => UseQueryParamsState;
/** UseCountdown */
export type UseCountdownState = [number, boolean, () => void, () => void];
export type UseCountdown = (countdown: number) => UseCountdownState;
/** UseWindowBreakpoints */
export interface UseWindowBreakpointsState {
width: number;
xs: boolean;
sm: boolean;
md: boolean;
lg: boolean;
xl: boolean;
xxl: boolean;
}
export type UseWindowBreakpoints = () => UseWindowBreakpointsState;
/** Debounce */
export type Debounce = (label: string, callback: Function, delay: number) => void;
/** UseGrowableList */
export type GrowableListLoadMoreTrigger = (resetPage?: boolean) => void;
export type GrowableListOnLoadMore = (newItems: Array<any>, totalItems: number) => void;
export type GrowableListOnLoadFailed = () => void;
export type UseGrowableListState = [
itemList: Array<any>,
currentPageNumber: number,
totalItemsInSource: number,
triggeredLoadMore: boolean,
loadMore: GrowableListLoadMoreTrigger,
onLoadMoreSuccess: GrowableListOnLoadMore,
onLoadMoreFailed: GrowableListOnLoadFailed
];
export type UseGrowableList = () => UseGrowableListState;