useHistorySignal

Track the change history of a signal, provides undo and redo functionality

Examples

Basic Usage

count:0

History:

{"snapshot":0,"timestamp":1743732213671}

Basic Usage

track the change history of a Signal

Manual Commit

count:0

History:

{"snapshot":0,"timestamp":1743732213672}

Manual Commit

Manually track the change history of a Signal

API

function useHistorySignal<Raw>(signal: Accessor<Raw>, options?: Options): Result<Raw>
function useHistorySignal<Raw>(signal: Accessor<Raw>, options?: Options): Result<Raw>

Params

PropertyDescriptionTypeDefault
sourceData sourceAccessor<Raw>-
optionsOptionsOptions-

Options<Raw>

PropertyDescriptionTypeDefault
capacityMaximum number of history to be kept. Default to unlimited.number-
manualManually track the change history(manual call commit()booleanfalse
cloneClone when taking a snapshot, shortcut for dump:JSON.parse(JSON.stringify(value))boolean | (x: Raw)=> Rawfalse
dumpSerialize data into the history(v: Raw) => Serialized(x: Raw) => x
parseDeserialize data from the history(v: Serialized) => Raw(x: Serialized) => x
setSourceset data source, RequiredSetter<Raw>-

Result<Raw>

PropertyDescriptionType
sourceBypassed tracking signal from the argumentAccessor<Raw>
lastLast history point, source can be different if pausedAccessor<Record<Raw>>
historyAn array of history records for undo, newest comes to first.Accessor<Record<Raw>[]>
canUndoA Signal representing if undo is possibleAccessor<boolean>
canRedoA Signal representing if redo is possibleAccessor<boolean>
undoStackRecords array for undoAccessor<Record<Raw>[]>
redoStackRecords array for redoAccessor<Record<Raw>[]>
undoUndo changes() => void
redoRedo changes() => void
commitCreate a new history record() => void
resetReset Signal's value with latest history() => void
clearClear all the history() => void

Record<Raw>

PropertyDescriptionType
snapshotsnapshot of the changeRaw
timestamptimestamp of the changenumber