components
Table (code)
A table is used to organise and display tabular data in a way that's easy to scan.
Title | Amount of page views |
---|---|
A very interesting article about fishes | 7,654,964 |
Look at this! | 13,223,568 |
How you can save the planet | 420 |
Props
Name | Type | Default | Required | Description |
---|---|---|---|---|
columns | Array<{ "title": "String" "field": "String" "textAlign": "'left''center''right'" "width": "String01234567891011'auto''full'" "colSpan": "Number" "ellipsis": "Boolean" }> | - | - | - |
data | Array<Object> | - | - | - |
emptyDescription | String | - | true | - |
emptyIcon | FunctionStringNodeObject | Search | - | - |
loading | Boolean | - | - | Show a loading state (e.g. while fetching data). |
sorting | Boolean | - | - | - |
tableLayout | 'auto''fixed''inherit' | 'auto' | - | - |
System Props
System Props
Next to the properties listed in the propstable, a collection of system props can be added to any component for further general styling and layouting purposes. These props vary per component.
To read more about the system, click here to check out its dedicated page.
Columns
default: undefined
columns defines the upper row of the table and tells the table rows where to find the necessary data.
This is an array of objects, one for each column. The structure of that object is as follows:
- title (required): The text that will be used in the table's header.
- field (required): The key that corresponds to a key in the data array's objects.
- textAlign (optional): How the column's text should be aligned.
Title | Amount of page views |
---|---|
No articles have been published |
Data
default: undefined
Based on the fields defined in the columbs prop, the data object should be an array that has objects with keys corresponing to the keys you defined.
If a key would not exist on a row, a - character will be shown.
Title | Amount of page views |
---|---|
A very interesting article about fishes | 7,654,964 |
Look at this! | 13,223,568 |
No one likes me | - |
Empty table
emptyIcon default: Search
emptyDesciption default: undefined
If the data property is either not defined or an empty array, the table will show as empty. You can customize the empty display by using emptyDescription and emptyIcon.
Title | Amount of page views |
---|---|
No articles have been published |
TableLayout
default: auto
Defines the algorithm used to lay out table cells, rows, and columns.
Col 1 | Col 2 | Col 3 | Col 4 |
---|---|---|---|
A much longer piece of content for demo purposes. More goes here. | Example text | Example text | Example text |
Example text | Example text | Example text | Example text |
Col 1 | Col 2 | Col 3 | Col 4 |
---|---|---|---|
A much longer piece of content for demo purposes. More goes here. | Example text | Example text | Example text |
Example text | Example text | Example text | Example text |
Column width
default: auto
Sets the width of the column. If you want to be sure to have a fixed width, use tableLayout fixed.
Col 1 | Col 2 | Col 3 | Col 4 |
---|---|---|---|
This cell tries to be 700px | Example text | Example text | Example text |
Example text | Example text | Example text | Example text |
Col 1 | Col 2 | Col 3 | Col 4 |
---|---|---|---|
This is really 700px | Example text | Example text | Example text |
Example text | Example text | Example text | Example text |
Ellipsis
default: undefined
If a collumn has ellipsis, overflowing texts will be cut and ellipsis will be added.
Col 1 | Ea aliqua sit do ullamco mollit esse duis ad | Col 3 | Col 4 |
---|---|---|---|
Ea aliqua sit do ullamco mollit esse duis ad. | Example text | Example text | Example text |
Example text | Example text | Example text | Example text |
Sorting
default: undefined
The Table has a basic sorting feature that lets users sort data by any column. To make it possible, set the property sorting to true.
Marilyn | Monroe | 1926 | Los Angeles |
Abraham | Lincoln | 1809 | Hodgenville (Kentucky) |
Paul | McCartney | 1942 | Liverpool |
Non sorting columns
Make specific columns non-sortable by adding a sortable key to false. In the example below the Name field sortable is set to false.
Name | |||
---|---|---|---|
Marilyn | Monroe | 1926 | Los Angeles |
Abraham | Lincoln | 1809 | Hodgenville (Kentucky) |
Paul | McCartney | 1942 | Liverpool |
Component sorting not supported
The default sorting method is only limited to non component data and will cause errors when it tries to sort columns with components.That's why we recommend giving that specific column a sortable: false key.
Birthplace | |||
---|---|---|---|
Marilyn | Monroe | 1926 | |
Abraham | Lincoln | 1809 | |
Paul | McCartney | 1942 |
Custom sorting
It's also possible to pass a customSort algorithm to specific columns. In the example below the new algorithm sorts by length of string of birthpllace.
Marilyn | Monroe | 1926 | Los Angeles |
Abraham | Lincoln | 1809 | Hodgenville (Kentucky) |
Paul | McCartney | 1942 | Liverpool |