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

@zeconomy/zeconomy-flextable

v1.0.1

Published

Modular Object based table React Component

Downloads

1

Readme

Zeconomy FlexTable

Introduction

FlexTable is a modular data-agnostic React Component designed to show large sets of data objects in an array with some simple interactions like selection and more.

FlexTable was designed to be as developer friendly as possible, allowing easy customization with special utilities to create headers, object mappings, and a "Plain English" approach to rendering a table so just by reading examples, getting your first table to render would be as easy as possible.

At the time of this Writing, FlexTable is not ready for Open Source, and is only to be used internally at Zeconomy Inc, but if you're reading this, I really hope we're able to one day get this guy out into the npm ecosystem :D.

Getting Started

Make sure you are connected to the Zeconomy VPN, then run these commands:

Install with npm or yarn

$ npm install https://git.zeconomy.com/bjunya/zeconomy-flextable --save
$ yarn add https://git.zeconomy.com/bjunya/zeconomy-flextable

Import the component using ES6 import syntax

import React from 'react';
import ReactDOM from 'react-dom';

import FlexTable from 'zeconomy-flextable';

// You can now use <FlexTable>

You may want to install an additional package called TableUtils. This is purely optional, but TableUtils has some highly useful utilities that will allow you to build a FlexTable with a "Plain English" or "Least Brainpower Utilized" approach. Installing TableUtils with the following command:

$ npm install https://git.zeconomy.com/bjunyua/zeconomy-flextable-utils

How to build a FlexTable

Most of this is available on an older Confluence Document from May '17. However, it does not include the new syntax for using the centralized repo as shown here.

import React from 'react';
import {render} from 'react-dom';

import FlexTable from 'zeconomy-flextable';
import { createHeader, createTableMap } from 'zeconomy-flextable-utils';

// Some dummy data for example purposes
const data = [
    {
        "object_attr_first": 'I am the first column',
        "second_object_attr": 'This data in column no. 2 :)',
        "money": 234.32
    },
    {
        "object_attr_first": 'I am the first column',
        "second_object_attr": 'This data in column no. 2 :)',
        "money": 234.32
    }
];

let headers = [];
header.push(
    createHeader('First Column', 'object_attr_first', 'string'),
    createHeader('Second Column', 'second_object_attr', 'string'),
    createHeader('Money Column', 'money', 'currency')
);

render(
    <FlexTable
        name="myTable"
        data={data}
        selectable={false}
        headers={headers}
        useApi={false}
        itemMap={createTableMap(headers)} />,
    document.getElementById('container')
);