All Projects → kunukn → react-slide-toggle

kunukn / react-slide-toggle

Licence: MIT license
React component re-implementation for jQuery.slideToggle feature

Programming Languages

javascript
184084 projects - #8 most used programming language
CSS
56736 projects
HTML
75241 projects

Projects that are alternatives of or similar to react-slide-toggle

WebRTC-Leak-Prevent-Toggle
Toggle WebRTC leak prevention in Chromium browsers.
Stars: ✭ 16 (-61.9%)
Mutual labels:  toggle
Expansionpanel
Android - Expansion panels contain creation flows and allow lightweight editing of an element.
Stars: ✭ 1,984 (+4623.81%)
Mutual labels:  toggle
togglific
Do you find web animations distracting? Togglific provides a distraction-free web experience!
Stars: ✭ 17 (-59.52%)
Mutual labels:  toggle
css-toggle-component
Pure CSS Toggle Buttons as a Web component
Stars: ✭ 69 (+64.29%)
Mutual labels:  toggle
Nova-Dark-Theme
A dark theme for Laravel Nova
Stars: ✭ 72 (+71.43%)
Mutual labels:  toggle
material-ui-toggle-icon
An animated toggle icon for Material-UI.
Stars: ✭ 32 (-23.81%)
Mutual labels:  toggle
shaf-toggle
Elegant, accessible toggle element. Upgrades existing <input type="checkbox" />
Stars: ✭ 28 (-33.33%)
Mutual labels:  toggle
flesch
Formula to detect the ease of reading a text according to Flesch Reading Ease (1975)
Stars: ✭ 25 (-40.48%)
Mutual labels:  ease
Body Scroll Lock
Body scroll locking that just works with everything 😏
Stars: ✭ 3,357 (+7892.86%)
Mutual labels:  toggle
onscroll-effect
A tiny JavaScript library to enable CSS animations when user scrolls.
Stars: ✭ 35 (-16.67%)
Mutual labels:  toggle
toggle-switch-control
Toggle switch control for WPF & Silverlight
Stars: ✭ 77 (+83.33%)
Mutual labels:  toggle
MultiStateToggleButton
Android's ToggleButton offers only two states, MultiStateToggleButton fixes this by offering as many states depending on the number of drawable resources passed in.
Stars: ✭ 20 (-52.38%)
Mutual labels:  toggle
react-collapse
Component-wrapper for collapse animation with CSS for elements with variable and dynamic height
Stars: ✭ 143 (+240.48%)
Mutual labels:  collapsible
SettingsAppInSwiftUI
I have recreated a Settings App in iPhoneXR using SwiftUI concepts such as Form,Section,Toggle,Picker,Stack..etc
Stars: ✭ 37 (-11.9%)
Mutual labels:  toggle
toggle
Vue 3 toggle component with labels, custom slots and styling options (+Tailwind CSS support).
Stars: ✭ 75 (+78.57%)
Mutual labels:  toggle
toggler
Atom plugin - Toggle words and symbols
Stars: ✭ 21 (-50%)
Mutual labels:  toggle
pixi-ease
pixi.js animation library using easing functions
Stars: ✭ 90 (+114.29%)
Mutual labels:  ease
react-toggle
A React UI Component to display an awesome Toggle Button control
Stars: ✭ 17 (-59.52%)
Mutual labels:  toggle
dale-chall-formula
Formula to find the grade level according to the (revised) Dale–Chall Readability Formula (1995)
Stars: ✭ 26 (-38.1%)
Mutual labels:  ease
react-native-collapsible
Fully customizable collapsible views
Stars: ✭ 31 (-26.19%)
Mutual labels:  collapsible

about

React version of jQuery.slideToggle. JavaScript animation where height is set on every requestAnimationFrame. The toggle direction can be reversed during the movement.

npm version npm downloads gzip license

If you are looking for a CSS transition based alternative, then use this instead https://github.com/kunukn/react-collapse

Supported React versions

  • React version 16.0+

demo

size

  • UMD minified size ~7.8Kb (gzipped ~2.5Kb)

setup / local demo

  • git clone or download
  • npm install
  • npm start

info

Default easing is cubicInOut. You can reverse the toggle before the movement completes. Ease in-out works best visually when reverse toggling is to be used.

This should be A11Y friendly, you can test the tabindex by tabbing. The collapsed items should be skipped due to usage of display:none (inert functionality)

JS animation is used for best animation control and possibility of adding interpolation or using advanged easing configuration which you can't with CSS alone. This triggers browser reflows on every requestAnimationFrame. If you have a very long page this might not be the best option to use.

usage example

Look in App component for inspiration. Apply the styling as needed.

component example, simple - render prop

import SlideToggle from "react-slide-toggle";
// or
// const SlideToggle = require("react-slide-toggle");

// Apply optional padding to .my-collapsible__content-inner
<SlideToggle
  render={({ toggle, setCollapsibleElement }) => (
    <div className="my-collapsible">
      <button className="my-collapsible__toggle" onClick={toggle}>
        toggle
      </button>
      <div className="my-collapsible__content" ref={setCollapsibleElement}>
        <div className="my-collapsible__content-inner">Collapsible content</div>
      </div>
    </div>
  )}
/>;

component example, simple - function as child

import SlideToggle from "react-slide-toggle";

// Apply optional padding to .my-collapsible__content-inner
<SlideToggle>
  {({ toggle, setCollapsibleElement }) => (
    <div className="my-collapsible">
      <button className="my-collapsible__toggle" onClick={toggle}>
        toggle
      </button>
      <div className="my-collapsible__content" ref={setCollapsibleElement}>
        <div className="my-collapsible__content-inner">Collapsible content</div>
      </div>
    </div>
  )}
