1.1.0 • Published 5 years ago

react-flexbox-component-grid v1.1.0

Weekly downloads
10
License
Apache-2.0
Repository
github
Last release
5 years ago

react-component-grid

React Flexbox Component Grid provides a simple, flexbox-based grid to be used for tabular data or other scenarios where you desire a header-ed or header-less grid.

React - Because componentized, one-way data flowish frontend development

Flexbox - For a responsive, aligned grid that's easy to customize via parameters while also remaining unobtrusive

Component - Because just taking text or numbers is so un-Reactish, we expect to represent every cell with a component

Grid - Or datagrid. Or matrix. In this case, a framework of rectangular cells

Stories in Ready

Build Status

npm version

Installation

$ npm i -S react-flexbox-component-grid

Getting Started

The grid requires 3 properties:

Data: An array containing the row-wise data you wish to display; each data item MUST contain a unique id property (either a string or a number)

const data = [
        {
            id: 1,
            objectToSendToComponentAsProps: { quantity: 1 },
            
        },
        {
            id: 2,
            objectToSendToComponentAsProps: { quantity: 3 },
            
        },
    ];

Columns: An array representation of the columns you wish to display

const columns = [
        {
            data: 'objectToSendToComponentAsProps',
            component: reactComponentToRenderInThisColumn,
        }
    ];

Components: At least one component to render as a grid cell

const reactComponentToRenderInThisColumn = props => (
  <div>{props.quantity}</div>
)

Optional Properties

By default, the React Flexbox Component Grid relies on inline styles to build its grid. This can make changing the styling with CSS classes tricky. If you'd like to bypass the inline styling and build your own, you can set the useDefaultStyle property to false.

<ReactFlexboxComponentGrid
    data={listsData}
    columns={columns}
    useDefaultStyle={false}
/>

Creating a CSS class-based grid is relatively simple -- you can even use a mix of flexible width and fixed width columns. The HTML rendered for a single row in of the React Flexbox Component Grid will look something like this:

<div class="flex-row">
    <div class="col fixed-width-col">This is a fixed width column.</div>
    <div class="col flex-width-col">This is a flexible width column.</div>
</div>

In our CSS, we create a parent row class. Each column inside the row will be given a base col style, which will be modified using either the fixed-width-col class (in this example, 100px wide) or the flex-width-col class. You can create as many fixed width classes as you like, or tweak the flex-basis property on the flexible width column to alter how much space they should take up.

.flex-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.col { flex: 1 1 8%; }

.fixed-width-col { flex: 0 0 100px; }

.flex-width-col { flex-basis: 8.3333%; }

Note: Your project can also contain a mix of inline and class-based styling. When using the default (inline styles) implementation of React Flexbox Component Grid, be aware that inline styles have higher specificity than class-based styles and thus override any class-based styles. When using class-based styling, be careful to avoid classname conflicts.

Sample Implementations

You can also check out a few sample implementations in the examples section. These examples use Bootstrap to things like the table header and background color, but Bootstrap is not a dependency of react-component-grid.

To Run the Project Locally

Clone the repo and serve the files using the node server.js command.

Contributors:

2.0.0-rc1

5 years ago

1.1.0

6 years ago

1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago

0.5.0

6 years ago

0.4.0

8 years ago

0.3.4

8 years ago

0.3.3

8 years ago

0.3.2

8 years ago

0.3.1

8 years ago

0.3.0

8 years ago

0.2.3

8 years ago

0.2.2

8 years ago