use-simple-undo

1.0.4 • Public • Published

Use Events

npm npm npm bundle size (minified + gzip) NpmLicense

Use Simple Undo - Simple solution to handle undo\redo turned into React Hooks. Read about Hooks feature.

Documentation

https://sandiiarov.github.io/use-simple-undo

Install

Note: React 16.8+ is required for Hooks.

With npm

npm i use-simple-undo

Or with yarn

yarn add use-simple-undo

Usage

import useSimpleUndo from 'use-simple-undo';
const Counter = () => {
  const [state, cursor, setValue, { undo, redo }] = useSimpleUndo(0);
 
  const value = state[cursor];
 
  const increment = () => setValue(value + 1);
  const decrement = () => setValue(value - 1);
 
  return (
    <>
      <div>{value}</div>
      <button onClick={increment}>increment</button>
      <button onClick={decrement}>decrement</button>
      <button onClick={undo}>undo</button>
      <button onClick={redo}>redo</button>
    </>
  );
};

Readme

Keywords

none

Package Sidebar

Install

npm i use-simple-undo

Weekly Downloads

7

Version

1.0.4

License

MIT

Unpacked Size

492 kB

Total Files

13

Last publish

Collaborators

  • alexsandiyarov