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

entity-material-table

v0.0.11

Published

"entity-material-table" is an Angular custom component that simplify table creation based on entity data, with pagination.

Downloads

4

Readme

Entity Material Table

"entity-material-table" is an Angular custom component that simplify table creation based on entity data, with pagination.

Installation

To install the library use:

npm install entity-material-table

Usage

To use the library in your project, follow these steps:

  1. Import EntityMaterialTableModule module into your module:
import { EntityMaterialTableModule } from 'entity-material-table';

@NgModule({
  imports: [
    // ...
    EntityMaterialTableModule
  ],
  // ...
})
export class AppModule { }
  1. In your component, use the entity-material-table component in your HTML template
<entity-material-table [options]="tableOptions" (selected)="onRowSelected($event)"></entity-material-table>
  1. Define the table options in your component
import { EntityMatTableOptions } from 'entity-material-table';

@Component({
  // ...
})
export class YourComponent {
  tableOptions: EntityMatTableOptions<any> = {
    // Configura le opzioni della tabella qui
  };

  onRowSelected(row: any) {
    // Gestisci l'evento di selezione della riga qui
  }
}

EntityMatTableOptions

| Field | Type | Description | |-------------------|-----------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------| | queryParameters | Map<string, any> | A map of parameters to pass in the HTTP request to the server. | | showSelection | boolean | Indicates whether the row selection column should be displayed in the table.(default false) | | rows | T[] | An array of data (rows) to display in the table. | | serverHttp | Function | A function that performs the HTTP request to the server to fetch table data. | | transcoder | Function | A function that converts the server's HTTP response into table data. | | paginator | EntityMatTablePaginator | Pagination options, including possible values for the number of rows per page, the default value, and whether pagination should be displayed. | | actions | EntityMatTableAction[] | An array of custom actions to display in the "Actions" column of the table. Each action can have an icon, a label, and a callback function. | | columns | EntityTableColumn[] | An array of objects defining the columns of the table. Each object contains information such as a label and property to display. | | excelConfig | EntityMatTableExcelConfig | Configure options to export data in xlsx or csv | | cssClassList | string[] | Css class to add on tag #table |

EntityMatTablePaginator

| Field | Type | Description | |------------------------|-------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | size | number[] | Paginator range size | | default | number | Page index default. Some servers have the value 0 setted as first index page, other 1 | | pageSize | number | Page size | | show | boolean | Display validator (default false). | | queryParametersAlias | Map<string, any> | A map that defines how replace the paginator pageSize and pageIndex parameters. Their name are replaced before call the function passed to serverHttp. the necessary parameters are page and size |

EntityMatTableAction

| Field | Type | Description | |---------------|--------------------|----------| | templateRef | string | Template |

EntityMatTableExcelConfig

| Field | Type | Description | |---------------|----------|-------------------------------| | extension | string | File extension (default xlsx) | | sheetName | string | Generated sheet name | | fileName | string | Generated file name |

Component attributes

| Field | Type | Description | |-----------|----------------------------------|------------------------------------------------------------------------------------------------------| | options | @Input<EntityMatTableOptions> | Options to configure component | | selected | @Output<EntityMatTableOptions> | Emit the table selected row | | onSelection | @Output<EntityMatTableOptions> | Emit the rows selected by checkbox in selection column. It works with options.showSelection setted true. |

Example usage

See Test project to learn how use library with async or sync data. Here a small recap for async data usage

  /**
   * Function to construct an http call. This is the callback passed as a parameter to tableOptions in serverHttp.
   * If our server indicates the page size parameter with alias 'elementPerPage' then inside 'queryAliasParameter' we need to add aliasParameter page -> per_page
   * @param params
   */
  public buildHttpCall(params = {}) {
    return this.http.get('https://reqres.in/api/users', {
      params
    });
  }

After you define call http with httpClient, you can pass the returned observable to serverHttp. This is an example of tableOptions config

get httpTableOptionsConfig() {

  let queryParameters = new Map<string, any>;
  let queryParametersAlias = new Map<string, any>;

  queryParametersAlias.set('size', 'per_page');
  queryParametersAlias.set('page', 'page');

  //With serverHttp value, rows property doesn't need
  let tableOptions: EntityMatTableOptions<Element> = {
    queryParameters: queryParameters,
    serverHttp: this.buildHttpCall,
    showSelection: true,
    transcoder: this.transcoder,
    paginator: {
      show: true,
      size: [1, 2, 3],
      default: 1,
      queryParametersAlias
    },
    columns: [
      {
        property: 'id',
        label: 'Id'
      },
      {
        property: 'email',
        label: 'Email'
      },
      {
        property: 'first_name',
        label: 'Nome'
      },
      {
        property: 'last_name',
        label: 'Cognome'
      },
      {
        property: 'avatar',
        label: 'Avatar'
      }
    ]
  };

  return tableOptions;
}

Angular Theme CSS

To display Angular theme style you need to import stylesheet inside your application. Normally the style is added inside angular.json

   "styles": [
      ...,
      "node_modules/@angular/material/prebuilt-themes/indigo-pink.css"
   ]

Export excel

Excel export functionality need a templateRef to work, through the @ViewChild usage.

Define your HTML with button, icon or what do you want. The main purpose is call the function onExportExcel.

HTML

<div>
    <button (click)="entityMaterialTableComponent.onExportExcel()">Export csv</button>
</div>
<entity-material-table [options]="tableOptions" (onSelection)="onSelectionChange($event)"></entity-material-table>

TS

@ViewChild(EntityMaterialTableComponent) entityMaterialTableComponent: EntityMaterialTableComponent<Ex>;

Cell template

The Table renders cells as string value. You could pass a Pipe to transform the value for single cell. If you want to customize cell template, you must define a cellTemplate inside your code.

Pipe usage

config.columns = [
  {
    label: 'Id',
    property: 'objectId'
  },
  {
    label: 'Amount ($)',
    property: 'amount',
    pipe: {
      ref: new CurrencyPipe('en-US'),
      args: ['EUR']
    }
  }
];

Custom template

<entity-material-table [options]="tableOptions" (onSelection)="onSelectionChange($event)">
    <ng-template #cellTemplate let-element let-property="property">
        <div *ngIf="property != 'actions'">{{element[property]}}</div>
        <div *ngIf="property == 'actions'">
            <div>
                <button (click)="onDelete(element)">cancella</button>
            </div>
        </div>
    </ng-template>
</entity-material-table>

Demo App

For more example explore my demo app

Contact

If you like this library, or you find some defect/bug, you could contact me through my personal web site.

CONTACT ME

Contribute

If you wish to contribute to this library, please fork the repository and submit your pull requests. We welcome contributions from the community!

Licenza

Please make sure to customize this README with specific information about your library, including installation instructions, usage, and any other necessary documentation.