Coder Social home page Coder Social logo

bradestey / react-semantic-breadcrumbs Goto Github PK

View Code? Open in Web Editor NEW
4.0 2.0 1.0 12 KB

Use React to render Breadcrumbs using RDFa, HTML5, Microdata, or JSON-LD.

License: MIT License

JavaScript 88.69% HTML 11.31%
react microformats rdfa json-ld microdata breadcrumbs

react-semantic-breadcrumbs's Introduction

react-semantic-breadcrumbs npm package

react-semantic-breadcrumbs makes it easy to render semantic breadcrumbs in RDFa, microdata, JSON-LD or plain HTML5.

Installation

$ npm i react-semantic-breadcrumbs --save
import { BreadcrumbList, ListItem } from 'react-semantic-breadcrumbs'

The UMD build is also available on unpkg:

<script src="https://unpkg.com/react-semantic-breadcrumbs/umd/react-semantic-breadcrumbs.min.js"></script>

When using the UMD build, you can find the components on window.ReactSemanticBreadcrumbs.BreadcrumbList and window.ReactSemanticBreadcrumbs.ListItem.

Basic Usage

Just import the BreadcrumbList and ListItem components and pass your desired format.

import React from 'react'
import { BreadcrumbList, ListItem } from 'react-semantic-breadcrumbs'

const breadcrumbs = (
  <BreadcrumbList format="RDFa" separator=" > ">
    <ListItem url="/">Home</ListItem>
    <ListItem url="/products">Products</ListItem>
    <ListItem url="/products/iphone-7-plus">iPhone 7 Plus</ListItem>
  </BreadcrumbList>
)

Will produce the following HTML:

  <ol vocab="http://schema.org/" typeof="BreadcrumbList">
    <li property="itemListElement" typeof="ListItem">
      <a property="item" typeof="Thing" href="/">
        <span property="name">Home</span>
      </a> >
      <meta property="position" content="1" />
    </li>
    <li property="itemListElement" typeof="ListItem">
      <a property="item" typeof="Thing" href="/products">
        <span property="name">Products</span>
      </a> >
      <meta property="position" content="2" />
    </li>
    <li property="itemListElement" typeof="ListItem">
      <a property="item" typeof="Thing" href="/products/iphone-7-plus">
        <span property="name">iPhone 7 Plus</span>
      </a>
      <meta property="position" content="3" />
    </li>
  </ol>

BreadcrumbList Props

  • format string (Default: HTML5)
    Choose from “RDFa”, “Microdata”, “HTML5”, or “JSON-LD”. Case-insensitive.

  • separator string (Default: null)
    The string to place between each ListItem. Ignored by JSON-LD.

  • clickHandler function (Default: null)
    Listen for when a ListItem’s <a> tag is clicked.

ListItem Props

  • url string (Required)
    The page to link to.

  • type string (Default: Thing)
    Uses schema.org types.

  • clickHandler function (Default: null)
    Listen for when the <a> tag is clicked. Takes precedence over BreadcrumbList’s clickHandler prop.

Import Only a Specific Format

You may only want to ever use one specific format. To cherry-pick a format for smaller browserify/rollup/webpack bundles, you can do this:

import BreadcrumbList from 'react-semantic-breadcrumbs/MicrodataBreadcrumbList'
import ListItem from 'react-semantic-breadcrumbs/MicrodataListItem'
  • HTML5: HTML5BreadcrumbList & HTML5ListItem
  • RDFa: RDFaBreadcrumbList & RDFaListItem
  • Microdata: MicrodataBreadcrumbList & MicrodataListItem
  • JSON-LD: JSONLDBreadcrumbList & JSONLDListItem

Example

To run the example application, run these commands from inside the /example directory.

$ npm i
$ npm run build

To view the example, open the example/index.html file.

react-semantic-breadcrumbs's People

Contributors

bradestey avatar

Stargazers

 avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

Forkers

mobilemadman2

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.