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

angular-minimal-grid

v1.2.6

Published

Implementation of data grid using twitter bootstrap for angularjs applications.

Downloads

23

Readme

angular-minimal-grid

Implementation of data grid using bootstrap (^3.x.x) for angular applications (^1.x.x).

Uses custom style of dataTable.

Installation

Bower

$ bower install angular-minimal-grid

Embed it in your HTML:

<link href="./bower_components/angular-minimal-grid/css/minimal-grid.css" rel="stylesheet">
<script src="./bower_components/angular-minimal-grid/js/minimal-grid.js"></script>

NPM

$ npm install angular-minimal-grid

Embed it in your HTML:

<link href="./node_modules/angular-minimal-grid/css/minimal-grid.css" rel="stylesheet">
<script src="./node_modules/angular-minimal-grid/js/minimal-grid.js"></script>

Dependency injection

Inject angular-minimal-grid module as a dependency into your app:

var app = angular.module('app', [
  'ngMinimalGrid'
])

Usage

Example of minimum usage:

<minimal-grid columns="myColumns" rows="myRows"></minimal-grid>

In controller:

$scope.myColumns = [
  { key: 'name', title: 'Name' },
  { key: 'lastName', title: 'Last Name' },
  { key: 'age', title: 'Age' }
]
$scope.myRows = [
  { name: 'John ', lastName: 'Doe', age: 30 },
  { name: 'Marie ', lastName: 'Doe', age: 28 }
]

image

That's all.

Customization

Custom labels

It's suportted custom labels by Provider methods:

| method | property | default value | | ------------------------- | ---------------- | ---------------------------------- | | setStatsMessage(String) | statsMessage     | 'Showing %1 to %2 of %3 results' | | setFirstLabel(String) | firstButtonLabel | First                           | | setLastLabel(String) | lastButtonLabel | Last                             |

app.config(function(minimalGridConfigProvider){
  minimalGridConfigProvider
    .setStatsMessage('Mostrando %1 à %2 de %3 resultados')
    .setFirstLabel('Primeiro')
    .setLastLabel('Último')
})

Custom rendering

It's suportted custom rendering of cell value: uses onRender

$scope.myColumns = [
  { key: 'name', title: 'Name' },
  { key: 'lastName', title: 'Last Name' },
  { key: 'age', title: 'Age', onRender: function(val){
    if (val%2 == 0)
      return '<b>'+val+'</b>' // HTML allowed
    else
      return val
  } }
]
$scope.myRows = [
  { name: 'John ', lastName: 'Doe', age: 30 },
  { name: 'Marie ', lastName: 'Doe', age: 28 }
]

Max limit per page

Set the max rows peer page. Default is 10.

<minimal-grid columns="myColumns" rows="myRows"
  pagination-max="15"
  ></minimal-grid>
Max limit of pagination

Set the range of number's page to show. Default is 5.

<minimal-grid columns="myColumns" rows="myRows"
  pagination-range="3"
  ></minimal-grid>

Nested objects

It's suportted nested objects: uses angular's parse.

$scope.myColumns = [
  { key: 'person.user.name', title: 'Name' },
  { key: 'lastName', title: 'Last Name' },
  { key: 'age', title: 'Age' }
]
$scope.myRows = [
  { person: { user: { name: 'John ' } }, lastName: 'Doe', age: 30 },
  { person: { user: { name: 'Marie ' } }, lastName: 'Doe', age: 28 }
]

Getting the control

Keep in mind: this implementation uses the power of callbacks to do anything by out of the grid directive.

The isolated scope binding:

| property | type | required | | ---------------------- | -------- | -------- | | columns | array | yes | | rows | array | yes | | fake | bool | | | totalRows | integer | | | pagination-max | integer | | | pagination-range | integer | | | on-change-order-by | function | | | on-change-paginate | function | | | on-click-row | function | |

on-click-row

If you want to do somenthing when the user clicks on a row just add a binding on a click:

<minimal-grid columns="myColumns" rows="myRows"
  on-click-row="myCallbackClick(row)"
  ></minimal-grid>

row will be something like this:

{
  name: "John", 
  lastName: "Doe", 
  age: 30
}

It's important to pass "row" as parameter: Uses angular's parameter by reference.

on-change-paginate

If you want to do somenthing when the user clicks on a page number (previous or next) just add a binding on a paginate:

<minimal-grid columns="myColumns" rows="myRows"
  on-change-paginate="myCallbackPaginate(pages)"
  ></minimal-grid>

pages will be something like this:

{
  current: 2,
  first: 1, 
  last: 10, 
  max: 10, 
  next: 3, 
  pagination: 1, 
  previous: 1, 
  range: 5, 
  total: Array(10) 
}

It's important to pass "pages" as parameter: Uses angular's parameter by reference.

on-change-order-by

If you want to do somenthing when the user clicks on a header (to change the order by) just add a binding on a order by:

<minimal-grid columns="myColumns" rows="myRows"
  on-change-order-by="myCallbackOrderBy(orderBy)"
  ></minimal-grid>

orderBy will be something like this:

{
  orderdirection: "asc", 
  orderby: "name"
}

It's important to pass "orderby" as parameter: Uses angular's parameter by reference.

fake mode

Here's the trick! Setting fake="true" makes the grid perform ordernation and pagination just visualy. This way it's possible to perform yourself ordenation or pagination or whatever you want. Perfect to make async calls and server things.

<minimal-grid columns="myColumns" rows="myRows"
  fake="true"
  ></minimal-grid>

Using this mode you will need to set the row's length by setting totalRows

<minimal-grid columns="myColumns" rows="myRows"
  fake="true"
  total-rows="myRowsLenght"
  ></minimal-grid>

Combine with callbacks and feel the power.

Tests

To run the package's test, first install the dependencies, then run npm test:

$ npm install --only=dev
$ bower install

or

$ npm install

License

MIT License