function attachRunningHandlers({editor, node, fileName, opts}) {
const containerDiv = node.querySelector(`.${CSS_CLASSES.LEAN_EDITOR_CONTAINER}`);
const decoTimer = new CoalescedTimer();
return [
currentlyRunning.updated.on((files) => {
containerDiv.className = `${CSS_CLASSES.LEAN_EDITOR_CONTAINER} ${files.length ? CSS_CLASSES.RUNNING : CSS_CLASSES.DONE}`;
}),
server.tasks.on(({tasks, is_running}) => {
decoTimer.do(0 && config.debounceAllMessages, () => {
const min_line = opts.lineNumberFormatter(1);
const filteredTasks = tasks.filter(({file_name}) => file_name === fileName);
if (filteredTasks.length) {
filteredTasks.map(({pos_line, end_pos_line}) => {
for (let j=0; j<editor.lineCount(); j++) {
if (j+min_line >= pos_line || j+min_line < end_pos_line) {
editor.addLineClass(j, "gutter", `${CSS_CLASSES.CODE_MIRROR_GUTTER_BUSY}`);
} else {
editor.removeLineClass(j, "gutter", `${CSS_CLASSES.CODE_MIRROR_GUTTER_BUSY}`);
}
}
});
} else {
for (let j=0; j<editor.lineCount(); j++) {
editor.removeLineClass(j, "gutter", `${CSS_CLASSES.CODE_MIRROR_GUTTER_BUSY}`);
}
}
containerDiv.className = `${CSS_CLASSES.LEAN_EDITOR_CONTAINER} ${is_running ? CSS_CLASSES.RUNNING : CSS_CLASSES.DONE}`;
});
})
];
}