forked from not-implemented/hocr-proofreader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
hocr-proofreader.js
443 lines (364 loc) · 15.8 KB
/
hocr-proofreader.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
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
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
'use strict';
var Util = {
onReady: function (callback) {
if (document.readyState != 'loading') callback();
else document.addEventListener('DOMContentLoaded', callback);
},
get: function (url, callback) {
var request = new XMLHttpRequest();
request.open('GET', url);
request.onload = function () {
if (request.status >= 200 && request.status < 400) {
callback(null, request.responseText);
} else {
callback(new Error('Error loading url "' + url + '": HTTP error: ' + request.status + ' ' + request.statusText));
}
};
request.onerror = function () {
callback(new Error('Error loading url "' + url + '": HTTP connection error'));
};
request.send();
},
handleError: function (err) {
alert(err.message); // TODO
},
createElem: function (name, attributes) {
var node = document.createElement(name);
for (var name in attributes) {
node.setAttribute(name, attributes[name]);
}
return node;
},
createSvgElem: function (name, attributes) {
var node = document.createElementNS('http://www.w3.org/2000/svg', name);
for (var name in attributes) {
node.setAttribute(name, attributes[name]);
}
return node;
},
removeChildren: function (node) {
while (node.hasChildNodes()) {
node.removeChild(node.lastChild);
}
}
};
function HocrProofreader(config) {
this.config = config;
this.layoutSvg = Util.createSvgElem('svg', {'class': 'layout'});
this.layoutBackground = Util.createSvgElem('rect', {'class': 'background', 'x': 0, 'y': 0, 'width': '100%', 'height': '100%', 'style': 'fill: none'});
this.layoutSvg.appendChild(this.layoutBackground);
this.layoutImage = Util.createSvgElem('image', {'x': 0, 'y': 0, 'width': '100%', 'height': '100%'});
this.layoutSvg.appendChild(this.layoutImage);
this.layoutWords = Util.createSvgElem('g', {'class': 'words'});
this.layoutSvg.appendChild(this.layoutWords);
this.layoutRects = Util.createSvgElem('g', {'class': 'rects'});
this.layoutSvg.appendChild(this.layoutRects);
this.layoutContainer = document.getElementById(config.layoutContainer);
this.layoutContainer.appendChild(this.layoutSvg);
this.layoutContainer.style.overflow = 'scroll';
this.editorIframe = Util.createElem('iframe', {'class': 'editor', 'frameborder': 0});
var editorContainer = document.getElementById(config.editorContainer);
editorContainer.appendChild(this.editorIframe);
var self = this;
self.hoveredNode = null;
self.mousePosition = null;
this.layoutSvg.addEventListener('mousemove', function (event) {
self.mousePosition = {container: 'layout', x: event.clientX, y: event.clientY};
self.onHover(event.target);
});
this.layoutSvg.addEventListener('mouseleave', function (event) {
self.mousePosition = null;
self.onHover(null);
});
this.layoutContainer.addEventListener('scroll', function (event) {
if (!self.mousePosition || self.mousePosition.container !== 'layout') return;
self.onHover(document.elementFromPoint(self.mousePosition.x, self.mousePosition.y));
});
// init some defaults:
this.currentPage = null;
this.toggleLayoutImage();
this.setZoom('page-width');
}
HocrProofreader.prototype.setHocr = function (hocr, baseUrl) {
this.hocrBaseUrl = baseUrl;
var hocrDoc = this.editorIframe.contentDocument;
// TODO: use baseUrl for images/components in hOCR - use <base>?
hocrDoc.open();
hocrDoc.write(hocr);
hocrDoc.close();
var self = this;
var hocrRoot = hocrDoc.documentElement;
hocrRoot.addEventListener('mousemove', function (event) {
self.mousePosition = {container: 'editor', x: event.clientX, y: event.clientY};
self.onHover(event.target, true);
});
hocrRoot.addEventListener('mouseleave', function (event) {
self.mousePosition = null;
self.onHover(null, true);
});
hocrDoc.addEventListener('scroll', function (event) {
if (!self.mousePosition || self.mousePosition.container !== 'editor') return;
self.onHover(hocrDoc.elementFromPoint(self.mousePosition.x, self.mousePosition.y), true);
});
this.editorStylesheet = Util.createElem('link', {'type': 'text/css', 'rel': 'stylesheet', 'href': 'editor.css'});
hocrDoc.head.appendChild(this.editorStylesheet);
hocrDoc.body.contentEditable = true;
this.setPage('first');
};
HocrProofreader.prototype.getHocr = function () {
var hocrDoc = this.editorIframe.contentDocument;
hocrDoc.head.removeChild(this.editorStylesheet);
hocrDoc.body.contentEditable = 'inherit'; // this removes the attribute from DOM
this.onHover(null); // ensure there are no "hover" classes left
var serializer = new XMLSerializer();
var hocr = serializer.serializeToString(hocrDoc);
hocrDoc.head.appendChild(this.editorStylesheet);
hocrDoc.body.contentEditable = true;
return hocr;
};
HocrProofreader.prototype.setZoom = function (zoom) {
if (zoom) this.currentZoom = zoom;
if (this.currentZoom === 'page-full') {
this.layoutSvg.style.width = null;
this.layoutSvg.style.height = null;
this.layoutSvg.style.maxWidth = '100%';
this.layoutSvg.style.maxHeight = '100%';
} else if (this.currentZoom === 'page-width') {
this.layoutSvg.style.width = null;
this.layoutSvg.style.height = null;
this.layoutSvg.style.maxWidth = '100%';
this.layoutSvg.style.maxHeight = null;
} else if (this.currentZoom === 'original') {
if (this.currentPage) {
var options = this.getNodeOptions(this.currentPage);
this.layoutSvg.style.width = '' + (options.bbox[2] - options.bbox[0]) + 'px';
this.layoutSvg.style.height = '' + (options.bbox[3] - options.bbox[1]) + 'px';
} else {
this.layoutSvg.style.width = null;
this.layoutSvg.style.height = null;
}
this.layoutSvg.style.maxWidth = null;
this.layoutSvg.style.maxHeight = null;
}
};
HocrProofreader.prototype.toggleLayoutImage = function () {
if (!this.layoutWords.style.display || this.layoutWords.style.display === 'block') {
this.layoutWords.style.display = 'none';
this.layoutImage.style.display = 'block';
} else {
this.layoutWords.style.display = 'block';
this.layoutImage.style.display = 'none';
}
};
HocrProofreader.prototype.setPage = function (page) {
var pageNode, backwards = false, skipCurrent = false;
var hocrDoc = this.editorIframe.contentDocument;
if (page === 'first') {
pageNode = hocrDoc.body.firstElementChild;
} else if (page === 'last') {
pageNode = hocrDoc.body.lastElementChild;
backwards = true;
} else if (page === 'next') {
pageNode = this.currentPage || hocrDoc.body.firstElementChild;
skipCurrent = true;
} else if (page === 'previous') {
pageNode = this.currentPage || hocrDoc.body.lastElementChild;
backwards = true;
skipCurrent = true;
}
while (pageNode && (skipCurrent || !pageNode.classList.contains('ocr_page'))) {
pageNode = backwards ? pageNode.previousElementSibling : pageNode.nextElementSibling;
skipCurrent = false;
}
this.renderPage(pageNode || null);
};
HocrProofreader.prototype.renderPage = function (pageNode) {
this.layoutContainer.scrollTop = 0;
this.layoutContainer.scrollLeft = 0;
var scrollToBottom = false, tmpNode = this.currentPage;
while (tmpNode) {
tmpNode = tmpNode.previousElementSibling;
if (tmpNode === pageNode) {
scrollToBottom = true;
break;
}
}
function removeLinkedNodes(node) {
if (node.linkedNode) node.linkedNode = null;
var childNode = node.firstElementChild;
while (childNode) {
removeLinkedNodes(childNode);
childNode = childNode.nextElementSibling;
}
}
if (this.currentPage) removeLinkedNodes(this.currentPage);
Util.removeChildren(this.layoutWords);
Util.removeChildren(this.layoutRects);
this.currentPage = pageNode;
this.setZoom();
this.layoutImage.removeAttribute('transform');
if (!this.currentPage) {
// TODO: hide completely? reset image/font/viewBox/...?
return;
}
var pageOptions = this.getNodeOptions(this.currentPage);
this.layoutSvg.setAttribute('viewBox', pageOptions.bbox.join(' '));
this.layoutWords.style.fontFamily = 'Liberation Serif, serif'; // TODO: use font from hOCR (per page)
this.layoutImage.setAttributeNS('http://www.w3.org/1999/xlink', 'href', this.hocrBaseUrl + pageOptions.image);
if (pageOptions.textangle) {
// textangle is counter-clockwise, so we have to rotate the image clockwise - and transform-rotate() is clockwise:
this.layoutImage.setAttribute('transform', 'rotate(' + pageOptions.textangle + ' ' +
((pageOptions.bbox[2] - pageOptions.bbox[0]) / 2) + ' ' +
((pageOptions.bbox[3] - pageOptions.bbox[1]) / 2) + ')');
}
this.renderNodesRecursive(this.currentPage, pageOptions);
if (scrollToBottom) {
this.layoutContainer.scrollTop = this.layoutContainer.scrollHeight - this.layoutContainer.clientHeight;
}
};
HocrProofreader.prototype.renderNodesRecursive = function (node, options, parentRectsNode) {
if (!parentRectsNode) parentRectsNode = this.layoutRects;
var className = null;
if (node.classList.contains('ocr_carea')) {
className = 'ocr_carea';
} else if (node.classList.contains('ocr_par')) {
className = 'ocr_par';
} else if (node.classList.contains('ocr_line')) {
className = 'ocr_line';
} else if (node.classList.contains('ocrx_word')) {
className = 'ocrx_word';
}
if (className) {
if (className !== 'ocrx_word') {
var groupNode = Util.createSvgElem('g', {'class': className});
parentRectsNode.appendChild(groupNode);
parentRectsNode = groupNode;
}
options = this.inheritOptions(this.getNodeOptions(node), options);
if (options.bbox) {
if (className === 'ocrx_word' && options.baselineBbox) {
var word = node.textContent;
// TODO: calculate font-size and y based on bbox, not baseline (font-metrics needed):
var textNode = Util.createSvgElem('text', {
'x': options.bbox[0],
'y': parseFloat(options.baselineBbox[3]) + parseFloat(options.baseline[1]),
'font-size': 12, // font size is set static for now
// 'font-size': options.x_fsize * options.scan_res[1] / 72, // 1 pt = 1/72 inch
'textLength': options.bbox[2] - options.bbox[0],
'lengthAdjust': 'spacingAndGlyphs'
});
textNode.textContent = word;
this.layoutWords.appendChild(textNode);
}
var rectNode = Util.createSvgElem('rect', {
'x': options.bbox[0],
'y': options.bbox[1],
'width': options.bbox[2] - options.bbox[0],
'height': options.bbox[3] - options.bbox[1],
'class': className
});
parentRectsNode.appendChild(rectNode);
// cross-link both nodes:
rectNode.linkedNode = node;
node.linkedNode = rectNode;
}
}
var childNode = node.firstElementChild;
while (childNode) {
this.renderNodesRecursive(childNode, options, parentRectsNode);
childNode = childNode.nextElementSibling;
}
};
HocrProofreader.prototype.getNodeOptions = function (node) {
var asArray = ['bbox', 'baseline', 'scan_res'];
var optionsStr = node.title ? node.title : '';
var match, regex = /(?:^|;)\s*(\w+)\s+(?:([^;"']+?)|"((?:\\"|[^"])+?)"|'((?:\\'|[^'])+?)')\s*(?=;|$)/g;
var options = {};
while (match = regex.exec(optionsStr)) {
var name = match[1];
var value = match[4] || match[3] || match[2];
if (asArray.indexOf(name) !== -1) {
value = value.split(/\s+/);
}
options[name] = value;
}
return options;
};
HocrProofreader.prototype.inheritOptions = function (options, parentOptions) {
var inheritableOptions = ['baseline', 'baselineBbox', 'x_fsize', 'scan_res'];
// baseline is relative to the bbox of the node where the baseline is defined, so we have to remember this bbox:
if ('baseline' in options && 'bbox' in options) {
options.baselineBbox = options.bbox;
}
if (parentOptions) {
for (var name in parentOptions) {
if (inheritableOptions.indexOf(name) === -1) continue;
if (name in options) continue;
options[name] = parentOptions[name];
}
}
return options;
};
HocrProofreader.prototype.onHover = function (target, isEditorContainer) {
if (target === this.hoveredNode) return;
if (this.hoveredNode) {
this.hoverTreeNodes(this.hoveredNode, false);
this.hoverTreeNodes(this.hoveredNode.linkedNode, false);
this.hoveredNode = null;
}
if (isEditorContainer) {
// check for page change:
var pageNode = target;
while (pageNode && (!pageNode.classList.contains('ocr_page'))) {
pageNode = pageNode.parentElement;
}
if (pageNode && pageNode !== this.currentPage) {
this.renderPage(pageNode);
}
}
var linkedNode = target && target.linkedNode;
if (linkedNode) {
this.hoverTreeNodes(target, true);
this.hoverTreeNodes(linkedNode, true);
this.hoveredNode = target;
var linkedContainer = isEditorContainer ? this.layoutContainer : this.editorIframe.contentDocument.documentElement;
this.scrollIntoViewIfNeeded(linkedNode, linkedContainer);
}
};
HocrProofreader.prototype.hoverTreeNodes = function (node, isActive) {
while (node) {
if (node.classList.contains('ocr_page') || node.classList.contains('rects')) break;
if (isActive) {
node.classList.add('hover');
} else {
node.classList.remove('hover');
}
node = node.parentElement;
}
};
HocrProofreader.prototype.scrollIntoViewIfNeeded = function (node, scrollParentNode) {
var rect = node.getBoundingClientRect();
// do not substract the bounding-rect of the scrollParent if it is the documentElement (e.g. the iframe),
// otherwise scroll-position is added twice - set to 0:
var parentRect = scrollParentNode.parentElement ? scrollParentNode.getBoundingClientRect() : {left: 0, top: 0};
var nodeRect = {
left: rect.left - parentRect.left + scrollParentNode.scrollLeft,
top: rect.top - parentRect.top + scrollParentNode.scrollTop,
right: rect.right - parentRect.left + scrollParentNode.scrollLeft,
bottom: rect.bottom - parentRect.top + scrollParentNode.scrollTop
};
if (nodeRect.bottom - nodeRect.top <= scrollParentNode.clientHeight) { // ignore nodes higher than scroll area
if (nodeRect.bottom > scrollParentNode.scrollTop + scrollParentNode.clientHeight) {
node.scrollIntoView({behavior: 'smooth', block: 'end'});
} else if (nodeRect.top < scrollParentNode.scrollTop) {
node.scrollIntoView({behavior: 'smooth', block: 'start'});
}
}
if (nodeRect.right - nodeRect.left <= scrollParentNode.clientWidth) { // ignore nodes wider than scroll area
if (nodeRect.right > scrollParentNode.scrollLeft + scrollParentNode.clientWidth) {
node.scrollIntoView({behavior: 'smooth', block: 'end'});
} else if (nodeRect.left < scrollParentNode.scrollLeft) {
node.scrollIntoView({behavior: 'smooth', block: 'end'});
}
}
};