1.1.0 • Published 5 years ago

react-offcanvas-component v1.1.0

Weekly downloads
2
License
MIT
Repository
github
Last release
5 years ago

React Offcanvas Component

Create Off-canvas Sidebars with React and Popmotion's pose

Installation

This npm module utilizes react-pose for animations.

yarn

yarn add react-pose react-offcanvas-component

npm

npm i -S react-pose react-offcanvas-component

Demo

Basic usage

Please visit this Repo for examples.

API

ReactOffcanvasComponent

PropTypeDefaultRequiredDescription
openBooleanfalseyesSetting values as true will Reveal Sidebar and false will Hide Sidebar
classNameStringnonoOverride the styles applied to the component with css
styleObjectnonoOverride the styles applied to the component with inline styles
openAnimationObjectSee Default AnimationsnoOverride the default open animation
closeAnimationObjectSee Default AnimationsnoOverride the default close animation
overlayBooleanfalsenoShow / Hide background overlay
overlayClassNameStringnonoOverride the default styles applied to the Overlay component with css classes

AnimatedPanel

PropTypeDefaultRequiredDescription
classNameStringnonoOverride the styles applied to the component with css
styleObjectnonoOverride the styles applied to the component with inline styles
openAnimationObjectSee Default AnimationsnoOverride the default open animation
closeAnimationObjectSee Default AnimationsnoOverride the default close animation

CloseButton

PropTypeDefaultRequiredDescription
onClickFunctionnonofunction(event: object) => void
styleObjectnonoOverride the styles applied to the component with inline styles
classNameStringnonoOverride the styles applied to the component with css

DropdownMenu

PropTypeDefaultRequiredDescription
styleObjectnonoOverride the styles applied to the component with inline styles
classNameStringnonoOverride the styles applied to the component with css

DropdownMenu

PropTypeDefaultRequiredDescription
classNameStringnonoOverride the styles applied to the component with css

MenuItem

PropTypeDefaultRequiredDescription
styleObjectnonoOverride the styles applied to the component with inline styles
classNameStringnonoOverride the styles applied to the component with css
onClickFunctionnonofunction(event: object) => void
dropdownIconClassNameStringnonoOverride the styles applied to the dropdown menu icon with css
hasDropdownBooleannonoIf the MenuItem contains a dropdown menu set this value to true

Default Animations

I have used react-pose to create the animations. A tons of customization possible via pose api.

ReactOffcanvasComponent

Open

{
  x: "-100px",
  transition: {
    ease: [0.175, 0.885, 0.32, 1.275],
    duration: 300
  },
  delayChildren: 150,
  staggerChildren: 100
}

Close

{
  x: "-100%",
  transition: {
    duration: 100
  },
  afterChildren: true
}

AnimatedPanel

Open

{
  x: "0%",
  transition: {
    ease: [0.175, 0.885, 0.32, 1.275],
    duration: 300
  },
  delayChildren: 300,
  staggerChildren: 100
}

Close

{
  x: "-100%",
  transition: {
    duration: 100
  },
  afterChildren: true
}

Todo:

  • Add tests and coverage reports