forked from DefinitelyTyped/DefinitelyTyped
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fixed-data-table.d.ts
497 lines (447 loc) · 16.4 KB
/
fixed-data-table.d.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
// Type definitions for fixed-data-table 0.6.0
// Project: https://github.com/facebook/fixed-data-table
// Definitions by: Petar Paar <https://github.com/pepaar>, Stephen Jelfs <https://github.com/stephenjelfs>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
/// <reference path="../react/react.d.ts"/>
declare namespace FixedDataTable {
export var version: string;
/**
* Data grid component with fixed or scrollable header and columns.
*
* The layout of the data table is as follows:
*
*
* +---------------------------------------------------+
* | Fixed Column Group | Scrollable Column Group |
* | Header | Header |
* | | |
* +---------------------------------------------------+
* | | |
* | Fixed Header Columns | Scrollable Header Columns |
* | | |
* +-----------------------+---------------------------+
* | | |
* | Fixed Body Columns | Scrollable Body Columns |
* | | |
* +-----------------------+---------------------------+
* | | |
* | Fixed Footer Columns | Scrollable Footer Columns |
* | | |
* +-----------------------+---------------------------+
*
* Fixed Column Group Header:
*
* These are the headers for a group of columns if included in
* the table that do not scroll vertically or horizontally.
*
* Scrollable Column Group Header:
*
* The header for a group of columns that do not move while
* scrolling vertically, but move horizontally with the
* horizontal scrolling.
*
* Fixed Header Columns:
*
* The header columns that do not move while scrolling
* vertically or horizontally.
*
* Scrollable Header Columns:
*
* The header columns that do not move while scrolling
* vertically, but move horizontally with the horizontal scrolling.
*
* Fixed Body Columns:
*
* The body columns that do not move while scrolling
* horizontally, but move vertically with the vertical scrolling.
*
* Scrollable Body Columns:
*
* The body columns that move while scrolling vertically or
* horizontally.
*
*/
export interface TableProps extends __React.Props<Table> {
/**
* Pixel width of table. If all columns do not fit, a
* horizontal scrollbar will appear.
*/
width: number;
/**
* Pixel height of table. If all rows do not fit, a
* vertical scrollbar will appear.
*
* Either height or maxHeight must be specified.
*/
height?: number;
/**
* Maximum pixel height of table. If all rows do not fit,
* a vertical scrollbar will appear.
*
* Either height or maxHeight must be specified.
*/
maxHeight?: number;
/**
* Pixel height of table's owner, this is used in a managed
* scrolling situation when you want to slide the table up
* from below the fold without having to constantly update
* the height on every scroll tick. Instead, vary this
* property on scroll. By using ownerHeight, we over-render
* the table while making sure the footer and horizontal
* scrollbar of the table are visible when the current space
* for the table in view is smaller than the final,
* over-flowing height of table. It allows us to avoid
* resizing and reflowing table when it is moving in the
* view.
*
* This is used if ownerHeight < height (or maxHeight).
*/
ownerHeight?: number;
/**
* 'hidden'|'auto'
*/
overflowX?: string;
/**
* 'hidden'|'auto'
*/
overflowY?: string;
/**
* Number of rows in the table.
*/
rowsCount: number;
/**
* Pixel height of rows unless rowHeightGetter is specified
* and returns different value.
*/
rowHeight: number;
/**
* If specified, rowHeightGetter(index) is called for each
* row and the returned value overrides rowHeight for
* particular row.
*/
rowHeightGetter?: (index: number) => number;
/**
* To get any additional CSS classes that should be added to
* a row, rowClassNameGetter(index) is called.
*/
rowClassNameGetter?: (index: number) => string;
/**
* Pixel height of the column group header.
*
* defaultValue: 0
*/
groupHeaderHeight?: number;
/**
* Pixel height of the header.
*
* defaultValue: 0
*/
headerHeight?: number;
/**
* Pixel height of the footer.
*
* defaultValue: 0
*/
footerHeight?: number;
/**
* Value of horizontal scroll.
*
* defaultValue: 0
*/
scrollLeft?: number;
/**
* Index of column to scroll to.
*/
scrollToColumn?: number;
/**
* Value of vertical scroll.
*
* defaultValue: 0
*/
scrollTop?: number;
/**
* Index of row to scroll to.
*/
scrollToRow?: number;
/**
* Callback that is called when scrolling starts with
* current horizontal and vertical scroll values.
*/
onScrollStart?: (x: number, y: number) => void;
/**
* Callback that is called when scrolling ends or stops with
* new horizontal and vertical scroll values.
*/
onScrollEnd?: (x: number, y: number) => void;
/**
* Callback that is called when rowHeightGetter returns a
* different height for a row than the rowHeight prop. This
* is necessary because initially table estimates heights
* of some parts of the content.
*/
onContentHeightChange?: (newHeight: number) => void;
/**
* Callback that is called when a row is clicked.
*/
onRowClick?: (event: __React.SyntheticEvent, rowIndex: number) => void;
/**
* Callback that is called when a row is double clicked.
*/
onRowDoubleClick?: (event: __React.SyntheticEvent, rowIndex: number) => void;
/**
* Callback that is called when a mouse-down event happens
* on a row.
*/
onRowMouseDown?: (event: __React.SyntheticEvent, rowIndex: number) => void;
/**
* Callback that is called when a mouse-enter event happens
* on a row.
*/
onRowMouseEnter?: (event: __React.SyntheticEvent, rowIndex: number) => void;
/**
* Callback that is called when a mouse-leave event happens
* on a row.
*/
onRowMouseLeave?: (event: __React.SyntheticEvent, rowIndex: number) => void;
/**
* Callback that is called when resizer has been released
* and column needs to be updated.
*
* Required if the isResizable property is true on any
* column.
*/
onColumnResizeEndCallback?: (newColumnWidth: number, columnKey: string) => void;
/**
* Whether a column is currently being resized.
*/
isColumnResizing?: boolean;
}
/**
* Component that defines the attributes of table column.
*/
interface ColumnProps extends __React.Props<Column> {
/**
* The horizontal alignment of the table cell content.
*
* 'left'|'center'|'right'
*/
align?: string;
/**
* Controls if the column is fixed when scrolling in the X
* axis.
*
* defaultValue: false
*/
fixed?: boolean;
/**
* The header cell for this column. This can either be a
* string. a React element, or a function that generates a
* React Element. Passing in a string will render a default
* header cell with that string. By default, the React
* element passed in can expect to receive the following
* props:
*
* props: {
* columnKey: string // (of the column, if given)
* height: number // (supplied from the Table or rowHeightGetter)
* width: number // (supplied from the Column)
* }
*
* Because you are passing in your own React element, you
* can feel free to pass in whatever props you may want or need.
*
* If you pass in a function, you will receive the same props object as the first argument.
*/
header?: string | __React.ReactElement<any> | ((props: CellProps) => (string | __React.ReactElement<any>));
/**
* This is the body cell that will be cloned for this
* column. This can either be a string a React element,
* or a function that generates a React Element. Passing
* in a string will render a default cell with that
* string. By default, the React element passed in can
* expect to receive the following props:
*
* props: {
* rowIndex; number // (the row index of the cell)
* columnKey: string // (of the column, if given)
* height: number // (supplied from the Table or rowHeightGetter)
* width: number // (supplied from the Column)
* }
*
* Because you are passing in your own React element, you
* can feel free to pass in whatever props you may want or
* need.
*
* If you pass in a function, you will receive the same
* props object as the first argument.
*/
cell?: string | __React.ReactElement<any> | ((props: CellProps) => (string | __React.ReactElement<any>));
/**
* The footer cell for this column. This can either be a
* string. a React element, or a function that generates a
* React Element. Passing in a string will render a default
* header cell with that string. By default, the React
* element passed in can expect to receive the following
* props:
*
* props: {
* columnKey: string // (of the column, if given)
* height: number // (supplied from the Table or rowHeightGetter)
* width: number // (supplied from the Column)
* }
*
* Because you are passing in your own React element, you
* can feel free to pass in whatever props you may want or
* need.
*
* If you pass in a function, you will receive the same
* props object as the first argument.
*/
footer?: string | __React.ReactElement<any> | ((props: CellProps) => (string | __React.ReactElement<any>));
/**
* This is used to uniquely identify the column, and is not
* required unless you a resizing columns. This will be the
* key given in the onColumnResizeEndCallback on the Table.
*/
columnKey?: string | number;
/**
* The pixel width of the column.
*/
width: number;
/**
* If this is a resizable column this is its minimum pixel
* width.
*/
minWidth?: number;
/**
* If this is a resizable column this is its maximum pixel
* width.
*/
maxWidth?: number;
/**
* The grow factor relative to other columns. Same as the
* flex-grow API from http://www.w3.org/TR/css3-flexbox/.
* Basically, take any available extra width and distribute
* it proportionally according to all columns' flexGrow
* values. Defaults to zero (no-flexing).
*/
flexGrow?: number;
/**
* Whether the column can be resized with the
* FixedDataTableColumnResizeHandle. Please note that if a
* column has a flex grow, once you resize the column this
* will be set to 0.
*
* This property only provides the UI for the column
* resizing. If this is set to true, you will need to set the
* onColumnResizeEndCallback table property and render your
* columns appropriately.
*/
isResizable?: boolean;
/**
* Whether cells in this column can be removed from document
* when outside of viewport as a result of horizontal
* scrolling. Setting this property to true allows the table
* to not render cells in particular column that are outside
* of viewport for visible rows. This allows to create table
* with many columns and not have vertical scrolling
* performance drop. Setting the property to false will keep
* previous behaviour and keep cell rendered if the row it
* belongs to is visible.
*
* defaultValue: false
*/
allowCellsRecycling?: boolean;
}
/**
* Component that defines the attributes of a table column group.
*/
export interface ColumnGroupProps extends __React.Props<ColumnGroup> {
/**
* The horizontal alignment of the table cell content.
* 'left', 'center', 'right'
*/
align?: string;
/**
* Controls if the column group is fixed when scrolling in the X
* axis.
*
* defaultValue: false
*/
fixed?: boolean;
/**
* The header cell for this column group. This can either be
* a string. a React element, or a function that generates a
* React Element. Passing in a string will render a default
* header cell with that string. By default, the React
* element passed in can expect to receive the following
* props:
*
* props: {
* height: number // (supplied from the groupHeaderHeight)
* width: number // (supplied from the Column)
* }
*
* Because you are passing in your own React element, you
* can feel free to pass in whatever props you may want or
* need.
*
* If you pass in a function, you will receive the same props
* object as the first argument.
*/
header: string | __React.ReactElement<any> | ((props: CellProps) => (string | __React.ReactElement<any>));
}
/**
* Component that handles default cell layout and styling.
*
* All props unless specified below will be set onto the top
* level div rendered by the cell.
*
* Example usage via from a Column:
*
* const MyColumn = (
* <Column
* cell={({rowIndex, width, height}) => (
* <Cell
* width={width}
* height={height}
* className="my-class">
* Cell number: <span>{rowIndex}</span>
* </Cell>
* )}
* width={100}
* />
* );
*/
export interface CellProps extends __React.HTMLAttributes {
/**
* The row index of the cell.
*/
rowIndex?: number;
/**
* Outer height of the cell.
*/
height?: number;
/**
* Outer width of the cell.
*/
width?: number;
/**
* Optional prop that if specified on the Column will be
* passed to the cell. It can be used to uniquely identify
* which column is the cell is in.
*/
columnKey?: string | number;
}
export class Table extends __React.Component<TableProps, {}> {
}
export class Column extends __React.Component<ColumnProps, {}> {
}
export class ColumnGroup extends __React.Component<ColumnGroupProps, {}> {
}
export class Cell extends __React.Component<CellProps, {}> {
}
}
declare module "fixed-data-table" {
export = FixedDataTable;
}