1.0.5 • Published 4 years ago

angular-breadcrumbs-light v1.0.5

Weekly downloads
11
License
MIT
Repository
github
Last release
4 years ago

Angular Breadcrumbs Light

GitHub version npm version GitHub demo GitHub license

Demo

See demo here

Description

Easy to use breadcrumbs for Angular.

The package includes:

  • Service: just call it in some root component and it will be returning current breadcrumbs array
  • Breadcrumbs component: just import and use it. Could be manually configured and styled
  • TS Types for both

Installation

npm i angular-breadcrumbs-light

Breadcrumbs service

Provides function getBreadcrumbs, which returns an array of breadcrumbs.

Example (Argument Routes is specified in next subsection):

// Usage
const crumbs = getBreadcrumbs(Routes, window.location.pathname);

// Returned array
[
  { link: '/', title: 'Home', icon: 'person', iconClass: 'material-icons' },
  { link: '/clients', title: 'Clients', icon: '...' },
  { link: '/clients/1', title: 'Client № - 1, welcome!', icon: '...' }
]

There is only 1 required arguments and 5 optional:

TitleTypeDescriptionDefault
routes *arrayarray of route objects (see example below)-
fullUrlstringcurrent location full path(see example below)
basestringif project's base-href is provided manually, put it here also-
notFoundTitlestringtitle for not found route'Page Not Found'
notFoundIconstringicon for not found routeundefined
notFoundClassstringicon class for not found routeundefined

Routes

Example:

const Routes = [
  { title: 'Home', link: '/', icon: 'string', iconClass: 'material-icons' },
  { title: 'Clients', link: '/clients', icon: '...', children: [
    { title: 'Client № - ', suffix: ', welcome!', link: '/clients/:id', icon: '...' },
    { title: 'Settings', link: '/clients/settings', icon: '...' }
  ] }
];

Fields:

TitleTypeDescription
link *stringbreadcrumb link
titlestringbreadcrumb title
suffixstringbreadcrumb suffix (added at the end of output breadcrumb title)
iconstringbreadcrumb icon
iconClassstringbreadcrumb icon class
childrenarrayarray of objects, similar to Routes, for nested routes

Features:

  • If title is not provided, link will be used as breadcrumb title (First letter uppercased)
  • For root route ('' or '/') if title not provided, the crumb title will be 'Root' by default
  • link field may contain dynamic routes (ex.: '/route/:id')
  • For dynamic routes 'title' field will be used as prefix for current pathname (first letter uppercased), if provided

FullUrl

It should be a current location. DEFAULT VALUE IS: window.location.pathname.

Important

Example (Play with example here:

Breadcrumbs component

Provides a ready to use component. Can be styled and configured.

Play with example here.

<angular-breadcrumbs-light [routes]="routes"></angular-breadcrumbs-light>

There is only 1 required argument. And bunch of optional:

TitleTypeDescriptionDefault
routes *arrayarray of route objects (see example above)-
basestringif project's base-href is provided manually, put it here also-
separatorstringseparator for crumbs/
separatorClassstringseparator class for crumbs-
iconsbooleanwhether to show iconstrue
titlesbooleanwhether to show titlestrue
noTitlesOnMobilebooleanif true - hide titles when device width <= 600px (do not forget to provide icons in such case)false
notFoundTitlestringtitle for not found pages'Page Not Found'
notFoundIconstringicon for not found pages-
notFoundIconClassstringicon class for not found pages-
customClassesobjectclasses for each element of Breadcrumbs component-

Similar to first required argument for Breadcrumbs service - Routes array.

customClasses

TitleTypeDescriptionHtml Element
rootstringclass for root elementnav
liststringclass for list elementul
linkstringclass for link elementa
currentLinkstringclass for currentLink elementli
iconstringclass for icon elementspan (holder for icon)
titlestringclass for title elementspan
separatorstringclass for separator elementli (holder for separator)

License

This project is licensed under the terms of the MIT license.

1.0.5

4 years ago

1.0.4

4 years ago

1.0.3

4 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago