2019-05-06 19:21:28 +03:00
|
|
|
/*
|
|
|
|
Copyright 2019 New Vector Ltd
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
import {diffAtCaret, diffDeletion} from "./diff";
|
|
|
|
|
|
|
|
export default class EditorModel {
|
2019-05-09 16:58:32 +03:00
|
|
|
constructor(parts, partCreator, updateCallback) {
|
2019-05-06 19:21:28 +03:00
|
|
|
this._parts = parts;
|
2019-05-09 15:59:52 +03:00
|
|
|
this._partCreator = partCreator;
|
|
|
|
this._activePartIdx = null;
|
|
|
|
this._autoComplete = null;
|
|
|
|
this._autoCompletePartIdx = null;
|
2019-05-09 16:58:32 +03:00
|
|
|
this._updateCallback = updateCallback;
|
2019-05-06 19:21:28 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
_insertPart(index, part) {
|
|
|
|
this._parts.splice(index, 0, part);
|
2019-05-09 15:59:52 +03:00
|
|
|
if (this._activePartIdx >= index) {
|
|
|
|
++this._activePartIdx;
|
|
|
|
}
|
|
|
|
if (this._autoCompletePartIdx >= index) {
|
|
|
|
++this._autoCompletePartIdx;
|
|
|
|
}
|
2019-05-06 19:21:28 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
_removePart(index) {
|
|
|
|
this._parts.splice(index, 1);
|
2019-05-09 15:59:52 +03:00
|
|
|
if (this._activePartIdx >= index) {
|
|
|
|
--this._activePartIdx;
|
|
|
|
}
|
|
|
|
if (this._autoCompletePartIdx >= index) {
|
|
|
|
--this._autoCompletePartIdx;
|
|
|
|
}
|
2019-05-06 19:21:28 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
_replacePart(index, part) {
|
|
|
|
this._parts.splice(index, 1, part);
|
|
|
|
}
|
|
|
|
|
|
|
|
get parts() {
|
|
|
|
return this._parts;
|
|
|
|
}
|
|
|
|
|
2019-05-09 15:59:52 +03:00
|
|
|
get autoComplete() {
|
|
|
|
if (this._activePartIdx === this._autoCompletePartIdx) {
|
|
|
|
return this._autoComplete;
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2019-05-07 17:27:09 +03:00
|
|
|
serializeParts() {
|
|
|
|
return this._parts.map(({type, text}) => {return {type, text};});
|
|
|
|
}
|
|
|
|
|
2019-05-06 19:21:28 +03:00
|
|
|
_diff(newValue, inputType, caret) {
|
2019-05-09 16:42:10 +03:00
|
|
|
const previousValue = this.parts.reduce((text, p) => text + p.text, "");
|
2019-05-08 12:13:36 +03:00
|
|
|
// can't use caret position with drag and drop
|
2019-05-06 19:21:28 +03:00
|
|
|
if (inputType === "deleteByDrag") {
|
2019-05-09 16:42:10 +03:00
|
|
|
return diffDeletion(previousValue, newValue);
|
2019-05-06 19:21:28 +03:00
|
|
|
} else {
|
2019-05-09 16:42:10 +03:00
|
|
|
return diffAtCaret(previousValue, newValue, caret.offset);
|
2019-05-06 19:21:28 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
update(newValue, inputType, caret) {
|
|
|
|
const diff = this._diff(newValue, inputType, caret);
|
|
|
|
const position = this._positionForOffset(diff.at, caret.atNodeEnd);
|
2019-05-09 20:55:24 +03:00
|
|
|
let removedOffsetDecrease = 0;
|
2019-05-06 19:21:28 +03:00
|
|
|
if (diff.removed) {
|
2019-05-09 20:55:24 +03:00
|
|
|
removedOffsetDecrease = this._removeText(position, diff.removed.length);
|
2019-05-06 19:21:28 +03:00
|
|
|
}
|
2019-05-09 20:55:24 +03:00
|
|
|
let addedLen = 0;
|
2019-05-06 19:21:28 +03:00
|
|
|
if (diff.added) {
|
2019-05-09 20:55:24 +03:00
|
|
|
addedLen = this._addText(position, diff.added);
|
2019-05-06 19:21:28 +03:00
|
|
|
}
|
|
|
|
this._mergeAdjacentParts();
|
2019-05-09 20:55:24 +03:00
|
|
|
const caretOffset = diff.at - removedOffsetDecrease + addedLen;
|
2019-05-16 19:58:22 +03:00
|
|
|
let newPosition = this._positionForOffset(caretOffset, true);
|
|
|
|
newPosition = newPosition.skipUneditableParts(this._parts);
|
2019-05-09 15:59:52 +03:00
|
|
|
this._setActivePart(newPosition);
|
2019-05-09 16:58:32 +03:00
|
|
|
this._updateCallback(newPosition);
|
2019-05-09 15:59:52 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
_setActivePart(pos) {
|
|
|
|
const {index} = pos;
|
|
|
|
const part = this._parts[index];
|
2019-05-09 17:54:58 +03:00
|
|
|
if (part) {
|
|
|
|
if (index !== this._activePartIdx) {
|
|
|
|
this._activePartIdx = index;
|
|
|
|
if (this._activePartIdx !== this._autoCompletePartIdx) {
|
|
|
|
// else try to create one
|
|
|
|
const ac = part.createAutoComplete(this._onAutoComplete);
|
|
|
|
if (ac) {
|
|
|
|
// make sure that react picks up the difference between both acs
|
|
|
|
this._autoComplete = ac;
|
|
|
|
this._autoCompletePartIdx = index;
|
|
|
|
}
|
2019-05-09 15:59:52 +03:00
|
|
|
}
|
|
|
|
}
|
2019-05-09 17:54:58 +03:00
|
|
|
// not _autoComplete, only there if active part is autocomplete part
|
|
|
|
if (this.autoComplete) {
|
|
|
|
this.autoComplete.onPartUpdate(part, pos.offset);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
this._activePartIdx = null;
|
|
|
|
this._autoComplete = null;
|
|
|
|
this._autoCompletePartIdx = null;
|
2019-05-09 15:59:52 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-09 21:37:45 +03:00
|
|
|
_onAutoComplete = ({replacePart, caretOffset, close}) => {
|
2019-05-10 15:24:50 +03:00
|
|
|
let pos;
|
2019-05-09 17:07:00 +03:00
|
|
|
if (replacePart) {
|
|
|
|
this._replacePart(this._autoCompletePartIdx, replacePart);
|
2019-05-10 15:24:50 +03:00
|
|
|
let index = this._autoCompletePartIdx;
|
|
|
|
if (caretOffset === undefined) {
|
|
|
|
caretOffset = 0;
|
|
|
|
index += 1;
|
|
|
|
}
|
|
|
|
pos = new DocumentPosition(index, caretOffset);
|
2019-05-09 17:07:00 +03:00
|
|
|
}
|
2019-05-09 16:43:10 +03:00
|
|
|
if (close) {
|
|
|
|
this._autoComplete = null;
|
|
|
|
this._autoCompletePartIdx = null;
|
|
|
|
}
|
2019-05-10 15:24:50 +03:00
|
|
|
// rerender even if editor contents didn't change
|
|
|
|
// to make sure the MessageEditor checks
|
|
|
|
// model.autoComplete being empty and closes it
|
|
|
|
this._updateCallback(pos);
|
2019-05-09 16:43:10 +03:00
|
|
|
}
|
|
|
|
|
2019-05-06 19:21:28 +03:00
|
|
|
_mergeAdjacentParts(docPos) {
|
|
|
|
let prevPart = this._parts[0];
|
|
|
|
for (let i = 1; i < this._parts.length; ++i) {
|
|
|
|
let part = this._parts[i];
|
|
|
|
const isEmpty = !part.text.length;
|
|
|
|
const isMerged = !isEmpty && prevPart.merge(part);
|
|
|
|
if (isEmpty || isMerged) {
|
|
|
|
// remove empty or merged part
|
|
|
|
part = prevPart;
|
|
|
|
this._removePart(i);
|
|
|
|
//repeat this index, as it's removed now
|
|
|
|
--i;
|
|
|
|
}
|
|
|
|
prevPart = part;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-09 20:55:24 +03:00
|
|
|
/**
|
|
|
|
* removes `len` amount of characters at `pos`.
|
2019-05-14 17:49:53 +03:00
|
|
|
* @param {Object} pos
|
|
|
|
* @param {Number} len
|
2019-05-09 20:55:24 +03:00
|
|
|
* @return {Number} how many characters before pos were also removed,
|
|
|
|
* usually because of non-editable parts that can only be removed in their entirety.
|
|
|
|
*/
|
2019-05-06 19:21:28 +03:00
|
|
|
_removeText(pos, len) {
|
|
|
|
let {index, offset} = pos;
|
2019-05-09 20:55:24 +03:00
|
|
|
let removedOffsetDecrease = 0;
|
2019-05-09 16:42:10 +03:00
|
|
|
while (len > 0) {
|
2019-05-06 19:21:28 +03:00
|
|
|
// part might be undefined here
|
|
|
|
let part = this._parts[index];
|
2019-05-09 20:55:24 +03:00
|
|
|
const amount = Math.min(len, part.text.length - offset);
|
2019-05-09 16:42:10 +03:00
|
|
|
if (part.canEdit) {
|
|
|
|
const replaceWith = part.remove(offset, amount);
|
|
|
|
if (typeof replaceWith === "string") {
|
|
|
|
this._replacePart(index, this._partCreator.createDefaultPart(replaceWith));
|
|
|
|
}
|
|
|
|
part = this._parts[index];
|
|
|
|
// remove empty part
|
|
|
|
if (!part.text.length) {
|
|
|
|
this._removePart(index);
|
|
|
|
} else {
|
|
|
|
index += 1;
|
|
|
|
}
|
2019-05-06 19:21:28 +03:00
|
|
|
} else {
|
2019-05-09 20:55:24 +03:00
|
|
|
removedOffsetDecrease += offset;
|
2019-05-09 16:42:10 +03:00
|
|
|
this._removePart(index);
|
2019-05-06 19:21:28 +03:00
|
|
|
}
|
2019-05-09 20:55:24 +03:00
|
|
|
len -= amount;
|
|
|
|
offset = 0;
|
2019-05-06 19:21:28 +03:00
|
|
|
}
|
2019-05-09 20:55:24 +03:00
|
|
|
return removedOffsetDecrease;
|
2019-05-06 19:21:28 +03:00
|
|
|
}
|
|
|
|
|
2019-05-09 20:55:24 +03:00
|
|
|
/**
|
|
|
|
* inserts `str` into the model at `pos`.
|
2019-05-14 17:49:53 +03:00
|
|
|
* @param {Object} pos
|
|
|
|
* @param {string} str
|
2019-05-09 20:55:24 +03:00
|
|
|
* @return {Number} how far from position (in characters) the insertion ended.
|
|
|
|
* This can be more than the length of `str` when crossing non-editable parts, which are skipped.
|
|
|
|
*/
|
2019-05-14 17:49:53 +03:00
|
|
|
_addText(pos, str) {
|
2019-05-09 20:55:24 +03:00
|
|
|
let {index} = pos;
|
|
|
|
const {offset} = pos;
|
|
|
|
let addLen = str.length;
|
2019-05-06 19:21:28 +03:00
|
|
|
const part = this._parts[index];
|
|
|
|
if (part) {
|
2019-05-09 17:54:58 +03:00
|
|
|
if (part.canEdit) {
|
|
|
|
if (part.insertAll(offset, str)) {
|
|
|
|
str = null;
|
|
|
|
} else {
|
|
|
|
const splitPart = part.split(offset);
|
|
|
|
index += 1;
|
|
|
|
this._insertPart(index, splitPart);
|
|
|
|
}
|
2019-05-06 19:21:28 +03:00
|
|
|
} else {
|
2019-05-09 20:55:24 +03:00
|
|
|
// not-editable, insert str after this part
|
|
|
|
addLen += part.text.length - offset;
|
2019-05-06 19:21:28 +03:00
|
|
|
index += 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
while (str) {
|
2019-05-09 15:59:52 +03:00
|
|
|
const newPart = this._partCreator.createPartForInput(str);
|
2019-05-06 19:21:28 +03:00
|
|
|
str = newPart.appendUntilRejected(str);
|
|
|
|
this._insertPart(index, newPart);
|
|
|
|
index += 1;
|
|
|
|
}
|
2019-05-09 20:55:24 +03:00
|
|
|
return addLen;
|
2019-05-06 19:21:28 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
_positionForOffset(totalOffset, atPartEnd) {
|
|
|
|
let currentOffset = 0;
|
|
|
|
const index = this._parts.findIndex(part => {
|
|
|
|
const partLen = part.text.length;
|
|
|
|
if (
|
|
|
|
(atPartEnd && (currentOffset + partLen) >= totalOffset) ||
|
|
|
|
(!atPartEnd && (currentOffset + partLen) > totalOffset)
|
|
|
|
) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
currentOffset += partLen;
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
|
|
|
|
return new DocumentPosition(index, totalOffset - currentOffset);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
class DocumentPosition {
|
|
|
|
constructor(index, offset) {
|
|
|
|
this._index = index;
|
|
|
|
this._offset = offset;
|
|
|
|
}
|
|
|
|
|
|
|
|
get index() {
|
|
|
|
return this._index;
|
|
|
|
}
|
|
|
|
|
|
|
|
get offset() {
|
|
|
|
return this._offset;
|
|
|
|
}
|
2019-05-16 19:58:22 +03:00
|
|
|
|
|
|
|
skipUneditableParts(parts) {
|
|
|
|
const part = parts[this.index];
|
|
|
|
if (part && !part.canEdit) {
|
|
|
|
return new DocumentPosition(this.index + 1, 0);
|
|
|
|
} else {
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
}
|
2019-05-06 19:21:28 +03:00
|
|
|
}
|