</SlideToggle>;

toggle state from outside example

import SlideToggle from "react-slide-toggle";

class MyComponent extends React.Component {
  state = { toggleEvent: 0 };

  onToggle = () => {
    this.setState({ toggleEvent: Date.now() });
  };

  render() {
    return (
      <div>
        <button className="toggle" onClick={this.onToggle}>
          Toggle
        </button>
        <SlideToggle toggleEvent={this.state.toggleEvent}>
          {({ setCollapsibleElement }) => (
            <div className="my-collapsible">
              <div
                className="my-collapsible__content"
                ref={setCollapsibleElement}
              >
                <div className="my-collapsible__content-inner">
                  Collapsible content
                </div>
              </div>
            </div>
          )}
        </SlideToggle>
      </div>
    );
  }
}

component usage example with all options

import SlideToggle from "react-slide-toggle";
import BezierEasing from "bezier-easing"; // optional

const bezierEaseInOutQuart = BezierEasing(0.77, 0, 0.175, 1);

<SlideToggle
  duration={280 /* default 300 */}
  easeCollapse={bezierEaseInOutQuart /* default cubicInOut */}
  easeExpand={bezierEaseInOutQuart /* default cubicInOut */}
  collapsed /* default falsy */
  irreversible /* default falsy */
  noDisplayStyle /* default falsy */
  noOverflowHidden /* default falsy */
  bestPerformance /* default falsy */
  whenReversedUseBackwardEase /* default falsy */
  interpolateOnReverse /* default falsy */
  offsetHeight /* default scrollHeight */
  onExpanded={({ hasReversed }) => {
    /* optional event hook */
  }}
  onExpanding={({ range, progress, hasReversed }) => {
    /* optional event hook */
  }}
  onCollapsed={({ hasReversed }) => {
    /* optional event hook */
  }}
  onCollapsing={({ range, progress, hasReversed }) => {
    /* optional event hook */
  }}
  onMount={({ toggleState, toggle }) => {
    /* optional event hook */
  }}
  onUnmount={({ toggleState }) => {
    /* optional event hook */
  }}
  expandEvent /* default undefined */
  collapseEvent /* default undefined */
  toggleEvent /* default undefined */
  render={({
    toggle,
    setCollapsibleElement,
    toggleState,
    isMoving,
    hasReversed,
    range /* linear value between [0 and 1] */,
    progress /* easing result value between [0 and 1] */
  }) => {
    /* optional logic here */

    /*
      markup example
      where setCollapsibleElement, toggle and progress are used
    */
    return (
      <div className="slide-toggle">
        <div className="slide-toggle__header">
          <button className="slide-toggle__button" onClick={toggle}>
            toggle
          </button>
        </div>
        <div className="slide-toggle__box" ref={setCollapsibleElement}>
          <div
            className="slide-toggle__box-inner"
            style={{ opacity: Math.max(0.5, progress) }}
          >
            Collapsible content
          </div>
        </div>
      </div>
    );
  }}
/>;

properties

  • duration - movement duration in milli seconds
  • easeCollapse - function which generates a value between [0 and 1]
  • easeExpand - function which generates a value between [0 and 1]
  • collapsed - start in collapsed mode
  • irreversible - you can't reverse direction during movement
  • noDisplayStyle - skip adding display:none on collapsed
  • noOverflowHidden - skip adding overflow:hidden on the collapsible element
  • bestPerformance - don't apply setState for every frame update. Disables range and progress update
  • whenReversedUseBackwardEase - play backwards on reverse toggling
  • interpolateOnReverse - avoid jumpy height changes when easeCollapse and easeExpand gives far different height position on reverse toggling.
  • onExpanded - event hook
  • onExpanding - event hook
  • onCollapsed - event hook
  • onCollapsing - event hook
  • onMount - event hook
  • onUnmount - event hook
  • render - render callback
  • children - render callback
  • offsetHeight - use offsetHeight HTML element calculation
  • expandEvent - update value to Date.now() to invoke a controlled expand
  • collapseEvent - update value to Date.now() to invoke a controlled collapse
  • toggleEvent - update value to Date.now() to invoke a controlled toggle

cdn

https://unpkg.com/react-slide-toggle/

<script src="https://unpkg.com/react-slide-toggle/dist/ReactSlideToggle.umd.js">
  <script>
  <script>
  var SlideToggle = window.ReactSlideToggle;
</script>

npm

https://www.npmjs.com/package/react-slide-toggle

provide your own markup

The component provides the functionality. Minimum requirement is to bind the collapsible element with setCollapsibleElement. Use the toggle function to toggle the collapsible element.

provide your own easing functions

Look for examples in the App component

import eases from "eases";
import BezierEasing from "bezier-easing";

To minimize the component size, no default easing library has been added.

You can see examples of JS-easing library usage here

design goals

  • flexible - provide your own markup, styling and easing
  • interruptible - can be reversed during movement
  • simple api with event hooks
  • inert - when collapsed you should tab over the collapsed component
  • minimal in size
  • availability - from cdn or npm install
  • generate range and progress [0;1] values which can be used for further custom animation
  • JS is used over CSS transition on purpose to enable possible interpolation or other custom math calculations

library implementation details

  • Used life-cycle are componentWillUnmount and render
  • Extends React.Component
  • Uses setState

local development

  • git clone or download
  • npm install
  • npm run build
  • The build files are now in the dist folder
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].