mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-07-23 13:29:02 +08:00
refactor(editor): history as a store extension (#12214)
<!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit - **Refactor** - Improved history and undo/redo management across the app by introducing a dedicated history extension. Undo/redo operations now use a more focused undo manager, resulting in clearer and more consistent behavior. - **Documentation** - Updated API documentation to reflect changes in history management, including revised method signatures and removal of outdated event references. <!-- end of auto-generated comment: release notes by coderabbit.ai -->
This commit is contained in:
@@ -94,8 +94,14 @@ export class StoreSelectionExtension extends StoreExtension {
|
||||
}
|
||||
);
|
||||
|
||||
this.store.history.on('stack-item-added', this._itemAdded);
|
||||
this.store.history.on('stack-item-popped', this._itemPopped);
|
||||
this.store.history.undoManager.on('stack-item-added', this._itemAdded);
|
||||
this.store.history.undoManager.on('stack-item-popped', this._itemPopped);
|
||||
}
|
||||
|
||||
override disposed() {
|
||||
super.disposed();
|
||||
this.store.history.undoManager.off('stack-item-added', this._itemAdded);
|
||||
this.store.history.undoManager.off('stack-item-popped', this._itemPopped);
|
||||
}
|
||||
|
||||
get value() {
|
||||
|
||||
Reference in New Issue
Block a user