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

@mardxmag/ons-core-datatable

v1.2.1

Published

Componente de *grid* que permite reposicionar colunas, ordenar linhas, filtrar registros e armazenar o estado. Este componente foi desenvolvido com base no [ngx-datatable](http://swimlane.github.io/ngx-datatable/). Os exemplos apresentados podem ser enco

Downloads

1

Readme

ONS Core DataTable

Componente de grid que permite reposicionar colunas, ordenar linhas, filtrar registros e armazenar o estado. Este componente foi desenvolvido com base no ngx-datatable. Os exemplos apresentados podem ser encontrados em ons-core/src/app/samples/data-table-example.

Dependências

npm install --save @swimlane/ngx-datatable@^13.1.0

Utilização do componente

O ONS Core DataTable tem como elemento básico o <ngx-datatable>. Grande parte da funcionalidade é conseguida modificando os atributos deste elemento.

Importações

É necessário importar estes módulos no componente a ser desenvolvido.

import { NgxDatatableModule } from '@swimlane/ngx-datatable';
import { OnsCoreDatatableModule } from 'ons-core-datatable';

  imports: [
    NgxDatatableModule,
    OnsCoreDatatableModule
  ]

Diretivas

Atentar para os atributos [count] e [rows], que devem fazer bind com o objeto filterResult do dataTable.

<ngx-datatable
  class="material"
  [columns]="dataTable.columns"
  [columnMode]="'force'"
  [headerHeight]="50"
  [footerHeight]="50"
  [rowHeight]="'auto'"
  [sortType]="'multi'"
  [sorts]="dataTable.sorts"

  [externalPaging]="true"
  [offset]="dataTable.filterOffset"
  [limit]="dataTable.filterRowsPerPage"
  [count]="dataTable.filterResult.totalCount"
  [rows]="dataTable.filterResult.tableData"
  (page)="dataTable.onFilter($event)"

  (reorder)="dataTable.onReorderCb($event)"
  (sort)="dataTable.onColumnSortCb($event)"
  (resize)="dataTable.onResizecb($event)">
</ngx-datatable>

Estilos (CSS)

É necessário importar os estilos do componente data-table para o estilo principal do projeto que irá utilizar esta biblioteca.

/* Estilos para o ngx-datatable */
@import '~@swimlane/ngx-datatable/release/index.css';
@import '~@swimlane/ngx-datatable/release/assets/icons.css';
@import '~@swimlane/ngx-datatable/release/themes/material.css';

Classes e Interfaces

DataTableConfiguration

Contém

  • Os estados (DataTableState) inicial e atual da tabela, para permitir desfazer alterações;
  • Um serviço (DataTableStorable) para serialização e persistência do estado;
  • Um serviço (DataTableFilterAction) para buscar os registros do backend de acordo com o filtro;
  • O resultado (FilterDataResponse) da filtragem e paginação;
  • O número de linhas por página e o número da página propriamente dito;
  • Além de métodos para inicialização do DataTable e callbacks de eventos.

DataTableState

Estrutura incluindo a ordem e direção ("ASC", "DESC") das colunas, bem como o filtro em efeito na tabela.

DataTableFilterAction

Interface consumida pelo DataTableConfiguration contendo as informações de filtro e callbacks para os casos de sucesso e falha.

FilterDataRequest

Estrutura de filtro a ser enviada ao backend, similar ao BaseFilter do projeto ONS.Core.Web.

FilterDataResponse

Resultados da filtragem e paginação, incluindo total de registros e de páginas no backend.

DataTableStorable

Responsável por persistir (ou não) o estado do grid entre recarregamentos de página.

Referências