ace2_inner: Avoid unnecessary use of underscore.js

This silences a bunch of you-dont-need-underscore-lodash ESLint
warnings.
pull/4674/head
Richard Hansen 2021-01-17 19:06:35 -05:00 committed by John McLear
parent 51dc5b1627
commit 0bfabfef5d
1 changed files with 23 additions and 28 deletions

View File

@ -22,7 +22,6 @@ const browser = require('./browser');
const padutils = require('./pad_utils').padutils; const padutils = require('./pad_utils').padutils;
const Ace2Common = require('./ace2_common'); const Ace2Common = require('./ace2_common');
const $ = require('./rjquery').$; const $ = require('./rjquery').$;
const _ = require('./underscore');
const isNodeText = Ace2Common.isNodeText; const isNodeText = Ace2Common.isNodeText;
const getAssoc = Ace2Common.getAssoc; const getAssoc = Ace2Common.getAssoc;
@ -231,7 +230,7 @@ function Ace2Inner() {
}); });
// Prevent default behaviour if any hook says so // Prevent default behaviour if any hook says so
if (_.any(authorStyleSet, (it) => it)) { if (authorStyleSet.some((it) => it)) {
return; return;
} }
@ -305,7 +304,7 @@ function Ace2Inner() {
applyChangesToBase: 1, applyChangesToBase: 1,
}; };
_.each(hooks.callAll('aceRegisterNonScrollableEditEvents'), (eventType) => { hooks.callAll('aceRegisterNonScrollableEditEvents').forEach((eventType) => {
_nonScrollableEditEvents[eventType] = 1; _nonScrollableEditEvents[eventType] = 1;
}); });
@ -503,7 +502,7 @@ function Ace2Inner() {
} }
lines = text.substring(0, text.length - 1).split('\n'); lines = text.substring(0, text.length - 1).split('\n');
} else { } else {
lines = _.map(text.split('\n'), textify); lines = text.split('\n').map(textify);
} }
let newText = '\n'; let newText = '\n';
if (lines.length > 0) { if (lines.length > 0) {
@ -1197,7 +1196,7 @@ function Ace2Inner() {
} }
// var fragment = magicdom.wrapDom(document.createDocumentFragment()); // var fragment = magicdom.wrapDom(document.createDocumentFragment());
domInsertsNeeded.push([nodeToAddAfter, lineNodeInfos]); domInsertsNeeded.push([nodeToAddAfter, lineNodeInfos]);
_.each(dirtyNodes, (n) => { dirtyNodes.forEach((n) => {
toDeleteAtEnd.push(n); toDeleteAtEnd.push(n);
}); });
const spliceHints = {}; const spliceHints = {};
@ -1218,19 +1217,19 @@ function Ace2Inner() {
// update the representation // update the representation
p.mark('splice'); p.mark('splice');
_.each(splicesToDo, (splice) => { splicesToDo.forEach((splice) => {
doIncorpLineSplice(splice[0], splice[1], splice[2], splice[3], splice[4]); doIncorpLineSplice(splice[0], splice[1], splice[2], splice[3], splice[4]);
}); });
// do DOM inserts // do DOM inserts
p.mark('insert'); p.mark('insert');
_.each(domInsertsNeeded, (ins) => { domInsertsNeeded.forEach((ins) => {
insertDomLines(ins[0], ins[1]); insertDomLines(ins[0], ins[1]);
}); });
p.mark('del'); p.mark('del');
// delete old dom nodes // delete old dom nodes
_.each(toDeleteAtEnd, (n) => { toDeleteAtEnd.forEach((n) => {
// var id = n.uniqueId(); // var id = n.uniqueId();
// parent of n may not be "root" in IE due to non-tree-shaped DOM (wtf) // parent of n may not be "root" in IE due to non-tree-shaped DOM (wtf)
if (n.parentNode) n.parentNode.removeChild(n); if (n.parentNode) n.parentNode.removeChild(n);
@ -1328,7 +1327,7 @@ function Ace2Inner() {
let lineStartOffset; let lineStartOffset;
if (infoStructs.length < 1) return; if (infoStructs.length < 1) return;
_.each(infoStructs, (info) => { infoStructs.forEach((info) => {
const p2 = PROFILER('insertLine', false); // eslint-disable-line const p2 = PROFILER('insertLine', false); // eslint-disable-line
const node = info.node; const node = info.node;
const key = uniqueId(node); const key = uniqueId(node);
@ -1526,7 +1525,7 @@ function Ace2Inner() {
} }
} }
const lineEntries = _.map(newLineStrings, createDomLineEntry); const lineEntries = newLineStrings.map(createDomLineEntry);
doRepLineSplice(startLine, deleteCount, lineEntries); doRepLineSplice(startLine, deleteCount, lineEntries);
@ -1535,9 +1534,9 @@ function Ace2Inner() {
nodeToAddAfter = getCleanNodeByKey(rep.lines.atIndex(startLine - 1).key); nodeToAddAfter = getCleanNodeByKey(rep.lines.atIndex(startLine - 1).key);
} else { nodeToAddAfter = null; } } else { nodeToAddAfter = null; }
insertDomLines(nodeToAddAfter, _.map(lineEntries, (entry) => entry.domInfo)); insertDomLines(nodeToAddAfter, lineEntries.map((entry) => entry.domInfo));
_.each(keysToDelete, (k) => { keysToDelete.forEach((k) => {
const n = doc.getElementById(k); const n = doc.getElementById(k);
n.parentNode.removeChild(n); n.parentNode.removeChild(n);
}); });
@ -1565,7 +1564,7 @@ function Ace2Inner() {
const linesMutatee = { const linesMutatee = {
// TODO: Rhansen to check usage of args here. // TODO: Rhansen to check usage of args here.
splice: (start, numRemoved, ...args) => { splice: (start, numRemoved, ...args) => {
domAndRepSplice(start, numRemoved, _.map(args, (s) => s.slice(0, -1))); domAndRepSplice(start, numRemoved, args.map((s) => s.slice(0, -1)));
}, },
get: (i) => `${rep.lines.atIndex(i).text}\n`, get: (i) => `${rep.lines.atIndex(i).text}\n`,
length: () => rep.lines.length(), length: () => rep.lines.length(),
@ -1821,7 +1820,7 @@ function Ace2Inner() {
// Change the abstract representation of the document to have a different set of lines. // Change the abstract representation of the document to have a different set of lines.
// Must be called after rep.alltext is set. // Must be called after rep.alltext is set.
const doRepLineSplice = (startLine, deleteCount, newLineEntries) => { const doRepLineSplice = (startLine, deleteCount, newLineEntries) => {
_.each(newLineEntries, (entry) => { newLineEntries.forEach((entry) => {
entry.width = entry.text.length + 1; entry.width = entry.text.length + 1;
}); });
@ -1831,7 +1830,7 @@ function Ace2Inner() {
rep.lines.splice(startLine, deleteCount, newLineEntries); rep.lines.splice(startLine, deleteCount, newLineEntries);
currentCallStack.docTextChanged = true; currentCallStack.docTextChanged = true;
currentCallStack.repChanged = true; currentCallStack.repChanged = true;
const newText = _.map(newLineEntries, (e) => `${e.text}\n`).join(''); const newText = newLineEntries.map((e) => `${e.text}\n`).join('');
rep.alltext = rep.alltext.substring(0, startOldChar) + rep.alltext = rep.alltext.substring(0, startOldChar) +
newText + rep.alltext.substring(endOldChar, rep.alltext.length); newText + rep.alltext.substring(endOldChar, rep.alltext.length);
@ -1852,7 +1851,7 @@ function Ace2Inner() {
selEndHintChar = rep.lines.offsetOfIndex(hints.selEnd[0]) + hints.selEnd[1] - oldRegionStart; selEndHintChar = rep.lines.offsetOfIndex(hints.selEnd[0]) + hints.selEnd[1] - oldRegionStart;
} }
const newText = _.map(newLineEntries, (e) => `${e.text}\n`).join(''); const newText = newLineEntries.map((e) => `${e.text}\n`).join('');
const oldText = rep.alltext.substring(startOldChar, endOldChar); const oldText = rep.alltext.substring(startOldChar, endOldChar);
const oldAttribs = rep.alines.slice(startLine, startLine + deleteCount).join(''); const oldAttribs = rep.alines.slice(startLine, startLine + deleteCount).join('');
const newAttribs = `${lineAttribs.join('|1+1')}|1+1`; // not valid in a changeset const newAttribs = `${lineAttribs.join('|1+1')}|1+1`; // not valid in a changeset
@ -2210,10 +2209,10 @@ function Ace2Inner() {
$formattingButton.toggleClass(SELECT_BUTTON_CLASS, hasStyleOnRepSelection); $formattingButton.toggleClass(SELECT_BUTTON_CLASS, hasStyleOnRepSelection);
}; };
const attribIsFormattingStyle = (attributeName) => _.contains(FORMATTING_STYLES, attributeName); const attribIsFormattingStyle = (attribName) => FORMATTING_STYLES.indexOf(attribName) !== -1;
const selectFormattingButtonIfLineHasStyleApplied = (rep) => { const selectFormattingButtonIfLineHasStyleApplied = (rep) => {
_.each(FORMATTING_STYLES, (style) => { FORMATTING_STYLES.forEach((style) => {
const hasStyleOnRepSelection = documentAttributeManager. const hasStyleOnRepSelection = documentAttributeManager.
hasAttributeOnSelectionOrCaretPosition(style); hasAttributeOnSelectionOrCaretPosition(style);
updateStyleButtonState(style, hasStyleOnRepSelection); updateStyleButtonState(style, hasStyleOnRepSelection);
@ -2236,7 +2235,7 @@ function Ace2Inner() {
ul: 1, ul: 1,
}; };
_.each(hooks.callAll('aceRegisterBlockElements'), (element) => { hooks.callAll('aceRegisterBlockElements').forEach((element) => {
_blockElems[element] = 1; _blockElems[element] = 1;
}); });
@ -2311,7 +2310,7 @@ function Ace2Inner() {
const rangeForLine = (i) => { const rangeForLine = (i) => {
// returns index of cleanRange containing i, or -1 if none // returns index of cleanRange containing i, or -1 if none
let answer = -1; let answer = -1;
_.each(cleanRanges, (r, idx) => { cleanRanges.forEach((r, idx) => {
if (i >= r[1]) return false; // keep looking if (i >= r[1]) return false; // keep looking
if (i < r[0]) return true; // not found, stop looking if (i < r[0]) return true; // not found, stop looking
answer = idx; answer = idx;
@ -2635,7 +2634,7 @@ function Ace2Inner() {
} }
} }
_.each(mods, (mod) => { mods.forEach((mod) => {
setLineListType(mod[0], mod[1]); setLineListType(mod[0], mod[1]);
}); });
return true; return true;
@ -2809,7 +2808,7 @@ function Ace2Inner() {
// if any hook returned true, set specialHandled with true // if any hook returned true, set specialHandled with true
if (specialHandledInHook) { if (specialHandledInHook) {
specialHandled = _.contains(specialHandledInHook, true); specialHandled = specialHandledInHook.indexOf(true) !== -1;
} }
const padShortcutEnabled = parent.parent.clientVars.padShortcutEnabled; const padShortcutEnabled = parent.parent.clientVars.padShortcutEnabled;
@ -3562,11 +3561,7 @@ function Ace2Inner() {
const _teardownActions = []; const _teardownActions = [];
const teardown = () => { const teardown = () => _teardownActions.forEach((a) => a());
_.each(_teardownActions, (a) => {
a();
});
};
let inInternationalComposition = false; let inInternationalComposition = false;
const handleCompositionEvent = (evt) => { const handleCompositionEvent = (evt) => {
@ -3814,7 +3809,7 @@ function Ace2Inner() {
} }
} }
_.each(mods, (mod) => { mods.forEach((mod) => {
setLineListType(mod[0], mod[1]); setLineListType(mod[0], mod[1]);
}); });
}; };