npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

c2-widget-grid

v1.0.9

Published

a reactjs widget grid component

Downloads

20

Readme

C2 Widget Grid

C2 Widget Grid is a wrapper around react-grid-layout to support responsive, saveable, widget(component) grids.

Installation

Install C2 Widget Grid using npm:

npm install -S c2-widget-grid

And include the supporting css files in your application(according to the react-grid-layout package):

import '../../node_modules/react-grid-layout/css/styles.css'
import '../../node_modules/react-resizable/css/styles.css'

Usage

Example usage looks like the following

import WidgetGrid from 'c2-widget-grid'

class Dashboard extends Component {
  addWidget = () => {
    this.grid.addWidget({w: 2, h: 2}, 'ContactList', {company: 'abc123'})
  }

  render () {
    return (
      <WidgetGrid
        ref={grid => this.grid = grid}
        layouts={layouts} // retrieved from localStorage/redux
        widgets={widgets} // retrieved from localStorage/redux
        components={{ContactList, PerformanceChart}}
        onChange={(layouts, widgets) => save({layouts, widgets})} // save to localStorage/redux
        common={{
          loginId: 'foobar'
          locked: this.state.locked
        }}
        isDraggable={!this.state.locked}
        isResizable={!this.state.locked}
      />
    )
  }
}

The values inside the layouts and widgets props will be managed by c2-widget-grid. You are responsible for persisting and fetching those values. The onChange prop function will be called when either the layouts or the widgets change.

Adding widgets

After the grid/widgets are built from the initial layouts and widgets props, they can be added via the grid's addWidget method. The first argument is the props for the grid item(see grid item props). The second argument is the component key. This must match a key found in the components that were assigned to the WidgetGrid. ContactList and PerformanceChart are component classes in the example above. The last argument is an object of props that are specific to this widget. This will be passed to the component as the widget prop.

Widget components

A widget component will be passed 4 props: item, widget, common, and updateWidget.

  • item - this is the react-grid-layout item object. It contains things like w, h, x, y, etc.
  • widget - this is an object containing all arbitrary props you passed into the third argument of addWidget().
  • common - WidgetGrid accepts a common prop. This object will be passed along to all widget components.
  • updateWidget - this is a function that allows you to update the widget prop. It works very similarly to setState. It exists to trigger the onChange function so new values can be persisted.

Removing widgets

By default, the following renderer is used to render the container for all widgets. This can be set via the widgetContainer prop on the grid. For technical reasons, this must be a function that returns jsx.

function defaultWidgetContainer ({item, common, children, remove}) {
  return (
    <div key={item.i} data-grid={item} style={{border: '1px solid black'}}>
      {common.locked ? null : (
        <div style={{clear: 'both', textAlign: 'right'}}>
          <a onClick={remove} className="pointer">&times; &nbsp;</a>
        </div>
      )}
      {children}
    </div>
  )
}

Example

This project contains a working example illustrating usage of most of the features.