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

chakra-ui-bottom-navigation

v2.0.1

Published

Bottom navigation component built for chakra

Downloads

212

Readme

Chakra-UI Bottom Navigation

Chakra-UI Bottom Navigation is an accessible and reusable component built to work seamlessly with Chakra-UI.

Check the demo

Features

  • Multiple variants
  • Easily modifed
  • Composable
  • And more...

Install

npm install chakra-ui-bottom-navigation
# or
yarn add chakra-ui-bottom-navigation

NOTE: this component requries Chakra-UI >= v1.0.0 to work properly. You can follow instructions for installing Chakara-UI or instructions for migrating to v1

Theme

By default, this component comes with some predefined styles. To utilize this styles add them to theme overrides.

import { ChakraProvider, extendTheme } from '@chakra-ui/react';
import { BottomNavigationStyleConfig as BottomNavigation } from 'chakra-ui-bottom-navigation';

const theme = extendTheme({
  components: {
    BottomNavigation,
  },
});

export const App = () => {
  return (
    <ChakraProvider theme={theme}>
      <App />
    </ChakraProvider>
  );
};

WithDefaultTheme

If you want to expand defualt styles of the component, use the withDefaultStyles HOC. Component override follows the same structure as all other Chakra-UI components. Check the guide here.

import { withDefaultStyles } from 'chakra-ui-bottom-navigation';

const bottomNavigationOverries = {
  // ... component's override
};

const MyBottomNavigation = withDefaultStyles(bottomNavigationOverries);

const theme = extendTheme({
  components: {
    BottomNavigation: MyBottomNavigation,
  },
});

Import

Chakra-UI Bottom Navigation exports 4 component:

  • BottomNavigation: The wrapper that provides context for all children.
  • BottomNavigationItem: A single Bottom Navigation element
  • BottomNavigationIcon: An icon used to render the item
  • BottomNavigationLabel: A label used to label an item

Usage

export const BasicExample = () => {
  const [value, setValue] = useState(0);

  return (
    <BottomNavigation value={value} onChange={setValue}>
      <BottomNavigationItem>
        <BottomNavigationIcon as={HomeIcon} />
        <BottomNavigationLabel>Home</BottomNavigationLabel>
      </BottomNavigationItem>

      <BottomNavigationItem>
        <BottomNavigationIcon as={SearchIcon} />
        <BottomNavigationLabel>Search</BottomNavigationLabel>
      </BottomNavigationItem>

      <BottomNavigationItem>
        <BottomNavigationIcon as={StarIcon} />
        <BottomNavigationLabel>Favourites</BottomNavigationLabel>
      </BottomNavigationItem>
    </BottomNavigation>
  );
};

Bottom navigation as app navigation

export const NavigationExample = () => {
  const router = useRouter();

  const handleChange = useCallback(
    (path) => {
      router.push(path);
    },
    [router.push]
  );

  return (
    <BottomNavigation value={router.pathname} onChange={handleChange}>
      <BottomNavigationItem value="/">
        <BottomNavigationIcon as={HomeIcon} />
        <BottomNavigationLabel>Home</BottomNavigationLabel>
      </BottomNavigationItem>

      <BottomNavigationItem value="/search">
        <BottomNavigationIcon as={SearchIcon} />
        <BottomNavigationLabel>Search</BottomNavigationLabel>
      </BottomNavigationItem>

      <BottomNavigationItem value="/favorites">
        <BottomNavigationIcon as={StarIcon} />
        <BottomNavigationLabel>Favorites</BottomNavigationLabel>
      </BottomNavigationItem>
    </BottomNavigation>
  );
};

Props

BottomNavigation props

BottomNavigation composes Box so you call pass all Box related props.

| Prop name | Description | Default value | Values | | ------------- | --------------------------------------------- | ------------- | ------------------------------------------------------ | | colorScheme | | blue | all default chakra-ui colorSchemes (can be extended) | | onChange | function that is called when item is selected | | | | showLabel | determines when label should be visible | always | 'never' \| 'if-active' \| 'always' | | value | active value of bottom navigation | | |

BottomNavigationItem props

BottomNavigationItem composes Button so you call pass all Button related props.

| Prop name | Description | Default value | Values | | --------- | ----------------------------------------------- | --------------------------------------------- | ------ | | value | Value that will be passed to onChange handler | by default, value is set to index of the item | |

BottomNavigationIcon props

BottomNavigationItem composes Icon so you call pass all Icon related props.

BottomNavigationLabel props

BottomNavigationItem composes Box so you call pass all Box related props.

Every BottomNavigationItem should have BottomNavigationLabel so assistive technologies can label the element. If label is now show (inactive when showLabel: 'if-active' or when showLabel: 'never'`), the label is only hidden from the screen but it is still rendered in the DOM.