Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

breadcrumbs-next

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

breadcrumbs-next

The component to display breadcrumbs within NextJS web application

  • 1.0.3
  • latest
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

Breadcrumbs for NextJS

Table of contents

  • Breadcrumbs for NextJS

Installation

npm install breadcrumbs-next
yarn install breadcrumbs-next
pnpm install breadcrumbs-next

Behind The Scenes

Click to read!

Imagine your app having the following routes:

  1. /momentum
  2. /projects/[projectId]
  3. /[[…slug]]
  4. /users/[userId]/[[…stuff]]
  5. /users/[userId]/[[…slug]]?t=record
  6. /users?t=record
  7. /users/[userId]?t=record

Last three examples also include URL parameters, which can be used to construct breadcrumbs. For example, when you have a page consisting from another set of tabs, but you don't want to create another route for that.

All of those examples can be transformed to the following formats (lets omit Home element in resulting breadcrumbs):

PatternBreadcrumbsExample URL
/momentumMomentum=
/profile?t=recordsProfile > Records=
/projects/[projectId]Projects > "Grammar"/projects/17
/[[…slug]]Russia > Moscow > Subway > Kommunarka/russia/moscow/subway/kommunarka
/users/[userId]/[[…stuff]]Users > Pavel > Deliveries > Yandex > Lavka/users/132/deliveries/yandex/lavka
/users/[userId]/[[…slug]]?t=records[1]Users > Pavel > Deliveries > Dashboard > Record/users/132/deliveries/dashboard?t=records
/users/[userId]?t=recordsUsers > Pavel > Records/users/132?t=records

[1] - Search params always are taken last, because change of URL (w/o params) is the same as opening another page, thus even having the same params set int the URL doesn't mean they should go in the beginning. They are behaviour modifiers of the page, but not its primary descriptor.

Contents

Type Aliases

Components

Functions

Type Aliases

BreadCrumb

Type declaration
NameType
hrefstring
textstring
textGeneratornull or TextGeneratorFn

CrumbComponentProps

Type Declaration
NameType
hrefstring
isFirstboolean
isLastboolean
textstring
textGeneratornull or TextGeneratorFn

GetDefaultTextGenerator

Type declaration

▸ (config) => string

Parameters
NameType
configObject
config.hrefstring
config.isCatchAllSubpathboolean
config.paramIndexnumber
config.paramNamestring
config.isCatchAllSubpathboolean
config.paramSlugIndexnull or number
config.paramValuestring
config.queryNextRouter["query"]

GetTextGenerator

Type declaration

▸ (config) => null | TextGeneratorFn

Parameters
NameType
configObject
config.hrefstring
config.isCatchAllSubpathboolean
config.paramIndexnumber
config.paramNamestring
config.paramSlugIndexnull or number
config.paramValuestring
config.queryNextRouter["query"]

NextBreadcrumbsProps

Type declaration
NameType
Containerstring or FC<{children: ReactNode}>
CrumbFC<CrumbComponentProps>
getDefaultTextGenerator?GetDefaultTextGenerator
getTextGenerator?GetTextGenerator
homeText?string
Used in:

TextGeneratorFn

Type declaration

▸ () => string | Promise<string>

Used in:

Components

NextBreadcrumbs

Props
NameType
{...props}NextBreadcrumbsProps

Functions

createNextCrumbComponent

Parameters
NameType
ComponentFC<Omit<CrumbComponentProps, "textGenerator">>
Returns

FC<CrumbComponentProps>

Testing

yarn install-peers
yarn vitest

TODOs

  • add support for query params to be items of breadcrumbs
  • add all required tests

Keywords

FAQs

Package last updated on 02 Apr 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc