Btw, is there something unique with UndoManager which causes implementation 
problems in WebKit?
There are plenty of other APIs not using eventlisteners which take JS 
callbacks: setTimeout, requestAnimationFrame,
Google's File System API, PeerConnection ... Why aren't those causing problems?

We shouldn't change the UndoManager API because of implementation issues, but 
if event based API ends up being better.



On 07/05/2012 01:38 AM, Ryosuke Niwa wrote:
Hi all,

Sukolsak has been implementing the Undo Manager API in WebKit but the fact 
undoManager.transact() takes a pure JS object with callback functions is
making it very challenging.  The problem is that this object needs to be kept 
alive by either JS reference or DOM but doesn't have a backing C++
object.  Also, as far as we've looked, there are no other specification that 
uses the same mechanism.

Since I want to make the API consistent with the rest of the platform and the 
implementation maintainable in WebKit, I propose the following changes:

  * Re-introduce DOMTransaction interface so that scripts can instantiate new 
DOMTransaction().
  * Introduce AutomaticDOMTransaction that inherits from DOMTransaction and has 
a constructor that takes two arguments: a function and an optional label

After this change, authors can write:
scope.undoManager.transact(new AutomaticDOMTransaction{function () {
     scope.appendChild("foo");
}, 'append "foo"'));

instead of:

scope.undoManager.transact({executeAutomatic: function () {
     scope.appendChild("foo");
}, label: 'append "foo"'});

And

document.undoManager.transact(new DOMTransaction({function () {
         // Draw a line on canvas
     }, function () {
         // Undraw a line
     }, function () { this.execute(); },
     'Draw a line'
}));

instead of:

document.undoManager.transact({ execute: function () {
         // Draw a line on canvas
     }, undo: function () {
         // Undraw a line
     }, redo: function () { this.execute(); },
     label: 'Draw a line'
});

Best,
Ryosuke Niwa
Software Engineer
Google Inc.



Reply via email to