forked from benvinegar/counterscale
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathroot.tsx
123 lines (110 loc) · 3.8 KB
/
root.tsx
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
import styles from "./globals.css?url";
import {
json,
LoaderFunctionArgs,
type LinksFunction,
} from "@remix-run/cloudflare";
import {
Links,
Meta,
Outlet,
Scripts,
ScrollRestoration,
useLoaderData,
} from "@remix-run/react";
import { useEffect, useRef, useState } from "react";
export const links: LinksFunction = () => [{ rel: "stylesheet", href: styles }];
export const loader = ({ context, request }: LoaderFunctionArgs) => {
const url = new URL(request.url);
const theme = url.searchParams.get("theme");
return json({
version: context.cloudflare?.env?.CF_PAGES_COMMIT_SHA,
origin: url.origin,
url: request.url,
theme: theme,
});
};
export const Layout = ({ children = [] }: { children: React.ReactNode }) => {
const [theme, setTheme] = useState("false");
const data = useLoaderData<typeof loader>() ?? {
version: "unknown",
origin: "counterscale.dev",
url: "https://counterscale.dev/",
theme: "false",
};
const bodyRef = useRef<HTMLBodyElement>(null);
useEffect(() => {
const getTheme = data?.theme;
if (getTheme) {
setTheme(getTheme);
}
if (theme === "true") {
bodyRef.current?.classList.add("dark");
} else {
bodyRef.current?.classList.remove("dark");
}
}, [theme]);
return (
<html lang="en">
<head>
<meta charSet="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1"
/>
<link rel="icon" type="image/x-icon" href="/favicon.png" />
<meta property="og:url" content={data.url} />
<meta property="og:type" content="website" />
<meta property="og:title" content="Counterscale" />
<meta
property="og:description"
content="Scalable web analytics you run yourself on Cloudflare"
/>
<meta
property="og:image"
content={data.origin + "/counterscale-og-large.webp"}
/>
<meta name="twitter:card" content="summary_large_image" />
<meta property="twitter:domain" content="counterscale.dev" />
<meta property="twitter:url" content={data.url} />
<meta name="twitter:title" content="Counterscale" />
<meta
name="twitter:description"
content="Scalable web analytics you run yourself on Cloudflare"
/>
<meta
name="twitter:image"
content={data.origin + "/counterscale-og-large.webp"}
/>
<Meta />
<Links />
</head>
<body ref={bodyRef}>
<div className="p-4 mx-auto">{children}</div>
<ScrollRestoration />
<Scripts />
<script
dangerouslySetInnerHTML={{
__html: "window.counterscale = {'q': [['set', 'siteId', 'counterscale-dev'], ['trackPageview']] };",
}}
></script>
<script id="counterscale-script" src="/tracker.js"></script>
</body>
</html>
);
};
export default function App() {
// const data = useLoaderData<typeof loader>();
return (
<div className="py-4 lg:p-4">
<header>
<h1 className="dark:text-white text-2xl md:text-3xl font-bold">
Analytics
</h1>
</header>
<main role="main" className="w-full">
<Outlet />
</main>
</div>
);
}