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

@aabegg/table

v1.0.0

Published

Tabellenkomponenten und Services

Downloads

6

Readme

Installation

npm install @aabegg/table

TableSettings

Der TableSettingsService muss im AppModule eingebunden werden.

import { NgModule } from '@angular/core';
import { TableSettingsService } from '@aabegg/table';

@NgModule({
  declarations: [],
  imports: [],
  providers: [TableSettingsService]
})
export class AppModule { }
Funktionen
  • clickhandler (Einstellung für den Context-Clickhandler - click oder contextmenu)
  • init(Array) (Setzt die Standard-Werte der Tabellen - Benutzer unabhängig)
  • update(Array) (Aktuallisiert die Werte)

Table

Das TableModule muss im AppModule (MainModule) eingebunden werden.

import { NgModule } from '@angular/core';
import { TableModule } from '@aabegg/table';

@NgModule({
  declarations: [],
  imports: [TableModule],
  providers: []
})
export class AppModule { }

Folgende Directiven stehen danach zur Verfügung:

  • NgTableFor
  • TableFilterSelect
  • TableFilterInput
  • TableSort
  • TableContextComponent

NgTableFor

Die NgTableFor Direktive wird fast identisch angewandt wie die normale ngFor Direktive.

<table>
  <tbody>
    <tr *ngTableFor="let employee of (data | async)?.data; rowHeight: itemheight; context: tableContext">
      <td style="width: 50%;">{{employee.name}}</td>
      <td style="width: 50%;">{{employee.firstname}}</td>
    </tr>
  </tbody>
</table>

NgForTable hat folgende Attribute:

  • rowHeight (Die ausgewählte Zeilenhöhe - 43, 55, 80)
  • context (Die Referenz zum Context-Menu)

TableContext

Der table-context Komponent ist wie folgt aufgebaut:

<table-context #tableContext>
  <ng-template let-employee="context">

    <button (click)="menuclick(employee)" md-menu-item>
      <md-icon>dialpad</md-icon>
      <span>{{employee.name}} {{employee.firstname}}</span>
    </button>
    
  </ng-template>
</table-context>

Das aktive Menu hat immer Zugriff auf die context-Variable. Diese entspricht immer dem angeklickten Item.

Sortierung

Für die Sortierung einer Spalte müssen zwei Attribut-Direktiven angewandt werden:

  • sortField="name" (Entspricht dem Namen des Feldes in der Datenbank)
  • sortTable="demotable" (Entspricht dem Name der zu sortierenden Tabelle)

Diese Direktiven können an ein th-Tag der Überschrift angebracht werden.

Beispiel:

<th sortField="name" sortTable="demotable" i18n="Überschrift Demotabelle">Name</th>

Filterung Input

Für die Filterung einer Spalte müssen zwei Attribut-Direktiven angewandt werden:

  • filterInput="name" (Entspricht dem Namen des Feldes in der Datenbank)
  • filterTable="demotable" (Entspricht dem Name der zu sortierenden Tabelle)

Diese Direktiven können an ein input angebracht werden.

Beispiel:

<th><input filterInput="name" filterTable="demotable" type="text"/></th>

Filterung Select

Für die Filterung einer Spalte mit einem Select-Menü, müssen drei Attribut-Direktiven angewandt werden:

  • filterSelect="department" (Entspricht dem Namen des Feldes in der Datenbank)
  • filterTable="demotable" (Entspricht dem Name der zu sortierenden Tabelle)
  • (FilterSaved)="savedDepartment = $event" (Wird ausgelöst wenn ein gefilterter Wert zuvor in den Tabelleneinstellungen gespeichert wurde)

Beispiel:

<th>
  <md-select filterSelect="department" filterTable="demotable" (filterSaved)="savedDepartment = $event" [ngModel]="savedDepartment">
    <md-option value="" i18n>Alle</md-option>
    <md-option value="Administration" i18n>Administration</md-option>
    <md-option value="Verkauf" i18n>Verkauf</md-option>
    <md-option value="Entwicklung" i18n>Entwicklung</md-option>
  </md-select>
</th>

Versionen

1.0.0

  • Initiale Version