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

ng-gridify

v1.5.1

Published

Generic grid for angularJS with paging, sorting, the ability to export CSV and configurable content.

Downloads

34

Readme

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. You can event include the option to export the content to a CSV file.

It's built with AngularJS 1.5.x and Bootstrap (although it's not required) and you can knock some data onto a page before you can say Bingo.

Installation

To install ngGridify, you just need to .........

npm install ng-gridify

Required stuff

Only two Javascript files are actually required, but I recommend you use the Bootstrap CSS file in addition. After you have run 'npm install', just make a reference to the following resources in your HTML document.

<script src="./node_modules/angular/angular.min.js"></script>
<script src="./node_modules/ng-gridify/ngGridify.js"></script>

<link href="/node_modules/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet">

Using the component

To use the component itself, you just need to add the reference in your angular module like so...

angular.module('YourApplication', ['ngGridify'])

Then you can use the component like this...

<ng-gridify config='config'></ng-gridify>

Notice that the component takes a 'config' object? More about that...

The Config Object

The config object contains the data, and any options that you want to apply to the component, such as whether to show paging, the ability to export, how many items appear on a single page, and the columns that are required to be built by the component; including their types.

Let's say that we have this very basic collection of JSON data:

var data = [{
    "website": "http://www.google.com",
    "age": 40,
    "name": "Mclean Roth",
    "email": "[email protected]",
    "createddate":"11 June 2016"
},
{
    "website": "http://www.google.co.uk",
    "age": 25,
    "name": "Marisa Sexton",
    "email": "[email protected]",
    "createddate":"10 June 2016"
},
{
    "website": "http://www.iainplimmer.co.uk",
    "age": 33,
    "name": "Aline Baird",
    "email": "[email protected]",
    "createddate":"9 March 2016"
}];

We need to create a config object that we pass to the component. The example below will show two items per page, paging options turned on, a default ordering of the 'name' column.

  • text - shows the value on the page as it appears in the JSON data.
  • number - shows the value on the page as it appears in the JSON data. *Invalid numbers will be returned as null.
  • email - creates a 'mailto' link on the data.
  • date - formats the column as a date, you can pass in an additional 'format' property here. *Invalid dates will be returned as null.
  • link - you guessed it, creates a hyperlink with a new window target.

Finally, let's put that together in the config object that we would pass. An example for each 'type' is included in the JSON above. To display a column from your JSON, you must include it in the columns collection. The minimum you can have is the 'column' property.

var config = {
    data : data,
    order : 'name', 
    class : 'table',
    export : false,
    itemClick : null,
    itemClickText : null,
    itemsPerPage: 2,
    paging: true,
    columns: [
        { column: 'name', display: 'Name', type: 'text', width: '150px' }, 
        { column: 'age', display: 'Age', type: 'number', width: '80px' },
        { column: 'email', display: 'Email', type: 'email', width: '150px' },
        { column: 'createddate', display: 'Created Date', type: 'date', format: 'dd MMM yyyy', width: '150px' },
        { column: 'website', display: 'Link', type: 'link', width: '150px' }
        ]         
};

The Columns Collection

This is required. Only columns specified in this collection will be displayed on the grid.

  • If you want to sort a column that contains numbers or dates, be sure to add it's type as 'number' or 'date'.
  • You CANNOT call your column 'date' as this will break the configuration, sorry.
  • Any column can be given a 'width' property to describe it's width in pixels (Percentage not included yet). Although this width is automatically set to the max column size if not specified.

Exporting to CSV

By setting the 'export' property to true, the grid will include a button that allows the user to download the content to a CSV file in the browser.

The default setting is that it exports the same columns as in the view.

Styling

Section to be completed...

Ordering

By Default, column ordering is turned on, you just need to set the default order when the grid is displayed using the 'order' property.

Paging

You can turn paging on or off, but the 'itemsPerPage' will still need to be passed. If you want a single page, set this value to the max size of your data collection.

Binding Data from HTTP Promises

You can of course bind data from HTTP promises. I recommend that you first set the 'data' property to and empty array [] then after the config stage has passed and the promise resolved, then bind the data.

The example here shows this technique in practice. Basically, the watcher on the collection is invoked and circumvents any race conditions. If you have a better way, please let me know ;)

Adding a function to a row

You can add a button to each row that accepts a function, and some text. Let's take the following simple javascript function that just accepts the data from the row. This appears on the far right column.

function openFunction(val) {
    alert(val.name + ' has been clicked');
}

We need to add it to our config file like so...

itemClick : openFunction,
itemClickText : 'Open',

Sample Code

I've managed to put together a few use cases in the samples folder of the the github repo