Transactions & history
Visly State has support for both transactions and history. Transactions allow you to group multiple mutations into a single mutation to ensure components aren't re-rendered before all mutations are run, and history enables you to add undo / redo capabilities to your app with a single line of code. Transactions work together with the history API to ensure all mutations within a transaction are undone / redone as a single operation.
Transactions
Transactions quickly become necessary in larger applications where you have your mutation logic split across many mutation functions, but want to ensure components only re-render a single time independent of how many mutations you combine. Just wrap your mutation calls in a transaction
block.
When using transactions outside of React, for example in a Node.js application, you can instead call the .transaction()
method on the state container. Make sure you don't use this from React as it won't ensure component re-renders don't trigger multiple times.
History
The history API allows you to implement undo & redo functionality in your application with a single line of code. Just import the undo
and redo
functions in your React app and call them based on a user interaction like a button click. This will undo / redo the latest mutation or transaction in an effecient way. Just like mutations, this will only re-render the components that were affected by the changes to the history. Visly State stores historical state in a compact and efficient way, making it possible to have a near-infinite history stack.
Much like with transactions, in a Node environment you'll want to call the .undo()
and .redo()
method on the state object instead. While these functions work in a React environment as well, they won't ensure the most efficient component re-renders.