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

@asphalt-react/appbar

Package Overview
Dependencies
Maintainers
0
Versions
26
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@asphalt-react/appbar

Appbar

  • 2.0.0-rc.4
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
42
increased by55.56%
Maintainers
0
Weekly downloads
 
Created
Source

Appbar

npm

Appbar component is the main navigation bar for the whole application. Use this component at the root of your application as the top navigation bar. It contains a list of links that can either take the user to another page or to another section on the same page. Appbar is responsive and adapts to small, medium & large screens. You can also create a custom Appbar through a family of unit components exported by Appbar.

Usage

import { Appbar, Nav, NavItem, NavLink } from "@asphalt-react/appbar"

function App () {

  return (
    <Appbar>
      <Nav>
        <NavItem active>
          <NavLink asProps={{ href: "/" }}>Home</NavLink>
        </NavItem>
        <NavItem>
          <NavLink asProps={{ href: "/Dashboard" }}>Dashboard</NavLink>
        </NavItem>
      </Nav>
    </Appbar>
  );
}

export default App;

Anatomy

Appbar has 3 sections:

  1. Head: Add items in the head section such as Logo using the head prop.
  2. Body: Contains the list of items for navigation. This is the children.
  3. Tail: Add items in the tail section such as user Avatar or logout button using the tail prop.

The styles required for the Appbar to stick to the top of the screen needs to be added while implementation.

Navigation items

Appbar exports a family of unit components to create the nav items:

  1. Nav
  2. NavItem
  3. NavLink
  4. NavItemCaption
  5. NavItemIcon
  6. NavItemAction

Using these components, you can compose a variety of nav items.

Screen size adaptability

Appbar adapts to smaller screens (below 600px). The Appbar renders at the top of its container with the head and tail section visible. The body section is hidden under a hamburger button that appears in the head section.

Activating the hamburger button shows the hidden sections in a container (or drawer) that covers the complete screen. The hamburger button is replaced by a cross button to close the drawer. Appbar also exposes a close() function that to close the drawer. It can be useful if you want to close the drawer on selecting a nav item. For example:

import { Appbar, Nav, NavItem, NavLink } from "@asphalt-react/appbar"

function App () {
  const close = () => Appbar.close

  return (
    <Appbar>
      <Nav>
        <NavItem>
          <NavLink onClick={close} asProps={{ href: "example.com" }}>Dashboard</NavLink>
        </NavItem>
      </Nav>
    </Appbar>
  )
}

Accessibility

  1. Appbar accepts Esc to close the drawer.
  2. Appbar also traps focus in the drawer. Press Tab or Shift + Tab to toggle through the focusable elements.

Creating a custom Appbar

Appbar exports layout unit components using which you can create a custom implementation of Appbar:

  1. BaseAppbar
  2. AppbarrHead
  3. AppbarBody
  4. AppbarTail
  5. useAppbar

You would need to add the responsive styles as they are not screen responsive by default. These layout components do not respond to different screen sizes. You can wrap them in containers with media queries for the custom Appbar to adapt to screen sizes. For example:

@media only screen and (max-width: 600px) {
  .container {
    /* some styles */
  }

  .content {
    /* some styles */
  }
}
const CustomAppbar = () => {
  return (
    <div className="container">
      <BaseAppbar>
        <div className="content">
          <AppbarBody>
            // NavItems
          </AppbarBody>
        </div>
      </BaseAppbar>
    </div>
  )
}

Hooks

Appbar exports a useAppbar hook to help you create custom functionality.

useAppbar

React hook to implement the ability to open/close the Appbar in smaller screens. Use this hook when you are implementing your custom Appbar using the unit layout components. Let's look at the usage:

import { Appbar, useAppbar } from "@asphalt-react/appbar"

const CustomAppbar = () => {
  const { visible, open, close } = useAppbar({ defaultOpen: true })

  return (
      <Appbar>
        <div className={visible ? "show" : "hide"}>
          {visible ? (
            <Button onClick={close}>close</Button>
          ) : (
            <Button onClick={open}>open</Button>
          )}
        </div>
      </Appbar>
  )
}

  1. visible: A stateful boolean value to control the (open/close) state.
  2. open: A function to open the Appbar.
  3. close: A function to close the Appbar.

useAppbar accepts the defaultVisible prop as the argument.

Props

children

React node to render in the Appbar content.

typerequireddefault
nodefalseN/A

head

Content to display in the Appbar head.

typerequireddefault
nodefalsenull

tail

Content to display in the Appbar tail.

typerequireddefault
nodefalsenull

dismissLabel

"aria-label" for the button to close Appbar in smaller screens.

typerequireddefault
stringfalse"close appbar navigation"

menuLabel

"aria-label" for the button to open Appbar in smaller screens.

typerequireddefault
stringfalse"open appbar navigation"

defaultVisible

Appbar shows the body section in the initial state.

typerequireddefault
boolfalsefalse

Nav

Props

children

React nodes to render in the Nav content.

typerequireddefault
nodetrueN/A

NavItem

Using NavItem component, links can be added to the Appbar. By default, it renders an <a> tag but you can pass your custom element or React component using as prop. All the props related to the link should be passed in asProps element.

Props

children

Content for a nav item.

typerequireddefault
nodetrueN/A

NavItemCaption

Props

children

React node to render the caption of the nav item.

typerequireddefault
nodefalseN/A

NavItemIcon

Icon for the NavItem. Accepts SVG.

Props

children

Icon to enhance the nav item's caption. Accepts SVG.

typerequireddefault
nodefalseN/A

NavItemAction

Accepts elements for custom actions in a NavItem.

Props

children

React node to render action elements for a nav item.

typerequireddefault
nodefalseN/A

propagateEvent

Allow events to propagate to the parent element.

typerequireddefault
boolfalsefalse

Renders the link element for a NavItem.

Props

children

React node to render link content.

typerequireddefault
nodefalseN/A

as

Html element/React component to replace the default element. Using this prop, you can use your router's link element, such as "react-router-dom"'s Link element.

typerequireddefault
elementTypefalse"a"

asProps

Pass the props such as "href", "id" for the custom link element passed in as prop.

typerequireddefault
objectfalse{}

active

Marks the nav link as active.

typerequireddefault
boolfalsefalse

prominent

An active style. Adds an indicator to accent the active nav link.

typerequireddefault
boolfalsefalse

highlight

A subtle active style. Highlights the surface of the nav item.

typerequireddefault
boolfalsefalse

icon

An icon only nav link.

typerequireddefault
boolfalsefalse

bezel

Adds padding.

typerequireddefault
boolfalsetrue

BaseAppbar

The base container unit component.

Props

children

Container for the BaseAppbar content.

typerequireddefault
nodetrueN/A

bezel

Adds padding.

typerequireddefault
boolfalsetrue

AppbarHead

The unit component for rendering the head elements.

Props

children

Container for the AppbarHead content.

typerequireddefault
nodefalseN/A

bezel

Adds padding.

typerequireddefault
boolfalsetrue

AppbarBody

The unit component to render the main content.

Props

children

Container for the AppbarBody content.

typerequireddefault
nodetrueN/A

AppbarTail

React node to render content in the tail section.

Props

children

Container for the AppbarTail content.

typerequireddefault
nodetrueN/A

bezel

Adds padding.

typerequireddefault
boolfalsetrue

Keywords

FAQs

Package last updated on 30 Sep 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

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