pad.libre-service.eu-etherpad/src/static/js/undomodule.js

290 lines
9 KiB
JavaScript
Raw Normal View History

/**
* This code is mostly from the old Etherpad. Please help us to comment this code.
* This helps other people to understand this code better and helps them to improve it.
* TL;DR COMMENTS ON THIS FILE ARE HIGHLY APPRECIATED
*/
2011-03-26 14:10:41 +01:00
/**
* Copyright 2009 Google Inc.
2011-07-07 19:59:34 +02:00
*
2011-03-26 14:10:41 +01:00
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
2011-07-07 19:59:34 +02:00
*
2011-03-26 14:10:41 +01:00
* http://www.apache.org/licenses/LICENSE-2.0
2011-07-07 19:59:34 +02:00
*
2011-03-26 14:10:41 +01:00
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS-IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
2020-11-23 19:24:19 +01:00
const Changeset = require('./Changeset');
const _ = require('./underscore');
2011-03-26 14:10:41 +01:00
2020-11-23 19:24:19 +01:00
var undoModule = (function () {
const stack = (function () {
const stackElements = [];
2011-03-26 14:10:41 +01:00
// two types of stackElements:
// 1) { elementType: UNDOABLE_EVENT, eventType: "anything", [backset: <changeset>,]
// [selStart: <char number>, selEnd: <char number>, selFocusAtStart: <boolean>] }
// 2) { elementType: EXTERNAL_CHANGE, changeset: <changeset> }
// invariant: no two consecutive EXTERNAL_CHANGEs
2020-11-23 19:24:19 +01:00
let numUndoableEvents = 0;
2011-03-26 14:10:41 +01:00
2020-11-23 19:24:19 +01:00
const UNDOABLE_EVENT = 'undoableEvent';
const EXTERNAL_CHANGE = 'externalChange';
2011-03-26 14:10:41 +01:00
function clearStack() {
2011-03-26 14:10:41 +01:00
stackElements.length = 0;
2011-07-07 19:59:34 +02:00
stackElements.push(
2020-11-23 19:24:19 +01:00
{
elementType: UNDOABLE_EVENT,
eventType: 'bottom',
});
2011-03-26 14:10:41 +01:00
numUndoableEvents = 1;
}
clearStack();
function pushEvent(event) {
2020-11-23 19:24:19 +01:00
const e = _.extend(
{}, event);
2011-03-26 14:10:41 +01:00
e.elementType = UNDOABLE_EVENT;
stackElements.push(e);
numUndoableEvents++;
2020-11-23 19:24:19 +01:00
// dmesg("pushEvent backset: "+event.backset);
2011-03-26 14:10:41 +01:00
}
function pushExternalChange(cs) {
2020-11-23 19:24:19 +01:00
const idx = stackElements.length - 1;
if (stackElements[idx].elementType == EXTERNAL_CHANGE) {
2011-07-07 19:59:34 +02:00
stackElements[idx].changeset = Changeset.compose(stackElements[idx].changeset, cs, getAPool());
2020-11-23 19:24:19 +01:00
} else {
2011-07-07 19:59:34 +02:00
stackElements.push(
2020-11-23 19:24:19 +01:00
{
elementType: EXTERNAL_CHANGE,
changeset: cs,
});
2011-03-26 14:10:41 +01:00
}
}
function _exposeEvent(nthFromTop) {
2011-03-26 14:10:41 +01:00
// precond: 0 <= nthFromTop < numUndoableEvents
2020-11-23 19:24:19 +01:00
const targetIndex = stackElements.length - 1 - nthFromTop;
let idx = stackElements.length - 1;
while (idx > targetIndex || stackElements[idx].elementType == EXTERNAL_CHANGE) {
if (stackElements[idx].elementType == EXTERNAL_CHANGE) {
const ex = stackElements[idx];
const un = stackElements[idx - 1];
if (un.backset) {
const excs = ex.changeset;
const unbs = un.backset;
2011-07-07 19:59:34 +02:00
un.backset = Changeset.follow(excs, un.backset, false, getAPool());
ex.changeset = Changeset.follow(unbs, ex.changeset, true, getAPool());
2020-11-23 19:24:19 +01:00
if ((typeof un.selStart) === 'number') {
const newSel = Changeset.characterRangeFollow(excs, un.selStart, un.selEnd);
2011-07-07 19:59:34 +02:00
un.selStart = newSel[0];
un.selEnd = newSel[1];
2020-11-23 19:24:19 +01:00
if (un.selStart == un.selEnd) {
2011-07-07 19:59:34 +02:00
un.selFocusAtStart = false;
}
}
}
stackElements[idx - 1] = ex;
stackElements[idx] = un;
2020-11-23 19:24:19 +01:00
if (idx >= 2 && stackElements[idx - 2].elementType == EXTERNAL_CHANGE) {
2011-07-07 19:59:34 +02:00
ex.changeset = Changeset.compose(stackElements[idx - 2].changeset, ex.changeset, getAPool());
stackElements.splice(idx - 2, 1);
idx--;
}
2020-11-23 19:24:19 +01:00
} else {
2011-07-07 19:59:34 +02:00
idx--;
}
2011-03-26 14:10:41 +01:00
}
}
function getNthFromTop(n) {
2011-03-26 14:10:41 +01:00
// precond: 0 <= n < numEvents()
_exposeEvent(n);
return stackElements[stackElements.length - 1 - n];
}
function numEvents() {
2011-03-26 14:10:41 +01:00
return numUndoableEvents;
}
function popEvent() {
2011-03-26 14:10:41 +01:00
// precond: numEvents() > 0
_exposeEvent(0);
numUndoableEvents--;
return stackElements.pop();
}
2011-07-07 19:59:34 +02:00
return {
2020-11-23 19:24:19 +01:00
numEvents,
popEvent,
pushEvent,
pushExternalChange,
clearStack,
getNthFromTop,
2011-07-07 19:59:34 +02:00
};
2011-03-26 14:10:41 +01:00
})();
// invariant: stack always has at least one undoable event
2020-11-23 19:24:19 +01:00
let undoPtr = 0; // zero-index from top of stack, 0 == top
2011-03-26 14:10:41 +01:00
function clearHistory() {
2011-03-26 14:10:41 +01:00
stack.clearStack();
undoPtr = 0;
}
function _charOccurrences(str, c) {
2020-11-23 19:24:19 +01:00
let i = 0;
let count = 0;
while (i >= 0 && i < str.length) {
2011-03-26 14:10:41 +01:00
i = str.indexOf(c, i);
2020-11-23 19:24:19 +01:00
if (i >= 0) {
2011-07-07 19:59:34 +02:00
count++;
i++;
2011-03-26 14:10:41 +01:00
}
}
return count;
}
function _opcodeOccurrences(cs, opcode) {
2011-03-26 14:10:41 +01:00
return _charOccurrences(Changeset.unpack(cs).ops, opcode);
}
function _mergeChangesets(cs1, cs2) {
2011-07-07 19:59:34 +02:00
if (!cs1) return cs2;
if (!cs2) return cs1;
2011-03-26 14:10:41 +01:00
// Rough heuristic for whether changesets should be considered one action:
// each does exactly one insertion, no dels, and the composition does also; or
// each does exactly one deletion, no ins, and the composition does also.
// A little weird in that it won't merge "make bold" with "insert char"
// but will merge "make bold and insert char" with "insert char",
// though that isn't expected to come up.
2020-11-23 19:24:19 +01:00
const plusCount1 = _opcodeOccurrences(cs1, '+');
const plusCount2 = _opcodeOccurrences(cs2, '+');
const minusCount1 = _opcodeOccurrences(cs1, '-');
const minusCount2 = _opcodeOccurrences(cs2, '-');
if (plusCount1 == 1 && plusCount2 == 1 && minusCount1 == 0 && minusCount2 == 0) {
2011-03-26 14:10:41 +01:00
var merge = Changeset.compose(cs1, cs2, getAPool());
var plusCount3 = _opcodeOccurrences(merge, '+');
var minusCount3 = _opcodeOccurrences(merge, '-');
2020-11-23 19:24:19 +01:00
if (plusCount3 == 1 && minusCount3 == 0) {
2011-07-07 19:59:34 +02:00
return merge;
2011-03-26 14:10:41 +01:00
}
2020-11-23 19:24:19 +01:00
} else if (plusCount1 == 0 && plusCount2 == 0 && minusCount1 == 1 && minusCount2 == 1) {
2011-03-26 14:10:41 +01:00
var merge = Changeset.compose(cs1, cs2, getAPool());
var plusCount3 = _opcodeOccurrences(merge, '+');
var minusCount3 = _opcodeOccurrences(merge, '-');
2020-11-23 19:24:19 +01:00
if (plusCount3 == 0 && minusCount3 == 1) {
2011-07-07 19:59:34 +02:00
return merge;
2011-03-26 14:10:41 +01:00
}
}
return null;
}
function reportEvent(event) {
2020-11-23 19:24:19 +01:00
const topEvent = stack.getNthFromTop(0);
2011-03-26 14:10:41 +01:00
function applySelectionToTop() {
2020-11-23 19:24:19 +01:00
if ((typeof event.selStart) === 'number') {
2011-07-07 19:59:34 +02:00
topEvent.selStart = event.selStart;
topEvent.selEnd = event.selEnd;
topEvent.selFocusAtStart = event.selFocusAtStart;
2011-03-26 14:10:41 +01:00
}
}
2020-11-23 19:24:19 +01:00
if ((!event.backset) || Changeset.isIdentity(event.backset)) {
2011-03-26 14:10:41 +01:00
applySelectionToTop();
2020-11-23 19:24:19 +01:00
} else {
let merged = false;
if (topEvent.eventType == event.eventType) {
const merge = _mergeChangesets(event.backset, topEvent.backset);
if (merge) {
2011-07-07 19:59:34 +02:00
topEvent.backset = merge;
2020-11-23 19:24:19 +01:00
// dmesg("reportEvent merge: "+merge);
2011-07-07 19:59:34 +02:00
applySelectionToTop();
merged = true;
}
2011-03-26 14:10:41 +01:00
}
2020-11-23 19:24:19 +01:00
if (!merged) {
/*
* Push the event on the undo stack only if it exists, and if it's
* not a "clearauthorship". This disallows undoing the removal of the
* authorship colors, but is a necessary stopgap measure against
* https://github.com/ether/etherpad-lite/issues/2802
*/
2020-11-23 19:24:19 +01:00
if (event && (event.eventType !== 'clearauthorship')) {
stack.pushEvent(event);
}
2011-03-26 14:10:41 +01:00
}
undoPtr = 0;
}
}
function reportExternalChange(changeset) {
2020-11-23 19:24:19 +01:00
if (changeset && !Changeset.isIdentity(changeset)) {
2011-03-26 14:10:41 +01:00
stack.pushExternalChange(changeset);
}
}
function _getSelectionInfo(event) {
2020-11-23 19:24:19 +01:00
if ((typeof event.selStart) !== 'number') {
2011-03-26 14:10:41 +01:00
return null;
2020-11-23 19:24:19 +01:00
} else {
2011-07-07 19:59:34 +02:00
return {
selStart: event.selStart,
selEnd: event.selEnd,
2020-11-23 19:24:19 +01:00
selFocusAtStart: event.selFocusAtStart,
2011-07-07 19:59:34 +02:00
};
2011-03-26 14:10:41 +01:00
}
}
// For "undo" and "redo", the change event must be returned
// by eventFunc and NOT reported through the normal mechanism.
// "eventFunc" should take a changeset and an optional selection info object,
// or can be called with no arguments to mean that no undo is possible.
// "eventFunc" will be called exactly once.
function performUndo(eventFunc) {
2020-11-23 19:24:19 +01:00
if (undoPtr < stack.numEvents() - 1) {
const backsetEvent = stack.getNthFromTop(undoPtr);
const selectionEvent = stack.getNthFromTop(undoPtr + 1);
const undoEvent = eventFunc(backsetEvent.backset, _getSelectionInfo(selectionEvent));
2011-03-26 14:10:41 +01:00
stack.pushEvent(undoEvent);
undoPtr += 2;
2020-11-23 19:24:19 +01:00
} else { eventFunc(); }
2011-03-26 14:10:41 +01:00
}
function performRedo(eventFunc) {
2020-11-23 19:24:19 +01:00
if (undoPtr >= 2) {
const backsetEvent = stack.getNthFromTop(0);
const selectionEvent = stack.getNthFromTop(1);
2011-03-26 14:10:41 +01:00
eventFunc(backsetEvent.backset, _getSelectionInfo(selectionEvent));
stack.popEvent();
undoPtr -= 2;
2020-11-23 19:24:19 +01:00
} else { eventFunc(); }
2011-03-26 14:10:41 +01:00
}
function getAPool() {
2011-03-26 14:10:41 +01:00
return undoModule.apool;
}
2011-07-07 19:59:34 +02:00
return {
2020-11-23 19:24:19 +01:00
clearHistory,
reportEvent,
reportExternalChange,
performUndo,
performRedo,
2011-07-07 19:59:34 +02:00
enabled: true,
2020-11-23 19:24:19 +01:00
apool: null,
2011-07-07 19:59:34 +02:00
}; // apool is filled in by caller
})();
exports.undoModule = undoModule;