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

nggridify2

v0.6.1

Published

ng-gridify reimagined for Angular2+. Generic grid for angularJS with paging, sorting, the ability to export CSV and configurable content.

Downloads

27

Readme

NgGridify2

ngGridify is a quick and easy way to show some data on the page, and be able to sort it, configure the columns and bind some sort of javascript function to a button on each line if you want to.

PLEASE NOTE THIS IS A WORK IN PROGRESS AND WILL BE VERY BASIC UNTIL ESTIMATED COMPLETION IN MAY 2017

Why ngGridify2?

My original ng-gridify package is currently used by hundreds of developers and gets up to 1000 downloads on NPM each month, and while it works, it was my first attempt at OSS so there's a few things that i'd change for certain. It did everything I needed on a form with little to no configuration, so it made me ask the question - can I repeat this for Angular?

The idea is that you just include a simple prop in a component that contains everything that it needs to render a table of data on the page, no messing, and it just displays wih column sorting, export to CSV functionality, paging and the ability to pass in a native JSON object (not a TS type) that describes the data straight from a service to make this a breeze.

These are pretty much features that any basic online report table uses, right? It would be great to have a go-to grid.

How to use ngGridify2

Open your Angular2+ application and install the package from NPM

npm install nggridify2 --save-dev

Add the following to the app.module.ts file in your application.

import { ngGridifyModule } from './../../node_modules/nggridify2/ng-gridify.module';

Import it into the application.

    imports: [
        [/*Other Imports*/]
        ngGridifyModule
    ]

Add the following in the component that uses it for the data type that is required to bind.

import { ngGridifyData } from './../../node_modules/nggridify2/ng-gridify.types';

Declare the component in the markup and choose what data to pass in.

<ng-gridify [gridData]="myData"></ng-gridify>

At some point declare and pass in the native JSON object inside the type 'ngGridifyData'.

   // Code to be placed in the component that uses the grid.  
   myData: ngGridifyData ;

   ngOnInit() { 
    this.myData = {        
      Title: 'The Grid Title', 
      ErrorMessage: 'There has been an error!',
      ItemsPerPage: 5,      
      SortBy: 'Name',
      SortByAscending: true,
      ExportEnabled: true,      
      Columns: [
        { Name: 'Id', DisplayValue: 'Id', Width: "200" },
        { Name: 'Name', DisplayValue: 'Name', Width: "200" },        
        { Name: 'Job', DisplayValue: 'Job', Width: "200" }
      ],
      Data: [
        { Name: 'Frank Reynolds', Id: 1, Job: 'Mastermind' },
        { Name: 'Deandra Reynolds', Id: 2, Job: 'Bartender' },
        { Name: 'Ronald MacDonald', Id: 3, Job: 'Nightman' },
        { Name: 'Dennis Reynolds', Id: 4, Job: 'Dayman (Fighter of the Nightman)' },
        { Name: 'Charlie Kelly', Id: 5, Job: 'Janitor' },
        { Name: 'The Waitress', Id: 6, Job: 'Waitress' },
        { Name: 'Artemis Dubois', Id: 7, Job: 'Actress' },
        { Name: 'The Attorney', Id: 8, Job: 'Attorney' },       
        { Name: 'Ben Smith', Id: 9, Job: 'Troop' },       
        { Name: 'Rickety Cricket', Id: 10, Job: 'Tramp' },       
        { Name: 'Maureen Ponderosa', Id: 11, Job: 'Cat' },
        { Name: 'Carmen', Id: 12, Job: 'Was a man' },
        { Name: 'Uncle Jack Kelly', Id: 13, Job: 'Attorney' },
        { Name: 'Macs Dad', Id: 14, Job: 'Steals Christmas presents' },
        { Name: 'Gail the Snail', Id: 15, Job: 'Mashing it' },
        { Name: 'McPoyle', Id: 16, Job: 'Who knows' }        
      ], 
      ItemClick: {
        Function: function (item) { 
            alert( item.Name + ', ' + item.Job);
        },
        Text: 'Click me to see a summary'
      }            
    } 
  }

You can also retrieve deep values from objects by using the dot notation. For example

  Columns: [
    { Name: 'Id', DisplayValue: 'Id' },
    { Name: 'Name', DisplayValue: 'Name' },        
    { Name: 'Job', DisplayValue: 'Job' },
    { Name: 'MoreData.Stuff', DisplayValue: 'More Stuff' }
  ],
  Data: [
    { Name: 'Frank Reynolds', Id: 1, Job: 'Mastermind', MoreData: { Stuff: 'Here is some more stuff' } },
    ///...etc...
  ]

Finally, it is also possible to wire up an existing webservice or API that returns JSON data to the grid by passing a data url, For example try getting some data from this public API

  // Code to be placed in the component that uses the grid.  
  myData: ngGridifyData ;

  ngOnInit() { 
    this.myData = {        
      Title: 'Getting data from a service.', 
      ErrorMessage: 'There has been an error!',
      ItemsPerPage: 10,      
      SortBy: 'id',      
      SortByAscending: true,
      ExportEnabled: false,
      Columns: [
        { Name: 'id', DisplayValue: 'Id', Width: "200" },
        { Name: 'title', DisplayValue: 'Name', Width: "200" }
      ],
      DataUrl: 'https://jsonplaceholder.typicode.com/posts',      
      ItemClick: {
        Function: null,
        Text: null
      }            
    } 
  }

Contributions

If you want to contribute, i'm attempting to complete the following features and all contributions are welcome, this is a learning project and certainly not a vanity one.

Key Implemented Features

  1. Pass in a native JSON object and title for the grid.
  2. Read the JSON object and build a table around it.
  3. Turn on/off a feature to convert the JSON data into a CSV file.
  4. Pass in how many items per-page to display.
  5. Allow the ability to sort the columns by clicking the header and apply a default sort when the component loads.
  6. The ability to pass a service URL into the component instead of the data suggested by https://github.com/bal3000

Upcoming Features (In no particular order)

  1. The ability to add an optional type column aswell as a format, useful for dates.
  2. Some sort of loading confirmation, and/or no results message.

Credits & Thanks

Thanks to https://github.com/pbrln for implementing retrieval of deep values from objects.

Thanks to https://github.com/detectivequack for the tidy up and deep sorting fix ;)