Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add undo handler to allow undoing actions in apps #1610

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
84 changes: 83 additions & 1 deletion core/js/js.js
Original file line number Diff line number Diff line change
Expand Up @@ -1075,7 +1075,7 @@ OC.Notification={
*
* @param {string} html Message to display
* @param {Object} [options] options
* @param {string] [options.type] notification type
* @param {string} [options.type] notification type
* @param {int} [options.timeout=0] timeout value, defaults to 0 (permanent)
* @return {jQuery} jQuery element for notification row
*/
Expand Down Expand Up @@ -1287,6 +1287,88 @@ OC.Breadcrumb={
}
};

OC.Undo = {
_currentCommand: undefined,
_$notificationRow: undefined,
_notificationTimer: undefined,

/**
* Add an action to the undo queue
*
* @since 11
* @param {OC.Undo.Command} command
* @param {string} text
* @returns {OC.Undo.Command}
*/
push: function(command, text) {
var self = this;
if (!_.isUndefined(this._currentCommand)) {
this._currentCommand.execute();
}
this._currentCommand = command;
this._$notificationRow = OC.Notification.showHtml('<span>' + text + '</span> <a>' + t('core', 'Click to undo') + '</a>');
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'd prefer if text would be escaped.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

sure, I'll add Handlebars to render that html string


// If a user clicks the notification, we undo the command
this._$notificationRow.click(function() {
self.undo();
});
// If it's not clicked, then we execute it
this._notificationTimer = setTimeout(function() {
self.execute();
}, 7 * 1000);
},

/**
* Execute the current command
*
* @todo bind to onpageunload
*
* @returns {undefined}
*/
execute: function() {
if (!_.isUndefined(this._currentCommand)) {
clearTimeout(this._notificationTimer);
OC.Notification.hide(this._$notificationRow);
this._currentCommand.execute();
this._currentCommand = undefined;
}
},

/**
* Undo the current command
*
* @returns {undefined}
*/
undo: function() {
if (!_.isUndefined(this._currentCommand)) {
clearTimeout(this._notificationTimer);
OC.Notification.hide(this._$notificationRow);
this._currentCommand.undo();
this._currentCommand = undefined;
}
}
};
OC.Undo.Command = function(execute, undo) {
this._executeFn = execute;
this._undoFn = undo;
this._executed = false;
this._undone = false;
};
OC.Undo.Command.prototype = {
execute: function() {
if (!this._executed) {
this._executeFn();
this._executed = true;
}
},
undo: function() {
if (!this._undone && this._undoFn) {
this._undoFn();
this._undone = true;
}
}
};

if(typeof localStorage !=='undefined' && localStorage !== null){
/**
* User and instance aware localstorage
Expand Down
155 changes: 155 additions & 0 deletions core/js/tests/specs/undoSpec.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,155 @@
/**
* @copyright 2016 Christoph Wurst <[email protected]>
*
* @author 2016 Christoph Wurst <[email protected]>
*
* @license GNU AGPL version 3 or any later version
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/

describe('Undo handler', function() {
var execute, undo, cmd;
var clock;

beforeEach(function() {
jasmine.clock().install();
clock = jasmine.clock();

// Reset the handler
OC.Undo.execute();

execute = jasmine.createSpy('execute');
undo = jasmine.createSpy('undo');
cmd = new OC.Undo.Command(execute, undo);
});

afterEach(function() {
jasmine.clock().uninstall();
});

it('shows a notification when a command is added', function() {
spyOn(OC.Notification, 'showHtml').and.callThrough();

OC.Undo.push(cmd, 'My action');

expect(OC.Notification.showHtml.calls.count()).toBe(1);
expect(OC.Notification.showHtml).toHaveBeenCalledWith('<span>My action</span> <a>Click to undo</a>');
});

it('hides the notification after 7sec and executes the command', function() {
var $row = $('<div/>');
spyOn(OC.Notification, 'showHtml').and.callFake(function() {
return $row;
});
spyOn(OC.Notification, 'hide');

OC.Undo.push(cmd, 'My action');
clock.tick(3000);
expect(execute).not.toHaveBeenCalled();
expect(undo).not.toHaveBeenCalled();

clock.tick(4200);
expect(execute).toHaveBeenCalled();
expect(undo).not.toHaveBeenCalled();
expect(OC.Notification.hide).toHaveBeenCalledWith($row);
});

it('executes undo if the user clicks the notification', function() {
var $row = $('<div/>');
spyOn(OC.Notification, 'showHtml').and.callFake(function() {
return $row;
});
spyOn(OC.Notification, 'hide');

OC.Undo.push(cmd, 'My action');
clock.tick(3000);
expect(execute).not.toHaveBeenCalled();
expect(undo).not.toHaveBeenCalled();

$row.trigger('click');
expect(execute).not.toHaveBeenCalled();
expect(undo).toHaveBeenCalled();
expect(OC.Notification.hide).toHaveBeenCalledWith($row);
});

it('executes the previous command if a second one is added', function() {
spyOn(OC.Notification, 'showHtml').and.callThrough();

OC.Undo.push(cmd, 'My action');
clock.tick(3000);
expect(execute).not.toHaveBeenCalled();
expect(undo).not.toHaveBeenCalled();

var cmd2 = new OC.Undo.Command(function() {}, function() {});
OC.Undo.push(cmd2, 'My second action');

expect(execute).toHaveBeenCalled();
expect(undo).not.toHaveBeenCalled();
});

it('executes the added command', function() {
OC.Undo.push(cmd, 'My action');
clock.tick(3000);
OC.Undo.execute();

expect(execute).toHaveBeenCalled();
expect(undo).not.toHaveBeenCalled();
});
});

describe('undoable command', function() {
var execute, undo;

beforeEach(function() {
execute = jasmine.createSpy('execute');
undo = jasmine.createSpy('undo');
});

it('constructs the command correctly', function() {
var cmd = new OC.Undo.Command(execute, undo);

expect(cmd._executed).toBe(false);
expect(cmd._undone).toBe(false);
});

it('does not execute a command twice', function() {
var cmd = new OC.Undo.Command(execute, undo);

cmd.execute();

expect(execute.calls.count()).toBe(1);
expect(cmd._executed).toBe(true);

cmd.execute();

expect(execute.calls.count()).toBe(1);
expect(cmd._executed).toBe(true);
});

it('does not undo a command twice', function() {
var cmd = new OC.Undo.Command(execute, undo);

cmd.undo();

expect(undo.calls.count()).toBe(1);
expect(cmd._undone).toBe(true);

cmd.execute();

expect(undo.calls.count()).toBe(1);
expect(cmd._undone).toBe(true);
});
});