forked from Mottie/GitHub-userscripts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgithub-code-folding.user.js
More file actions
264 lines (240 loc) · 6.93 KB
/
github-code-folding.user.js
File metadata and controls
264 lines (240 loc) · 6.93 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
// ==UserScript==
// @name GitHub Code Folding
// @version 1.0.18
// @description A userscript that adds code folding to GitHub files
// @license MIT
// @author Rob Garrison
// @namespace https://github.com/Mottie
// @include https://github.com/*
// @run-at document-idle
// @grant GM.addStyle
// @grant GM_addStyle
// @require https://greasemonkey.github.io/gm4-polyfill/gm4-polyfill.js?updated=20180103
// @require https://greasyfork.org/scripts/28721-mutations/code/mutations.js?version=666427
// @icon https://github.githubassets.com/pinned-octocat.svg
// @updateURL https://raw.githubusercontent.com/Mottie/Github-userscripts/master/github-code-folding.user.js
// @downloadURL https://raw.githubusercontent.com/Mottie/Github-userscripts/master/github-code-folding.user.js
// ==/UserScript==
/**
* This userscript has been heavily modified from the "github-code-folding"
* Chrome extension Copyright 2016 by Noam Lustiger; under an MIT license
* https://github.com/noam3127/github-code-folding
*/
(() => {
"use strict";
GM.addStyle(`
td.blob-code.blob-code-inner { position:relative; padding-left:10px; }
.collapser { position:absolute; left:2px; width:22px; opacity:.5;
transition:.15s; cursor:pointer; }
.collapser:after { content:"\u25bc"; }
.collapser:hover { opacity:1; }
.sideways { transform:rotate(-90deg); transform-origin:16% 49%; opacity:.8; }
.hidden-line { display:none; }
.ellipsis { padding:1px 2px; margin-left:2px; cursor:pointer;
background:rgba(255,235,59,.4); position:relative; z-index:1; }
.ellipsis:hover { background:rgba(255,235,59,.7); }
`);
const pairs = new Map(),
ellipsis = document.createElement("span"),
triangle = document.createElement("span");
let isMobile = false;
triangle.className = "collapser";
ellipsis.className = "pl-smi ellipsis";
ellipsis.innerHTML = "…";
function countInitialWhiteSpace(arr) {
const getWhiteSpaceIndex = i => {
if (
arr[i] !== " " && arr[i] !== "\t" &&
(!isMobile || arr[i] !== "\xa0")
) {
return i;
}
i++;
return getWhiteSpaceIndex(i);
};
return getWhiteSpaceIndex(0);
}
function getPreviousSpaces(map, lineNum) {
let prev = map.get(lineNum - 1);
return prev === -1 ?
getPreviousSpaces(map, lineNum - 1) : {
lineNum: lineNum - 1,
count: prev
};
}
function getLineNumber(el) {
let elm = el.closest(isMobile ? "div" : "td"),
index = elm ? elm.id : "";
if (index) {
return parseInt(index.slice(2), 10);
}
return "";
}
function getCodeLines() {
return $$(
isMobile ?
".blob-file-content .line" :
".file table.highlight .blob-code-inner"
);
}
function toggleCode(action, index, depth) {
let els, lineNums;
const codeLines = getCodeLines();
// depth is a string containing a specific depth number to toggle
if (depth) {
els = $$(`.collapser[data-depth="${depth}"]`);
lineNums = els.map(el => {
el.classList.toggle("sideways", action === "hide");
return getLineNumber(el);
});
} else {
lineNums = [index];
}
if (action === "hide") {
lineNums.forEach(start => {
let elm,
end = pairs.get(start - 1);
codeLines.slice(start, end).forEach(el => {
elm = isMobile ? el : el.closest("tr");
if (elm) {
elm.classList.add("hidden-line");
}
});
if (!$(".ellipsis", codeLines[start - 1])) {
elm = $(".collapser", codeLines[start - 1]);
elm.parentNode.insertBefore(
ellipsis.cloneNode(true),
elm.nextSibling
);
}
});
} else if (action === "show") {
lineNums.forEach(start => {
let end = pairs.get(start - 1);
codeLines.slice(start, end).forEach(el => {
let elm = isMobile ? el : el.closest("tr");
if (elm) {
elm.classList.remove("hidden-line");
remove(".ellipsis", elm);
}
elm = $(".sideways", elm);
if (elm) {
elm.classList.remove("sideways");
}
});
remove(".ellipsis", codeLines[start - 1]);
});
}
// shift ends up selecting text on the page, so clear it
if (lineNums.length > 1) {
removeSelection();
}
}
function addBindings() {
document.addEventListener("click", event => {
let index, elm, isCollapsed;
const el = event.target;
// click on collapser
if (el && el.classList.contains("collapser")) {
isCollapsed = el.classList.contains("sideways");
index = getLineNumber(el);
// Shift + click to toggle them all
if (index && event.getModifierState("Shift")) {
return toggleCode(
isCollapsed ? "show" : "hide",
index,
el.getAttribute("data-depth")
);
}
if (index) {
if (isCollapsed) {
el.classList.remove("sideways");
toggleCode("show", index);
} else {
el.classList.add("sideways");
toggleCode("hide", index);
}
}
return;
}
// click on ellipsis
if (el && el.classList.contains("ellipsis")) {
elm = $(".sideways", el.parentNode);
if (elm) {
elm.classList.remove("sideways");
}
index = getLineNumber(el);
if (index) {
toggleCode("show", index);
}
}
});
}
function addCodeFolding() {
if ($(".file table.highlight") || $("div.blob-file-content")) {
isMobile = !$(".file table.highlight");
// In case this script has already been run and modified the DOM on a
// previous page in github, make sure to reset it.
remove("span.collapser");
pairs.clear();
const codeLines = getCodeLines(),
spaceMap = new Map(),
stack = [];
codeLines.forEach((el, lineNum) => {
let prevSpaces,
line = el.textContent,
count = line.trim().length ?
countInitialWhiteSpace(line.split("")) :
-1;
spaceMap.set(lineNum, count);
function tryPair() {
let el,
top = stack[stack.length - 1];
if (count !== -1 && count <= spaceMap.get(top)) {
pairs.set(top, lineNum);
// prepend triangle
el = triangle.cloneNode();
el.setAttribute("data-depth", count + 1);
codeLines[top].appendChild(el, codeLines[top].childNodes[0]);
stack.pop();
return tryPair();
}
}
tryPair();
prevSpaces = getPreviousSpaces(spaceMap, lineNum);
if (count > prevSpaces.count) {
stack.push(prevSpaces.lineNum);
}
});
}
}
function $(selector, el) {
return (el || document).querySelector(selector);
}
function $$(selector, el) {
return Array.from((el || document).querySelectorAll(selector));
}
function remove(selector, el) {
let els = $$(selector, el),
index = els.length;
while (index--) {
els[index].parentNode.removeChild(els[index]);
}
}
function removeSelection() {
// remove text selection - https://stackoverflow.com/a/3171348/145346
const sel = window.getSelection ?
window.getSelection() :
document.selection;
if (sel) {
if (sel.removeAllRanges) {
sel.removeAllRanges();
} else if (sel.empty) {
sel.empty();
}
}
}
document.addEventListener("ghmo:container", addCodeFolding);
addCodeFolding();
addBindings();
})();