Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dom_utils.js « utils « code_navigation « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 90af31b715ca873c9cdb2b9d56567f1aa4fc175a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
const TEXT_NODE = 3;

const isTextNode = ({ nodeType }) => nodeType === TEXT_NODE;

const isBlank = (str) => !str || /^\s*$/.test(str);

const isMatch = (s1, s2) => !isBlank(s1) && s1.trim() === s2.trim();

const createSpan = (content) => {
  const span = document.createElement('span');
  span.innerText = content;
  return span;
};

const wrapSpacesWithSpans = (text) => text.replace(/ /g, createSpan(' ').outerHTML);

const wrapTextWithSpan = (el, text) => {
  if (isTextNode(el) && isMatch(el.textContent, text)) {
    const newEl = createSpan(text.trim());
    el.replaceWith(newEl);
  }
};

const wrapNodes = (text) => {
  const wrapper = createSpan();
  // eslint-disable-next-line no-unsanitized/property
  wrapper.innerHTML = wrapSpacesWithSpans(text);
  wrapper.childNodes.forEach((el) => wrapTextWithSpan(el, text));
  return wrapper.childNodes;
};

export { wrapNodes, isTextNode };