adopted-ember-addons / adopted-ember-addons/validated-changeset
Store "transactions" to enable undo/redo history
- Vorherrschende Sprache
- TypeScript
- Sterne
- 38
- Forks
- 27
- PR-Merge-Kennzahlen
- Keine gemergten PRs in 30 T.
Beschreibung
Kind of based off of the data structure in https://github.com/validated-changeset/validated-changeset/issues/144
It could be good to record "transactions" every time execute is called, effectively storing that current/original object from #144 as a type-of-snapshot each time execute is called. Or maybe it'd look like:
```js
changeset.transactions
// returns =>
[
{
executedAt: timestamp,
snapshot: (existing snapshot)
changes: {
key: { original, current }
}
},
{
executedAt: timestamp,
snapshot: (existing snapshot)
changes: {
key: { original, current }
}
}
// ....
]
```
This would enable undo/redo history
Beitragsleitfaden
Für dieses Repository ist kein Beitragsleitfaden indexiert
Bewertung
Dieses Issue wurde noch nicht bewertet.