jodit
Version:
Jodit is an awesome and useful wysiwyg editor with filebrowser
110 lines (109 loc) • 3.56 kB
JavaScript
/*!
* Jodit Editor (https://xdsoft.net/jodit/)
* Released under MIT see LICENSE.txt in the project root for license information.
* Copyright (c) 2013-2025 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
*/
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
r = Reflect.decorate(decorators, target, key, desc);
else
for (var i = decorators.length - 1; i >= 0; i--)
if (d = decorators[i])
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
return c > 3 && r && Object.defineProperty(target, key, r), r;
};
import { autobind } from "../decorators/index.js";
import { Dom } from "./dom.js";
import { Eventify } from "../event-emitter/eventify.js";
export class LazyWalker extends Eventify {
setWork(root) {
if (this.isWorked) {
this.break();
}
this.workNodes = Dom.eachGen(root, !this.options.reverse);
this.isFinished = false;
this._requestStarting();
return this;
}
constructor(async, options = {}) {
super();
this.async = async;
this.options = options;
this.workNodes = null;
this.hadAffect = false;
this.isWorked = false;
this.isFinished = false;
this.idleId = 0;
this.__schedulerController = null;
}
_requestStarting() {
this.__schedulerController = new AbortController();
this.async
.schedulerPostTask(this.__workPerform, {
delay: this.options.timeout,
signal: this.__schedulerController.signal
})
.catch(() => null);
}
break(reason) {
if (this.isWorked) {
this.stop();
this.emit('break', reason);
}
}
end() {
if (this.isWorked) {
this.stop();
this.emit('end', this.hadAffect);
this.hadAffect = false;
}
}
stop() {
this.isWorked = false;
this.isFinished = true;
this.workNodes = null;
this.async.cancelIdleCallback(this.idleId);
}
destruct() {
super.destruct();
this.stop();
}
__workPerform() {
var _a;
if (this.workNodes) {
this.isWorked = true;
let count = 0;
const chunkSize = (_a = this.options.timeoutChunkSize) !== null && _a !== void 0 ? _a : 50;
while (!this.isFinished && count <= chunkSize) {
const item = this.workNodes.next();
count += 1;
if (this.visitNode(item.value)) {
this.hadAffect = true;
}
if (item.done) {
this.end();
return;
}
}
}
else {
this.end();
}
if (!this.isFinished) {
this._requestStarting();
}
}
visitNode(nodeElm) {
var _a;
if (!nodeElm ||
(this.options.whatToShow !== undefined &&
nodeElm.nodeType !== this.options.whatToShow)) {
return false;
}
return (_a = this.emit('visit', nodeElm)) !== null && _a !== void 0 ? _a : false;
}
}
__decorate([
autobind
], LazyWalker.prototype, "__workPerform", null);