react-undo-redo-state
v1.10.6
Published
Effortlessly enable undo and redo capabilities in your React applications with this powerful custom hook. 'useUndoRedoState' empowers users with intuitive keyboard shortcuts and programmatic control, allowing them to revert or reapply state changes seamle
Downloads
75
Maintainers
Readme
useUndoRedoState
useUndoRedoState
is a custom React hook that provides undo and redo functionality for state management. It allows you to easily integrate undo and redo capabilities into your React applications, giving users the ability to revert or reapply state changes with keyboard shortcuts or programmatic methods.
Features
- Keyboard Shortcuts: The hook automatically sets up event listeners for keyboard shortcuts (
Cmd+Z
for undo andCmd+Shift+Z
for redo on macOS, orCtrl+Z
andCtrl+Shift+Z
on other platforms). - Programmatic Control: In addition to keyboard shortcuts, you can control undo and redo operations programmatically by calling the provided
undo
andredo
functions. - Customizable Stack Size: You can customize the maximum size of the undo and redo stacks to control memory usage.
- Callback Functions: The hook supports optional callback functions that are called after undo or redo operations, allowing you to perform additional actions or side effects.
- Reset State: Provides a function to reset the state to its initial value.
- Clear History: Provides a function to clear both the undo and redo stacks.
Installation
You can install the package via npm or yarn:
npm install react-undo-redo-state
yarn add react-undo-redo-state
Usage
import React from 'react';
import useUndoRedoState from 'react-undo-redo-state';
export default function CounterApp() {
const [
count,
setCount,
undo,
redo,
resetState,
clearHistory
] = useUndoRedoState(0);
return (
<div className="w-full h-screen mt-20">
<div className="flex flex-col gap-5 items-center">
<p className="text-2xl">{count}</p>
<div className="flex items-center gap-5">
<button onClick={() => setCount(count - 1)}>Decrement</button>
<button onClick={() => setCount(count + 1)}>Increment</button>
<button onClick={undo}>Undo</button>
<button onClick={redo}>Redo</button>
<button onClick={resetState}>Reset</button>
<button onClick={clearHistory}>Clear History</button>
</div>
</div>
</div>
);
}
The useUndoRedoState hook accepts two arguments:
initialState
: The initial state value.options
(optional): An object containing configuration options:
maxStackSize
: The maximum size of the undo and redo stacks (default: 10).
onUndo
: A callback function to be called after an undo operation.
onRedo
: A callback function to be called after a redo operation.
The hook returns an array with six elements:
state
: The current state value.setValue
: A function to set a new state value. This function automatically adds the previous state to the undo stack, enabling undo operations.undo
: A function to revert the state to the previous value in the undo stack.redo
: A function to apply the next value from the redo stack to the state.resetState
: A function to reset the state to the initial value.clearHistory
: A function to clear both the undo and redo stacks.
Demo
Check out the useUndoRedoState hook demo here featuring a simple Next.js counter app.
Contributing
Contributions are welcome! Please feel free to submit issues or pull requests on the GitHub repository
License
This project is licensed under the MIT License.
Summary of Changes (v1.10.6):
- Updated Features Section: Added details for the new
resetState
andclearHistory
functions. - Usage Example: Updated the usage example to show the use of the new functions and the renamed
setValue
function. - Return Object Documentation: Updated the documentation to reflect returning an object instead of a tuple.