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

@foureyez/ng-data-table

v0.0.8

Published

This angular library provides sorting, filtering..(adding more) capabilities to normal table. Built using Angular 7 and Bootstrap 4.

Downloads

1

Readme

ng-data-table

This angular library provides sorting, filtering..(adding more) capabilities to normal table. Built using Angular 7 and Bootstrap 4.

Github Repo

Build Status

  • The demo files are located in /src/app folder.
  • Data-Table library source is located in projects/data-table.

Usage

To use this library in your project just install the dependency by running

npm i @foureyez/ng-data-table.

Install all dependencies :

  • npm i bootstrap
  • npm i @fortawesome/angular-fontawesome
  • npm i @fortawesome/fontawesome-svg-core
  • npm i @fortawesome/free-solid-svg-icons

Also add this import to your global styles css file (styles.css) for bootstrap if you haven't already.

@import "~bootstrap/dist/css/bootstrap.css";

Basic Table

  • In app.module.ts
import { DataTableModule } from '@foureyez/ng-data-table';
...
...
...
@NgModule({
  ...
  imports: [
    ...
    DataTableModule,
    ...
  ],
})
  • In .html file
<data-table [columns]="columns" [rows]="rows"></data-table>

Defining rows and columns in component

  • rows can be any valid JSON array.
  • columns can be defined inside the component.
  • data-table takes columns as a array of Column type.
  • E.g.
    import { Column } from '@foureyez/ng-data-table';
    ...
    ...
    columns: Column[];
    rows = [{
        id: '1',
        name: 'Abhijeet',
        age: '23',
        address: 'Hyderabad'
    }, {
        id: '2',
        name: 'Anmol',
        age: '43',
        address: 'Hyderabad'
    },
    ...
    ...
    ...];
    
    constructor() {
        this.columns = new Array<Column>();
                            //id, title, sortable, filterable;
        this.columns.push(new Column('id', 'ID', false, false));
        this.columns.push(new Column('name', 'Name', true, true));
        this.columns.push(new Column('age', 'Age', true, true));
        this.columns.push(new Column('address', 'Address', true, true));
    }

Column Attributes

| Attribute | Description | | --------- | ----------- | | id | This represents attribute in one row | | title | What needs to be displayed on column header | | sortable | If the current column need to be sortable or not (true : false) | | filterable | If the current column need to be filterable or not (true : false) |

  • Will be adding more attributes to Column.

Table Attributes

| Attribute | Description | Values | Default | Example | | --------- | ------------------------------ | ----------- | ------- |------- | | columns | Defines the columns in the datatable | columnData | null | <data-table [columns]="columnData"></data-table> | | rows | Defines the rows in the datatable | rowData | null | <data-table [rows]="rowData"></data-table> | | filterEnabled | Defines weather rows can be filtered (For all rows) | true or false | false | <data-table [filterable]=true></data-table> | | shareLinksEnabled | Defines weather to show links for all rows | true or false | false | <data-table [shareLinksEnabled]=true></data-table> |

rows and columns objects can be defined in the angular component. E.g. here

Contribute

Development server

To run this project locally :

  • Go to root of the project.
  • Install angular-cli globally npm install -g @angular/cli
  • Run npm install to install all dependencies.
  • Run ng build @foureyez/ng-data-table to build the library locally in your machine. dist folder will be generated at the root of the project.
  • Run ng serve to build the demo app and launch it in a dev server. Navigate to http://localhost:4200/ to access the demo.