-
Notifications
You must be signed in to change notification settings - Fork 6k
/
Copy pathinteractive.js
143 lines (143 loc) ยท 4.69 KB
/
interactive.js
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
var Highlighter = /** @class */ (function () {
function Highlighter() {
var _this = this;
this.onClick = function (e) {
var t = e.currentTarget.textContent;
if (!(t in _this.nodes)) {
console.log(e.currentTarget);
return;
}
if (_this.highlighted == t) {
_this.unhighlight();
}
else {
if (_this.highlighted != '') {
_this.unhighlight();
}
_this.highlightWord(t);
}
};
this.nodes = {};
this.highlighted = '';
this.addNodes(document.querySelectorAll('.highlight .n'));
this.addNodes(document.querySelectorAll('.highlight .nn'));
this.addNodes(document.querySelectorAll('.highlight .nc'));
this.addNodes(document.querySelectorAll('.highlight .nf'));
for (var k in this.nodes) {
for (var _i = 0, _a = this.nodes[k]; _i < _a.length; _i++) {
var n = _a[_i];
n.addEventListener('click', this.onClick);
}
}
}
Highlighter.prototype.unhighlight = function () {
for (var _i = 0, _a = this.nodes[this.highlighted]; _i < _a.length; _i++) {
var n = _a[_i];
n.classList.remove('clicked');
}
this.highlighted = '';
document.body.classList.remove('lights-off');
};
Highlighter.prototype.highlightWord = function (t) {
for (var _i = 0, _a = this.nodes[t]; _i < _a.length; _i++) {
var n = _a[_i];
n.classList.add('clicked');
}
document.body.classList.add('lights-off');
this.highlighted = t;
};
Highlighter.prototype.addNodes = function (nodes) {
for (var i = 0; i < nodes.length; ++i) {
var name_1 = nodes[i].textContent;
if (!(name_1 in this.nodes)) {
this.nodes[name_1] = [];
}
this.nodes[name_1].push(nodes[i]);
}
};
return Highlighter;
}());
var KatexHighlighter = /** @class */ (function () {
function KatexHighlighter() {
var _this = this;
this.onClick = function (e) {
e.preventDefault();
e.stopPropagation();
var t = KatexHighlighter.getName(e.currentTarget);
// console.log('clicked', t)
if (!(t in _this.nodes)) {
console.log(e.currentTarget);
return;
}
if (_this.highlighted == t) {
_this.unhighlight();
}
else {
if (_this.highlighted != '') {
_this.unhighlight();
}
_this.highlightWord(t);
}
};
this.nodes = {};
this.highlighted = '';
this.addNodes(document.querySelectorAll('.coloredeq'));
for (var k in this.nodes) {
for (var _i = 0, _a = this.nodes[k]; _i < _a.length; _i++) {
var n = _a[_i];
n.addEventListener('click', this.onClick);
}
}
}
KatexHighlighter.prototype.unhighlight = function () {
for (var _i = 0, _a = this.nodes[this.highlighted]; _i < _a.length; _i++) {
var n = _a[_i];
n.classList.remove('clicked');
}
this.highlighted = '';
document.body.classList.remove('lights-off');
};
KatexHighlighter.prototype.highlightWord = function (t) {
for (var _i = 0, _a = this.nodes[t]; _i < _a.length; _i++) {
var n = _a[_i];
n.classList.add('clicked');
}
document.body.classList.add('lights-off');
this.highlighted = t;
};
KatexHighlighter.getName = function (node) {
var name = '';
for (var i = 0; i < node.classList.length; ++i) {
var cn = node.classList[i];
if (cn.substr(0, 2) === 'eq') {
name = cn.substr(2);
}
}
return name;
};
KatexHighlighter.prototype.addNodes = function (nodes) {
for (var i = 0; i < nodes.length; ++i) {
var name_2 = KatexHighlighter.getName(nodes[i]);
console.log(nodes[i]);
if (!(name_2 in this.nodes)) {
this.nodes[name_2] = [];
}
this.nodes[name_2].push(nodes[i]);
}
};
return KatexHighlighter;
}());
function addListeners() {
var h = new Highlighter();
var k = new KatexHighlighter();
}
if (document.readyState == "complete") {
addListeners();
}
else {
document.onreadystatechange = function () {
if (document.readyState == "complete") {
addListeners();
}
};
}