mirror of
https://github.com/element-hq/element-web.git
synced 2024-11-30 23:31:28 +03:00
1b4ab856c9
We get an NPE when the user cuts their entire message, and this fixes it.
136 lines
4.1 KiB
JavaScript
136 lines
4.1 KiB
JavaScript
/*
|
|
Copyright 2019 The Matrix.org Foundation C.I.C.
|
|
|
|
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 DocumentOffset from "./offset";
|
|
|
|
export default class DocumentPosition {
|
|
constructor(index, offset) {
|
|
this._index = index;
|
|
this._offset = offset;
|
|
}
|
|
|
|
get index() {
|
|
return this._index;
|
|
}
|
|
|
|
get offset() {
|
|
return this._offset;
|
|
}
|
|
|
|
compare(otherPos) {
|
|
if (this._index === otherPos._index) {
|
|
return this._offset - otherPos._offset;
|
|
} else {
|
|
return this._index - otherPos._index;
|
|
}
|
|
}
|
|
|
|
iteratePartsBetween(other, model, callback) {
|
|
if (this.index === -1 || other.index === -1) {
|
|
return;
|
|
}
|
|
const [startPos, endPos] = this.compare(other) < 0 ? [this, other] : [other, this];
|
|
if (startPos.index === endPos.index) {
|
|
callback(model.parts[this.index], startPos.offset, endPos.offset);
|
|
} else {
|
|
const firstPart = model.parts[startPos.index];
|
|
callback(firstPart, startPos.offset, firstPart.text.length);
|
|
for (let i = startPos.index + 1; i < endPos.index; ++i) {
|
|
const part = model.parts[i];
|
|
callback(part, 0, part.text.length);
|
|
}
|
|
const lastPart = model.parts[endPos.index];
|
|
callback(lastPart, 0, endPos.offset);
|
|
}
|
|
}
|
|
|
|
forwardsWhile(model, predicate) {
|
|
if (this.index === -1) {
|
|
return this;
|
|
}
|
|
|
|
let {index, offset} = this;
|
|
const {parts} = model;
|
|
while (index < parts.length) {
|
|
const part = parts[index];
|
|
while (offset < part.text.length) {
|
|
if (!predicate(index, offset, part)) {
|
|
return new DocumentPosition(index, offset);
|
|
}
|
|
offset += 1;
|
|
}
|
|
// end reached
|
|
if (index === (parts.length - 1)) {
|
|
return new DocumentPosition(index, offset);
|
|
} else {
|
|
index += 1;
|
|
offset = 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
backwardsWhile(model, predicate) {
|
|
if (this.index === -1) {
|
|
return this;
|
|
}
|
|
|
|
let {index, offset} = this;
|
|
const parts = model.parts;
|
|
while (index >= 0) {
|
|
const part = parts[index];
|
|
while (offset > 0) {
|
|
if (!predicate(index, offset - 1, part)) {
|
|
return new DocumentPosition(index, offset);
|
|
}
|
|
offset -= 1;
|
|
}
|
|
// start reached
|
|
if (index === 0) {
|
|
return new DocumentPosition(index, offset);
|
|
} else {
|
|
index -= 1;
|
|
offset = parts[index].text.length;
|
|
}
|
|
}
|
|
}
|
|
|
|
asOffset(model) {
|
|
if (this.index === -1) {
|
|
return new DocumentOffset(0, true);
|
|
}
|
|
let offset = 0;
|
|
for (let i = 0; i < this.index; ++i) {
|
|
offset += model.parts[i].text.length;
|
|
}
|
|
offset += this.offset;
|
|
const lastPart = model.parts[this.index];
|
|
const atEnd = !lastPart || offset >= lastPart.text.length; // if no last part, we're at the end
|
|
return new DocumentOffset(offset, atEnd);
|
|
}
|
|
|
|
isAtEnd(model) {
|
|
if (model.parts.length === 0) {
|
|
return true;
|
|
}
|
|
const lastPartIdx = model.parts.length - 1;
|
|
const lastPart = model.parts[lastPartIdx];
|
|
return this.index === lastPartIdx && this.offset === lastPart.text.length;
|
|
}
|
|
|
|
isAtStart() {
|
|
return this.index === 0 && this.offset === 0;
|
|
}
|
|
}
|