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

ngx-board

v0.6.1

Published

This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 14.2.0.

Downloads

342

Readme

ngx-board

A customizable Kanban-style board component built with Angular.

Description

The ng80-board component provides a Kanban-style board that allows users to move cards between columns and reorder columns. The component uses the Angular CDK's drag and drop functionality to handle the card and column moves.

Installation

To use the ng80-board component in your project, you need to install the @80ymedia/ng80-board package by running the following command in your project's root directory:

npm install ngx-board

After installing the package, you need to import the BoardModule in your app's module:

import { BoardModule } from 'ngx-board';

@NgModule({
  imports: [
    BoardModule,
    // ...
  ],
  // ...
})
export class AppModule { }

Usage

To use the ng80-board component in your template, add the ng80-board tag:

<ng80-board 
	[board]="board"
  	(onCardMoved)="onCardMoved($event)"
  	(onCardClick)="onCardClick($event)"
    (onColumnMoved)="onColumnMoved($event)"
></ng80-board>

Where board is an object that conforms to the Board interface.

Interfaces

Board Interface

The Board interface represents a complete board. Its properties are:

  • id (optional): unique number that identifies the board.
  • title: title of the board (required).
  • description (optional): description of the board.
  • columns (optional): array of columns (typed as BoardColumn[]) on the board.
  • classlist (optional): array of CSS classes for the board.
  • style (optional): CSS styles object for the board.

BoardColumn Interface

The BoardColumn interface represents a column on a board. Its properties are:

  • id (optional): unique number that identifies the column.
  • boardId (optional): id of the board the column belongs to.
  • title: title of the column (required).
  • description (optional): description of the column.
  • cards: array of cards (typed as BoardCard[]) in the column (required).
  • style (optional): CSS styles object for the column.
  • classlist (optional): array or string of CSS classes for the column.
  • disabled (optional): boolean indicating if the column is disabled.
  • cardSortingDisabled (optional): boolean that disable the sorting of cards in the column
  • predicate (optional): function that returns a boolean to control if an item can be moved into the column.

BoardCard Interface

  • id (optional): unique number that identifies the card.
  • title: title of the card (required).
  • description (optional): description of the card.
  • classlist (optional): array of CSS classes for the card.
  • style (optional): CSS styles object for the card.
  • disabled (optional): boolean indicating if the card is disabled.

Inputs

| Input | Description | | ------ | ------ | |board (required) | an instance of Board that defines the structure of the board| |columnSortingDisabled | a boolean to disable the sorting of columns in the board|

Outputs

| Output | Description | | ------ | ------ | | onCardMoved | emitted when a card is moved within or between columns on the board | | onColumnMoved | emitted when a column is moved on the board.| | onCardClick | emitted when a card is clicked.| | reachedEnd | emitted when the user has scrolled to the end of a specific column in the board.|

Here are some usage examples for the BoardComponent outputs:

Detect card click

<ng80-board [board]="board" (onCardClick)="cardClicked($event)">
</ng80-board>

// in component
cardClicked(card: BoardCard) {
  // do something when card is clicked
}

Detect card move

<ng80-board 
  [board]="board"
  (onCardMoved)="cardMoved($event)"> 
</ng80-board>

// in component
cardMoved(event: CdkDragDrop<BoardColumn, BoardColumn, BoardCard<any>>) {
  // do something when card is moved
}

Detect column move

<ng80-board
  [board]="board"
  (onColumnMoved)="columnMoved($event)">
</ng80-board>

// in component
columnMoved(event: CdkDragDrop<BoardColumn[]>) {
  // do something when column is moved  
}

Detect scroll to column end

<ng80-board
  [board]="board" 
  (reachedEnd)="endReached($event)">
</ng80-board>

// in component
endReached(column: BoardColumn) {
  // load more cards when column end is reached
}

Customization

The ng80-board component allows for customization of the card, column header, and column footer templates through the use of content projection.

To use a custom card template, create a ng-template element with the directive cardTemplate and place it within the ng80-board element. The content within this template will be used as the template for each card.

<ng80-board [board]="board">
  <ng-template cardTemplate>
    <div class="custom-card-template">
      <h2>{{card.title}}</h2>
      <p>{{card.description}}</p>
    </div>
  </ng-template>
</ng80-board>

Similarly, custom templates for the column header and footer can be defined using the boardColumnHeader and boardColumnFooter directives respectively.

<ng80-board [board]="board">
  <ng-template cardTpt let-item="item">
    <div class="custom-card-template">
      <h2>{{card.title}}</h2>
      <p>{{card.description}}</p>
    </div>
  </ng-template>
  <ng-template columnHeaderTpt let-column="column">
    <div class="custom-column-header">
      <h3>{{column.title}}</h3>
    </div>
  </ng-template>
  <ng-template columnFooterTpt let-column="column">
    <div class="custom-column-footer">
      <button>Add Card</button>
    </div>
  </ng-template>
</ng80-board>

Support

If you find this library helpful and want to support its development, consider buying me a coffee. Thank you for your support!

About the author

Carlos Morcillo is a web developer and open source contributor. You can find more of his work on this website.