import './show-whitespace.css';
import React from 'dom-chef';
import select from 'select-dom';
import features from '../libs/features';
import onPrFileLoad from '../libs/on-pr-file-load';
import onNewComments from '../libs/on-new-comments';
import getTextNodes from '../libs/get-text-nodes';
function showWhiteSpacesOn(line: Element): void {
const textNodes = getTextNodes(line);
for (const textNode of textNodes) {
const textContent = textNode.textContent!;
if (textContent.length === 0 || !(textContent.includes(' ') || textContent.includes('\t'))) {
continue;
}
const fragment = document.createDocumentFragment();
let lastEncounteredCharType;
let charType: 'space' | 'tab' | 'other';
let node;
for (const char of textContent) {
if (char === ' ') {
charType = 'space';
} else if (char === '\t') {
charType = 'tab';
} else {
charType = 'other';
}
if (node && lastEncounteredCharType === charType) {
node.textContent += char;
if (charType === 'space') {
node.dataset.rghSpaces += '·';
} else if (charType === 'tab') {
node.dataset.rghTabs += '→';
}
} else {
if (node) {
fragment.append(node);
}
if (charType === 'space') {
node = {char};
} else if (charType === 'tab') {
node = {char};
} else {
node = <>{char}>;
}
}
lastEncounteredCharType = charType;
}
if (node) {
fragment.append(node);
}
textNode.replaceWith(fragment);
}
}
async function run(): Promise {
const tables = select.all([
'table.js-file-line-container:not(.rgh-showing-whitespace)', // Single blob file, and gist
'.file table.diff-table:not(.rgh-showing-whitespace)', // Split and unified diffs
'.file table.d-table:not(.rgh-showing-whitespace)' // "Suggested changes" in PRs
].join());
for (const table of tables) {
table.classList.add('rgh-showing-whitespace');
for (const [i, line] of select.all('.blob-code-inner', table).entries()) {
showWhiteSpacesOn(line);
if (i % 100 === 0) {
await new Promise(resolve => setTimeout(resolve)); // eslint-disable-line no-await-in-loop
}
}
}
}
function init(): void {
run();
onNewComments(run);
onPrFileLoad(run);
}
features.add({
id: __featureName__,
description: 'Shows whitespace characters.',
screenshot: 'https://user-images.githubusercontent.com/1402241/61187598-f9118380-a6a5-11e9-985a-990a7f798805.png',
include: [
features.hasCode
],
load: features.onAjaxedPages,
init
});