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

@richarepo/ui_components

v0.1.4

Published

Eargo UI Components

Downloads

2

Readme

ui_components

npm version downloads dependencies devDependencies

Eargo UI Components

Run package locally

npm install
npm link

To use in the project

npm install eargo-components
npm link eargo_components
import { NavBar } from 'eargo-components'

To unlink package

npm unlink eargo_components

To use package from publish version

npm install eargo-components
import { NavBar } from 'eargo-components'

Example

NavBar:

<NavBar history={history} />

Use to pass Props

history {react-router-dom's history instance}

Pass react-router-dom's history instance, this is required for menu navigation

promoBanner {object} (Optional)

Pass promoBanner if you want to apply promobanner in your header

menus {menuArray} (Optional)

Example:-


const addressUrl = window.origin
const menuArray = [
	{
		title: 'Our Solutions',
		url: `${addressUrl}`,
		parentClass: 'li_solution',
		childClass: 'nav_solution',
		subMenuList: [
			{
				title: 'Hearing Aids',
				suburl: `${addressUrl}products-hearing-aids`,
			},
			{
				title: 'Eargo App',
				suburl: `${addressUrl}our-solutions/eargo-app`,
			},
		]
	},
	{
		title: 'Eargo Difference',
		url: `${addressUrl}`,
		parentClass: 'li_difference',
		childClass: 'nav_difference',
		subMenuList: [
			{
				title: 'How It Works',
				suburl: `${addressUrl}eargo-difference`,
			},
			{
				title: 'Compare Us',
				suburl: `${addressUrl}hearing-aid-comparison`,
			},
			{
				title: 'Reviews',
				suburl: `${addressUrl}reviews`,
			},
		]
	},
	{
		title: 'Shop',
		url: '/',
		parentClass: 'li_store',
		childClass: 'nav_store',
		subMenuList: [
			{
			  address: '/eargo-neo-hifi',
			  optionImage: 'IMAGE_URL',
			  titleImage: true,
			  optionTitle: 'https://eargo-images-prod.s3-us-west-1.amazonaws.com/Rebrand2019/EargoNEOHiFi_300x81-02.svg'
			},
			{
			  address: '/eargo-neo',
			  optionImage: 'IMAGE_URL',
			  titleImage: true,
			  optionTitle: 'https://eargo-images-prod.s3-us-west-1.amazonaws.com/Rebrand2019/neo.svg'
			},
			{
			  address: '/eargo-max',
			  optionImage: 'IMAGE_URL',
			  titleImage: true,
			  optionTitle: 'https://eargo-images-prod.s3-us-west-1.amazonaws.com/Rebrand2019/max.svg'
			},
			{
			  address: '/accessories',
			  optionImage: 'IMAGE_URL',
			  titleImage: false,
			  optionTitle: 'ACCESSORIES'
			}
		  ]
	},
	{
		title: 'Support',
		url: `${addressUrl}showme`,
		parentClass: 'li_support',
		childClass: 'nav_support'
	},
	{
		title: 'Hearing Health',
		url: `${addressUrl}`,
		parentClass: 'li_health',
		childClass: 'nav_health',
		subMenuList: [
			{
				title: 'Hearing Check',
				suburl: `${addressUrl}hearing-health/hearing-check`,
			},
			{
				title: 'Hearing Loss Causes',
				suburl: `${addressUrl}hearing-health/causes-of-hearing-loss`,
			},
			{
				title: 'Signs of Hearing Loss',
				suburl: `${addressUrl}hearing-health/signs-of-hearing-loss`,
			},
			{
				title: 'Treating Hearing Loss',
				suburl: `${addressUrl}hearing-health/treatment-of-hearing-loss`,
			},
			{
				title: 'Hearing Loss FAQ',
				suburl: `${addressUrl}hearing-health/faq`,
			},
		]
	},
	{
		title: 'Insider Blog',
		url: `${addressUrl}blog`,
		parentClass: 'li_blog',
		childClass: 'nav_blog'
	},
];

menuArray is the set of menus, that you want to show in header. If you want to pass your menu array then create something like this.

Use to pass Props (For Shop domain)

cartCount {number}

Pass cartCount value if you want to show total of products in the cart

selectedVariant {object}

This object will hold the value of selected variant that will be reflected in floating cart

handleCartState {func}

Function that will update the state of cart

isCartOpen {bool}

isCartOpen will contain the value for current state of cartStates

handleReviews {func}

handleReviews function will scroll the page where productReviews started

License

See the License file.