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

@adelloste/ng-breadcrumb

v1.2.0

Published

A basic Angular module to display breadcrumb using native Angular router.

Downloads

25

Readme

@adelloste/ng-breadrumb

ng-breadrumb is a module for Angular that generates a breadcrumb that indicate the current page’s location within a navigational hierarchy. It is based on the built-in Angular router.

Table of contents

Demo

Open Demo.

⬆ back to top

Installation

First you need to install the npm module:

npm install @adelloste/ng-breadcrumb --save

⬆ back to top

Usage

1. Import the BreadcrumbModule:

Finally, you can use ng-breadcrumb in your Angular project. You have to import NgBreadcrumbModule.forRoot() in the root NgModule of your application.

import { BrowserModule } from '@angular/platform-browser';
import { NgModule }      from '@angular/core';

import { NgBreadcrumbModule } from '@adelloste/ng-breadcrumb';

@NgModule({
    imports: [
        BrowserModule,
        NgBreadcrumbModule.forRoot()
    ],
    bootstrap: [
        AppComponent
    ]
})
export class AppModule { }
SharedModule

If you use a SharedModule that you import in multiple other feature modules, you can export the NgBreadcrumbModule to make sure you don't have to import it in every module.

@NgModule({
    exports: [
        CommonModule,
        NgBreadcrumbModule
    ]
})
export class SharedModule { }

2. Add a breadcrumb property in the route's data:

If you want to provide individual icons, add a icon property in the route's data.

export const ROUTES: Routes = [
    {
        path: 'home',
        loadChildren: () => import('./home/home.module').then(m => m.HomeModule)
        data: {
            breadcrumb: 'Home',
            icon: 'fa fa-home'  // I'm using font-awesome (only CSS classes)
        }
    },
    {
        path: 'heros',
        loadChildren: () => import('./heros/heros.module').then(m => m.HerosModule)
        data: {
            breadcrumb: 'Heros'
        }
    },
    {
        path: '', 
        redirectTo: 'home', 
        pathMatch: 'full'
    }
];

3. Put the the selector in your template:

<ng-breadcrumb></ng-breadcrumb>

Prefixing routes

Import global prefixes by adding it to the forRoot configuration

import { BrowserModule } from '@angular/platform-browser';
import { NgModule }      from '@angular/core';

import { NgBreadcrumbModule } from '@adelloste/ng-breadcrumb';

@NgModule({
    imports: [
        BrowserModule,
        NgBreadcrumbModule.forRoot({
          prefixes: [
            { url: '', label: 'Prefix-Global', params: {}, icon: '' }
          ]
        })
    ],
    bootstrap: [
        AppComponent
    ]
})
export class AppModule { }

Import prefixes by adding it to the input

<ng-breadcrumb [prefixes]="prefixes"></ng-breadcrumb>
import { Component, OnInit } from '@angular/core';

import { Breadcrumb } from '@adelloste/ng-breadcrumb';

@Component({
  selector: 'ad-main',
  templateUrl: './main.component.html',
  styleUrls: ['./main.component.scss']
})
export class MainComponent implements OnInit {

  prefixs: Breadcrumb[] = [{ url: '', label: 'Prefix', params: {}, icon: '' }];

  constructor() { }

  ngOnInit() { }

}

⬆ back to top

License

ng-breadrumb is MIT licensed.

⬆ back to top