Design Converter
Education
Software Development Executive - I
Last updated on Nov 8, 2023
Last updated on Nov 8, 2023
Semantic UI React provides a powerful toolset for creating flexible and responsive tables. This blog post will delve into the depths of the Semantic UI React table, focusing on its features and capabilities and how it can be used to display complex structured data.
Semantic UI React table is a particular faster form of table rendering that allows developers to create tables that can resize table cells based on the content evenly. It is a part of the Semantic UI library, a development framework that helps create beautiful, responsive layouts using human-friendly HTML.
1import React from 'react' 2import { Table } from 'semantic-ui-react' 3 4const DataTable = () => ( 5 <Table celled> 6 <Table.Header> 7 <Table.Row> 8 <Table.HeaderCell>Student Name</Table.HeaderCell> 9 <Table.HeaderCell>age</Table.HeaderCell> 10 </Table.Row> 11 </Table.Header> 12 13 <Table.Body> 14 <Table.Row> 15 <Table.Cell>John Doe</Table.Cell> 16 <Table.Cell>18</Table.Cell> 17 </Table.Row> 18 </Table.Body> 19 </Table> 20) 21 22export default DataTable 23
The Semantic UI React table is designed to handle complex structured data. It provides a way to structure your data in a way that is both visually appealing and easy to understand. This is particularly useful when displaying complex structured data that would be difficult to understand in other formats.
One of the critical features of the Semantic UI React table is its ability to stack table content responsively. This means that the table content will adjust based on the size of the user's screen. This is particularly useful when users access content on various devices, from desktop computers to mobile phones.
The Semantic UI React table also provides a way to control the column count. This allows developers to specify the number of columns in the table, ensuring that the table takes up only as much space as necessary.
1import React from 'react' 2import { Table } from 'semantic-ui-react' 3 4const DataTable = () => ( 5 <Table celled unstackable> 6 <Table.Header> 7 <Table.Row> 8 <Table.HeaderCell>Product Name</Table.HeaderCell> 9 <Table.HeaderCell>Qty</Table.HeaderCell> 10 <Table.HeaderCell>Price</Table.HeaderCell> 11 </Table.Row> 12 </Table.Header> 13 14 <Table.Body> 15 <Table.Row> 16 <Table.Cell>Notebook</Table.Cell> 17 <Table.Cell>1</Table.Cell> 18 <Table.Cell>60</Table.Cell> 19 </Table.Row> 20 </Table.Body> 21 </Table> 22) 23 24export default DataTable 25
The appearance of the Semantic UI React table can be customized in a variety of ways. For example, developers can control the table's colors, allowing them to increase contrast and improve readability. This can be done by applying a darker color to the table header and alternate rows, known as stripe alternate rows.
In addition, the Semantic UI React table allows for text alignment within individual cells. This means that the cell contents can be aligned to the left, right, or center, depending on the needs of the data being displayed.
1import React from 'react' 2import { Table } from 'semantic-ui-react' 3 4const DataTable = () => ( 5 <Table celled striped> 6 <Table.Header> 7 <Table.Row> 8 <Table.HeaderCell textAlign='center'>Product Name</Table.HeaderCell> 9 <Table.HeaderCell textAlign='right'>Qty</Table.HeaderCell> 10 </Table.Row> 11 </Table.Header> 12 13 <Table.Body> 14 <Table.Row> 15 <Table.Cell>Notebook</Table.Cell> 16 <Table.Cell>1</Table.Cell> 17 </Table.Row> 18 </Table.Body> 19 </Table> 20) 21 22export default DataTable 23
The Semantic UI React table provides several features that enhance the readability of the data. For example, it allows developers to increase contrast between rows by using a darker color for alternate rows. This feature, known as stripe alternate rows, can make it easier for users to distinguish between different rows of data.
In addition, the Semantic UI React table allows developers to increase readability by adjusting the size of the table cells. This can be done by using the 'resize table cells based on content' feature, which adjusts the size of the cells based on the content they contain.
The Semantic UI React table is designed to handle large amounts of data efficiently. It does this by rendering only as much data as necessary, ensuring the user's browser is not overwhelmed with too much data. This feature is particularly useful when dealing with large datasets, as it allows the table to display more rows while keeping the number of rows visible to the user manageable.
1import React from 'react' 2import { Table } from 'semantic-ui-react' 3 4const DataTable = ({ data }) => ( 5 <Table celled> 6 <Table.Header> 7 <Table.Row> 8 <Table.HeaderCell>Product Name</Table.HeaderCell> 9 <Table.HeaderCell>Qty</Table.HeaderCell> 10 </Table.Row> 11 </Table.Header> 12 13 <Table.Body> 14 {data.slice(0, 10).map((item, index) => ( 15 <Table.Row key={index}> 16 <Table.Cell>{item.field1}</Table.Cell> 17 <Table.Cell>{item.field2}</Table.Cell> 18 </Table.Row> 19 ))} 20 </Table.Body> 21 </Table> 22) 23 24export default DataTable 25
In the above code snippet, we're only rendering the first 10 items of the data array. This ensures that the browser is manageable if the data array is very large. It also keeps the number of rows visible to the user manageable.
The Semantic UI React table is a powerful tool for developers who need to display complex structured data. With its responsive design, customizable appearance, enhanced readability, and efficient data handling, it provides a robust and flexible solution for any data display needs.
The Semantic UI React table is a tool that can help you create beautiful, responsive, and user-friendly tables. So why wait? Start exploring the power of the Semantic UI React table today!
Tired of manually designing screens, coding on weekends, and technical debt? Let DhiWise handle it for you!
You can build an e-commerce store, healthcare app, portfolio, blogging website, social media or admin panel right away. Use our library of 40+ pre-built free templates to create your first application using DhiWise.