Using TableWrapper to avoid dynamic height calculations

Philson Philip

By Philson Philip

on December 7, 2023

Introduction

In neeto products, we use lots of listing pages which contain Header, SubHeader and Table components. The Table component height is adjusted by inheriting the height of the wrapper that contains the Table component. One common problem for many developers is the need to calculate the height of sibling components and adjust the table wrapper height dynamically. This can often lead to double scroll issues and result in layout inconsistencies. However, we can resolve this issue is by using a generic wrapper component called TableWrapper.

The TableWrapper component serves as a wrapper for a table element. It helps to avoid the dynamic height calculation and inconsistency in heights for the parent container of the table component.

TableWrapper should be used only with Tables used in the listing layout as shown below. Container should be the parent component of TableWrapper.

1<Container>
2  <Header />
3  <SubHeader />
4  <TableWrapper>
5    <Table columnData={columnData} rowData={rowData} />
6  </TableWrapper>
7</Container>

Tablewrapper without pagination

CodeSandbox Demo

TableWrapper is a Flexbox CSS layout model designed to provide a more efficient way of arranging and aligning elements within a container. It eliminates the need for complicated height calculations and offers a flexible and intuitive approach to building responsive designs.

One of the major advantages of using Flexbox is that it allows you to create layouts without relying on dynamic height calculations. Traditionally, when working with CSS, you often need to calculate and set heights for elements to ensure they align properly. This becomes especially challenging when dealing with varying content lengths or responsive designs.

Flexbox solves this problem by providing a set of properties that control the distribution and alignment of elements within a container. Instead of setting explicit heights, you can let Flexbox handle the vertical alignment automatically based on the content and container dimensions.

Key Flexbox properties for height control

  1. display: flex;: By applying this property to the container, you activate the Flexbox layout model. It transforms the container into a flex container, allowing you to control the behaviour of its child elements.

  2. flex-direction: row/column;: This property defines the direction in which the flex items are laid out within the container. By default, it is set to row, which arranges the items horizontally. However, you can also set it to column to create a vertical arrangement.

  3. align-items: flex-start/center/flex-end;: This property aligns the flex items along the cross-axis of the container. Setting it to flex-start align the items at the top, center aligning them in the middle, and flex-end aligning them at the bottom.

  4. flex-grow: 1;: This property allows the flex items to grow and occupy the available space within the container. Setting it to 1 ensures that the items expand to fill any remaining space vertically.

  5. min-height: 0;: The min-height CSS property sets the minimum height of an element. It prevents the used value of the height property from becoming smaller than the value specified for min-height.

Benefits of using Flexbox for height control

  1. Simplified Layouts: Flexbox eliminates the need for complex height calculations, making your CSS code simpler and easier to maintain.

  2. Responsive Design: Flexbox naturally adapts to different screen sizes and orientations, providing a responsive layout without the need for media queries or explicit height adjustments.

  3. Dynamic Content: Flexbox handles varying content lengths effortlessly. Whether you have short or long content, the items will adjust their height accordingly, ensuring a consistent and visually pleasing design.

  4. Cross-browser Compatibility: Flexbox is well-supported by modern browsers, including all major ones, ensuring consistent behaviour across different platforms.

1<div class="layout__wrapper">
2  <div class="layout__container">
3    <!-- Table component -->
4  </div>
5</div>
1.layout__wrapper {
2  display: flex;
3  flex-direction: column;
4  flex-grow: 1;
5  width: 100%;
6  min-height: 0;
7  overflow: auto;
8}
9
10.layout__container {
11  flex-grow: 1;
12  min-height: 0;
13}

Using TableWrapper with table contains pagination

TableWrapper height is adjusted to contain pagination element using the hasPagination prop. hasPagination prop accepts boolean value. It can be calculated using totalCount and defaultPageSize values as shown below.

1<Container>
2  <Header />
3  <SubHeader />
4  <TableWrapper hasPagination={totalCount > defaultPageSize}>
5    <Table columnData={columnData} rowData={rowData} />
6  </TableWrapper>
7</Container>

Tablewrapper with pagination

CodeSandbox Demo

Stay up to date with our blogs. Sign up for our newsletter.

We write about Ruby on Rails, ReactJS, React Native, remote work,open source, engineering & design.