-
Notifications
You must be signed in to change notification settings - Fork 2
/
types.ts
548 lines (460 loc) · 13.5 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
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
import {
HTMLAttributes,
ButtonHTMLAttributes,
InputHTMLAttributes,
SelectHTMLAttributes
} from "react";
import { FieldHelperProps, FieldInputProps, FieldMetaProps } from "formik";
/** DialogProvider */
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;
onMessage?: (message?: any) => void;
}
export enum DialogSize {
SMALL,
MEDIUM,
WIDE,
FULL
}
export interface DialogHelper {
dismiss: (returnValue?: any) => void;
send: (message: any) => void;
}
export type DialogBuilder = (helper: DialogHelper) => JSX.Element;
export interface DialogViewProps {
dialog: Dialog;
}
export interface DialogProviderContext {
showDialog: (builder: DialogBuilder, options?: DialogOptions) => void;
}
export interface DialogProviderProps {
children: any;
}
/** FlashProvider */
export interface Flash {
type: FlashType;
title: string;
message: any;
btnText?: string;
closeTimerMs?: number;
onDismissed?: () => void;
}
export enum FlashType {
ERROR,
WARNING,
INFO,
SUCCESS
}
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 FlashViewProps {
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 FlashProviderProps {
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 LocalStorageProviderProps {
children: any;
}
/** PopupMenu */
export type PopupMenuFunctionChild = (closePopup: () => void) => any;
export type PopupMenuChild = string | JSX.Element | PopupMenuFunctionChild;
export interface PopupMenuProps {
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 type TableViewEmptyRowBuilder = () => JSX.Element;
export type TableViewRowClickCallback = (item: any, itemIndex?: number) => void;
export interface TableViewProps extends HTMLAttributes<HTMLTableElement> {
items: Array<any>;
mobileTableCols?: number;
props: Array<[string, TableViewCellResolver, string?]>;
headerRowBuilder?: TableViewHeaderRowBuilder;
bodyRowBuilder?: TableViewBodyRowBuilder;
emptyRowBuilder?: TableViewEmptyRowBuilder;
footerRowBuilder?: TableViewFooterRowBuilder;
captionBuilder?: TableViewCaptionBuilder;
optionsBuilder?: TableViewOptionsBuilder;
onSort?: TableViewSortChangeCallback;
onRowClick?: TableViewRowClickCallback;
}
/** Pagination */
export interface PaginationProps
extends Omit<HTMLAttributes<HTMLDivElement>, "onChange"> {
page: number;
total: number;
pageSize: number;
onChange: (page: number) => void;
}
/** BusyButton */
export interface BusyButtonProps
extends ButtonHTMLAttributes<HTMLButtonElement> {
busy?: boolean;
invert?: boolean;
}
/** Loader */
export interface LoaderProps extends HTMLAttributes<HTMLDivElement> {
children?: any;
invert?: boolean;
}
/** ConfirmButton */
export interface ConfirmButtonDialogProps {
helper: DialogHelper;
message: any;
confirmButtonClassName?: string;
cancelButtonClassName?: string;
}
export type ConfirmButtonDialogBuilder = (
helper: DialogHelper,
message: any
) => JSX.Element;
export interface ConfirmButtonProps extends BusyButtonProps {
message?: any;
busy?: boolean;
confirmButtonClassName?: string;
cancelButtonClassName?: string;
builder?: ConfirmButtonDialogBuilder;
onCancel?: () => void;
onConfirm: () => void;
}
/** Breadcrumbs */
export interface BreadcrumbsProps extends HTMLAttributes<HTMLDivElement> {
children?: any;
}
/** ActionBar */
export interface ActionBarProps extends HTMLAttributes<HTMLDivElement> {
children?: any;
}
/** ObjectView */
export type ObjectViewCellResolverFunction = (item: any) => any;
export type ObjectViewCellResolver = string | ObjectViewCellResolverFunction;
export interface ObjectViewProps extends HTMLAttributes<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 CustomFieldProps
extends Omit<InputHTMLAttributes<HTMLInputElement>, "children"> {
errorBuilder?: CustomFieldErrorBuilder;
children: CustomFieldBuilder;
}
/** FieldDecoration */
export interface FieldDecorationBuilderProps {
onFieldFocus: () => void;
onFieldBlur: () => void;
}
export type FieldDecorationBuilder = (
hooks: FieldDecorationBuilderProps
) => JSX.Element;
export interface FieldDecorationProps
extends Omit<HTMLAttributes<HTMLDivElement>, "children"> {
label?: any;
error?: any;
helper?: any;
disabled?: boolean;
leading?: JSX.Element;
trailing?: JSX.Element;
children: FieldDecorationBuilder;
}
/** TextField */
export interface TextFieldProps
extends Omit<InputHTMLAttributes<HTMLInputElement>, "onChange">,
Pick<FieldDecorationProps, "label" | "leading" | "trailing" | "helper"> {
onChange?: (value: string) => void;
}
/** TextEditorField */
export interface TextEditorFieldProps
extends Pick<FieldDecorationProps, "label" | "helper"> {
name: string;
theme?: "snow" | "bubble";
asText?: boolean;
disabled?: boolean;
onChange?: (data: any) => void;
onFocus?: () => void;
onBlur?: () => void;
}
/** TextAreaField */
export interface TextAreaFieldProps
extends Omit<InputHTMLAttributes<HTMLTextAreaElement>, "onChange">,
Pick<FieldDecorationProps, "label" | "leading" | "trailing" | "helper"> {
onChange?: (value: string) => void;
}
/** PasswordField */
export type PasswordFieldProps = Omit<TextFieldProps, "trailing" | "type">;
/** DropdownField */
export interface DropdownFieldProps
extends Omit<SelectHTMLAttributes<HTMLSelectElement>, "onChange">,
Pick<FieldDecorationProps, "label" | "leading" | "trailing" | "helper"> {
onChange?: (value: string) => void;
}
/** CheckboxField */
export interface CheckboxFieldProps
extends Omit<InputHTMLAttributes<HTMLInputElement>, "type" | "onChange">,
Pick<FieldDecorationProps, "label"> {
onChange?: (checked: boolean) => void;
}
/** SelectField */
export interface SelectOptionProps
extends InputHTMLAttributes<HTMLInputElement> {
label: string;
multi?: boolean;
selected?: boolean;
onFocus?: () => void;
onSelect: () => void;
}
export interface SelectFieldProps
extends Omit<HTMLAttributes<HTMLDivElement>, "label" | "onChange">,
Pick<FieldDecorationProps, "label"> {
name: string;
label?: string;
inline?: boolean;
readOnly?: boolean;
disabled?: boolean;
options: Array<[any, any]>;
onChange?: (value: any) => void;
}
/** MultiSelectField */
export interface MultiSelectFieldProps
extends Omit<HTMLAttributes<HTMLDivElement>, "label" | "onChange">,
Pick<FieldDecorationProps, "label"> {
name: string;
label?: string;
inline?: boolean;
readOnly?: boolean;
disabled?: boolean;
options: Array<[any, any]>;
onChange?: (value: Array<any>) => void;
}
/** InfiniteList */
export interface InfiniteListProps extends HTMLAttributes<HTMLDivElement> {
busy: boolean;
total: number;
count: number;
error?: boolean;
onLoadMore: () => void;
}
/** Calendar */
export interface CalendarProps
extends Omit<HTMLAttributes<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 DatePickerProps
extends Omit<HTMLAttributes<HTMLDivElement>, "onChange"> {
value: string;
displayFormat?: string;
validator?: (date: string) => string;
onChange: (date: string) => void;
}
/** DateField */
export interface DateFieldProps
extends Omit<DatePickerProps, "label" | "value" | "onChange">,
Pick<FieldDecorationProps, "label" | "leading" | "trailing" | "helper"> {
name: string;
disabled?: boolean;
onChange?: (date: string) => void;
}
/** MultiDatePicker */
export interface MultiDatePickerProps
extends Omit<HTMLAttributes<HTMLDivElement>, "onChange"> {
value: Array<string>;
displayFormat?: string;
validator?: (date: string) => string;
onChange: (dates: Array<string>) => void;
}
/** MultiDateField */
export interface MultiDateFieldProps
extends Omit<MultiDatePickerProps, "label" | "value" | "onChange">,
Pick<FieldDecorationProps, "label" | "leading" | "trailing" | "helper"> {
name: string;
disabled?: boolean;
onChange?: (dates: Array<string>) => void;
}
/** MonthDatePicker */
export interface MonthDatePickerProps
extends Omit<HTMLAttributes<HTMLDivElement>, "onChange"> {
value: string;
validator?: (date: string) => string;
onChange: (date: string) => void;
}
/** MonthDateField */
export interface MonthDateFieldProps
extends Omit<MonthDatePickerProps, "label" | "value" | "onChange">,
Pick<FieldDecorationProps, "label" | "leading" | "trailing" | "helper"> {
name: string;
disabled?: boolean;
onChange?: (date: string) => void;
}
/** TimePicker */
export interface TimePickerProps
extends Omit<HTMLAttributes<HTMLDivElement>, "onChange"> {
value: string;
onChange: (time: string) => void;
}
/** TimeField */
export interface TimeFieldProps
extends Omit<TimePickerProps, "label" | "value" | "onChange">,
Pick<FieldDecorationProps, "label" | "leading" | "trailing" | "helper"> {
name: string;
disabled?: boolean;
onChange?: (time: string) => void;
}
/** FilePicker */
export type FilePickerValidator = (file: File) => boolean;
export interface FilePickerProps
extends Omit<HTMLAttributes<HTMLDivElement>, "onChange"> {
limit?: number;
extensions?: Array<string>;
validator?: FilePickerValidator;
onChange?: (file: File) => void;
}
export interface FilePickerDialogProps extends FilePickerProps {
helper: DialogHelper;
}
/** FileField */
export interface FileFieldProps
extends Omit<FilePickerProps, "label" | "onChange">,
Pick<FieldDecorationProps, "label" | "leading" | "trailing" | "helper"> {
name: string;
disabled?: boolean;
onChange?: (file: File) => void;
}
/** TagInput */
export interface TagInputProps
extends Omit<HTMLAttributes<HTMLDivElement>, "onChange"> {
value: Array<string>;
validator?: (value: string) => string | undefined;
onInputError?: (error: string) => void;
onChange: (value: Array<string>) => void;
}
/** TagField */
export interface TagFieldProps
extends Omit<TagInputProps, "label" | "value" | "onChange">,
Pick<FieldDecorationProps, "label" | "leading" | "trailing" | "helper"> {
name: string;
disabled?: boolean;
onChange?: (value: Array<string>) => void;
}
/** UseQueryParams */
export type UseQueryParamsState = {
qp: any;
addQp: (key: string, value: string) => void;
delQp: (key: string | Array<string>) => void;
};
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;
/** UseInfiniteList */
export type InfiniteListLoadMoreTrigger = (resetPage?: boolean) => void;
export type InfiniteListOnLoadMore = (
newItems: Array<any>,
totalCount: number
) => void;
export type InfiniteListOnLoadFailed = () => void;
export type UseInfiniteListState = [
itemList: Array<any>,
currentPageNumber: number,
totalItemsInSource: number,
triggeredLoadMore: boolean,
loadMore: InfiniteListLoadMoreTrigger,
onLoadMoreSuccess: InfiniteListOnLoadMore,
onLoadMoreFailed: InfiniteListOnLoadFailed
];
export type UseInfiniteList = () => UseInfiniteListState;