-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgatsby-ssr.js
125 lines (115 loc) · 3.38 KB
/
gatsby-ssr.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
import React from "react";
import { withPrefix } from "gatsby";
function inlinedScript(document, M, Waves) {
(() => {
const _wr = function(type) {
const orig = history[type];
return function() {
const rv = orig.apply(this, arguments);
const e = new Event(type);
e.arguments = arguments;
window.dispatchEvent(e);
return rv;
};
};
history.pushState = _wr("pushState");
history.replaceState = _wr("replaceState");
})();
const gatsbyIsLoaded = function gatsbyIsLoaded() {
if (!document.getElementById("___gatsby").childNodes.length) return;
if (!document.querySelector("#searchIcon"))
return new MutationObserver(gatsbyIsLoaded).observe(
document.getElementById("___gatsby").firstChild,
{ childList: true }
);
const elems = document.querySelectorAll(".sidenav");
const instances = M.Sidenav.init(elems);
const elems1 = document.querySelectorAll(".collapsible");
const instances1 = M.Collapsible.init(elems1);
document.querySelector("#searchIcon").addEventListener("click", function() {
document.querySelector("#search").focus();
});
const sitePath = window.location.pathname
.replace("${prefix}", "")
.replace(/\/*$/, "/");
Array.apply(null, { length: sitePath.match(/\//g).length })
.map(
(_, i) =>
"navitem-" +
(sitePath
.split("/")
.slice(0, i + 1)
.join("_") || "_")
)
.forEach(item => {
const divToUpdate = document.querySelector("#" + item + " + .collapsible-body") || {
style: {},
parentNode: {className: ''}
};
divToUpdate.style.display = "block";
divToUpdate.parentNode.className += ' active';
});
Waves.displayEffect();
};
document.addEventListener("DOMContentLoaded", gatsbyIsLoaded);
window.addEventListener(
"pushState",
() =>
Array.from(document.querySelectorAll(".sidenav-overlay")).map(e =>
e.remove()
) |
Array.from(document.querySelectorAll(".drag-target")).map(e =>
e.remove()
) |
setTimeout(gatsbyIsLoaded, 200)
);
window.addEventListener(
"replaceState",
() =>
Array.from(document.querySelectorAll(".sidenav-overlay")).map(e =>
e.remove()
) |
Array.from(document.querySelectorAll(".drag-target")).map(e =>
e.remove()
) |
setTimeout(gatsbyIsLoaded, 200)
);
window.addEventListener(
"popState",
() =>
Array.from(document.querySelectorAll(".sidenav-overlay")).map(e =>
e.remove()
) |
Array.from(document.querySelectorAll(".drag-target")).map(e =>
e.remove()
) |
setTimeout(gatsbyIsLoaded, 200)
);
new MutationObserver(gatsbyIsLoaded).observe(
document.getElementById("___gatsby"),
{ childList: true }
);
}
export const onPreRenderHTML = ({
getPostBodyComponents,
replacePostBodyComponents
}) => {
const prefix = withPrefix("")
.split("")
.slice(0, -1)
.join("");
replacePostBodyComponents(
getPostBodyComponents().concat(
<script
key="inlinedScript"
defer={true}
dangerouslySetInnerHTML={{
__html: inlinedScript
.toString()
.match(/function[^{]+\{([\s\S]*)\}$/)[1]
.replace(/"\${prefix}"/, `'${prefix}'`)
}}
/>
)
);
};