61 lines
1.7 KiB
TypeScript
61 lines
1.7 KiB
TypeScript
import { StrictMode } from "react";
|
|
import { createRoot } from "react-dom/client";
|
|
import "./index.css";
|
|
import { connectWS } from "./ws.ts";
|
|
import { Toaster } from "react-hot-toast";
|
|
import { QueryClientProvider } from "@tanstack/react-query";
|
|
import Shell from "./Shell.tsx";
|
|
import { ReactQueryDevtools } from "@tanstack/react-query-devtools";
|
|
import { wsClient } from "./wsClient.ts";
|
|
import { Route, Switch } from "wouter";
|
|
import Endless from "./views/endless/Endless.tsx";
|
|
import { queryClient } from "./queryClient.ts";
|
|
import Home from "./views/home/Home.tsx";
|
|
|
|
connectWS();
|
|
|
|
const setup = async () => {
|
|
const token = localStorage.getItem("loginToken");
|
|
|
|
if (token) {
|
|
try {
|
|
await wsClient.dispatch("user.loginWithToken", {
|
|
token: JSON.parse(token),
|
|
});
|
|
} catch (e) {
|
|
console.error(e);
|
|
}
|
|
}
|
|
};
|
|
|
|
setup().then(() => {
|
|
createRoot(document.getElementById("root")!).render(
|
|
<StrictMode>
|
|
<QueryClientProvider client={queryClient}>
|
|
<Toaster position="top-right" reverseOrder={false} />
|
|
<Shell>
|
|
<Switch>
|
|
<Route path="/" component={Home} />
|
|
<Route path="/play" component={Endless} />
|
|
<Route
|
|
path="/history"
|
|
component={() => (
|
|
<h2 className="text-white/80 text-2xl">Comming Soon</h2>
|
|
)}
|
|
/>
|
|
<Route
|
|
path="/settings"
|
|
component={() => (
|
|
<h2 className="text-white/80 text-2xl">Comming Soon</h2>
|
|
)}
|
|
/>
|
|
</Switch>
|
|
{/* <App /> */}
|
|
</Shell>
|
|
{/* <App /> */}
|
|
<ReactQueryDevtools initialIsOpen={false} />
|
|
</QueryClientProvider>
|
|
</StrictMode>,
|
|
);
|
|
});
|