-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.js
57 lines (45 loc) · 1.67 KB
/
index.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
import byzhtml from './lib/byzhtml.js';
import { defineCustomElements } from './lib/util/defineCustomElements.js';
import { isWebkit } from './lib/util/isWebkit.js';
import { processAutoMelismas } from './lib/util/MelismaProcessor.js';
import { throttle } from 'throttle-debounce';
if (isWebkit()) {
console.log('byzhtml: webkit browser detected. Using webkit positioning.');
const fontFamilies = ['Neanes', 'NeanesRTL', 'NeanesStathisSeries'];
(async () => {
for (const fontFamily of fontFamilies) {
try {
const response = await fetch(
`https://cdn.jsdelivr.net/gh/danielgarthur/[email protected]/dist/${fontFamily.toLowerCase()}.metadata.json`,
);
const data = await response.json();
byzhtml.fontService.loadMap(fontFamily, data);
} catch (err) {
console.error(`could not load font metadata for ${fontFamily}: ${err}`);
}
}
})().then(() => {
byzhtml.neumeMappingService.glyphNameToCodepointMap.set(
'oligonKentimataBelow.alt01',
'\uF000',
);
byzhtml.neumeMappingService.glyphNameToCodepointMap.set(
'antikenoma.alt01',
'\uF002',
);
byzhtml.options.useWebkitPositioning = true;
defineCustomElements();
});
} else {
defineCustomElements();
}
window.addEventListener('load', (event) => {
setTimeout(processAutoMelismas, 0);
// TODO figure out how to determine whether custom elements
// have loaded
setTimeout(processAutoMelismas, 100);
setTimeout(processAutoMelismas, 1000);
window.addEventListener('resize', throttle(100, processAutoMelismas));
window.addEventListener('scroll', throttle(100, processAutoMelismas));
});
export { byzhtml as default };