aboutsummaryrefslogtreecommitdiff
path: root/src/components/GoatCounter.jsx
diff options
context:
space:
mode:
authorGalen Guyer <galen@galenguyer.com>2022-04-13 19:10:44 -0400
committerGalen Guyer <galen@galenguyer.com>2022-04-13 19:44:24 -0400
commit264e571b0ca34d24f4997c5864a43d4f475e14dc (patch)
tree3ddfb30dbd97dc5c5c3da91a8e1cba4916348190 /src/components/GoatCounter.jsx
parent290e1694efacc8bfea62b78538cb9d40003f62f6 (diff)
full version 2 re-write
Diffstat (limited to 'src/components/GoatCounter.jsx')
-rw-r--r--src/components/GoatCounter.jsx26
1 files changed, 26 insertions, 0 deletions
diff --git a/src/components/GoatCounter.jsx b/src/components/GoatCounter.jsx
new file mode 100644
index 0000000..07a768a
--- /dev/null
+++ b/src/components/GoatCounter.jsx
@@ -0,0 +1,26 @@
+import React from "react";
+
+class GoatCounter extends React.Component {
+ componentDidMount() {
+ window.counter = "https://rcd.goatcounter.com/count";
+ const script = window.document.createElement("script");
+ script.async = 1;
+ script.src = "https://gc.zgo.at/count.js";
+ script.id = "goatcounter";
+ script.setAttribute("data-goatcounter", "https://rcd.goatcounter.com/count");
+ (window.document.head || window.document.body).appendChild(script);
+ }
+
+ componentWillUnmount() {
+ const script = window.document.getElementById("goatcounter");
+ if (script) {
+ script.parentNode.removeChild(script);
+ }
+ }
+
+ render() {
+ return null;
+ }
+}
+
+export default GoatCounter;