New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

breadcrumb-fil-dariane

Package Overview
Dependencies
Maintainers
1
Versions
14
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

breadcrumb-fil-dariane

A simple component to add an accessible Breadcrumb in your react application

latest
Source
npmnpm
Version
1.1.5
Version published
Maintainers
1
Created
Source

breadcrumb-fil-dariane

This package was created with the purpose of simplifying the implementation of an accessible and customizable breadcrumb/ariane thread

breadcrumb

Getting Started

Install this package:

npm add breadcrumb-fil-dariane@1.1.4

Import the Breadcrumb component:

import Breadcrumb from "breadcrumb-fil-dariane";

You can integrate this component as a simple React component.

Usage

    return (
        <Breadcrumb pathArray={myPathArray}/>
    );

Expected parameters

An array of objects containing 'path', which represents the route, and 'breadcrumb', which is the name to display in the breadcrumb.
It should be implemented for all the website's routes and set to "null" if you don't want a breadcrumb to be displayed for that route.

    const myPathArray = [
        { path: '/', breadcrumb: 'Home' },
        { path: '/about', breadcrumb: 'About' },
        { path: '/login', breadcrumb: 'Login' },
        { path: '/contact', breadcrumb: 'Contact' }, 
        { path: '/contactList', breadcrumb: null }
    ]

Usage with parameters

const Component = () => {
    const myPathArray = [
        { path: '/', breadcrumb: 'Home' },
        { path: '/about', breadcrumb: 'About' },
        { path: '/login', breadcrumb: 'Login' },
        { path: '/contact', breadcrumb: 'Contact' }, 
        { path: '/contactList', breadcrumb: null }
    ]

    return (
        <Breadcrumb pathArray={myPathArray}/>
        // rest of your component
    );
}

export default Component;

Customize your breadcrumb

Here is a basic customization example. You can adjust the styles to match your branding guidelines.

.breadcrumbs__list {
    padding: 1rem;
    justify-content: start;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    color: #000;
    font-size: 1rem;
    align-items: center;
}
.breadcrumbs__list__element {
    display: flex;
    gap: 0.5rem;
}
.breadcrumb-active {
    text-decoration: underline 3px #892121;
    text-underline-offset: 6px;
    font-weight: bold;
}
.breadcrumb-not-active {
    text-decoration: none;
}

Keywords

react

FAQs

Package last updated on 09 Feb 2024

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