Initial commit

This commit is contained in:
2026-03-25 21:47:57 +01:00
commit 477741b545
44 changed files with 12611 additions and 0 deletions

23
app/app.css Normal file
View File

@@ -0,0 +1,23 @@
@import "tailwindcss";
@import "react-toastify/dist/ReactToastify.min.css";
table {
@apply w-full text-left;
}
table thead {
@apply bg-slate-100;
}
table tbody {
@apply bg-white;
}
table tbody tr {
@apply border-b border-slate-200;
}
table thead th, table tbody td {
@apply px-4 py-2;
}

View File

@@ -0,0 +1,7 @@
export function ErrorView() {
return (
<div>
<p>Ups, an unexpected error occurred.</p>
</div>
);
}

View File

@@ -0,0 +1,13 @@
export function Footer() {
return (
<footer className="max-w-6xl mx-auto px-4 py-12 border-t border-slate-200 mt-12">
<div className="text-center">
<p className="text-sm text-slate-500">
Copyright &copy; {new Date().getFullYear()} Brainster Next College.
All rights reserved.<br />
Icons by <a href="https://icons8.com/" target="_blank" rel="noopener noreferrer">Icons8</a>
</p>
</div>
</footer>
);
}

View File

@@ -0,0 +1,33 @@
import { Link } from "react-router";
export function Header() {
return (
<header className="bg-white border-b border-slate-200 sticky top-0 z-10">
<div className="max-w-6xl mx-auto px-4 py-3 h-auto min-h-16 flex items-center justify-between">
<div className="flex items-center space-x-3">
<div className="bg-blue-600 p-2 rounded-lg shrink-0">
<img
src="https://img.icons8.com/ios-filled/50/ffffff/flash-on.png"
className="w-5 h-5 object-contain"
alt="logo"
/>
</div>
<div>
<h1 className="font-bold text-lg leading-tight">
Distributed Systems and Blockchain
</h1>
<p className="text-xs text-slate-500">Brainster Next College</p>
</div>
</div>
<div className="flex items-center space-x-4">
<p className="text-sm text-slate-500 hidden md:block">Chain: Next Testnet</p>
<Link to="/status" className="bg-blue-600 hover:bg-blue-700 text-white px-4 py-2 rounded-xl text-sm font-semibold transition-all shadow-sm">
Connect Wallet
</Link>
</div>
</div>
</header>
);
}

View File

@@ -0,0 +1,39 @@
import { Link, useLocation } from "react-router";
const navItems = [
{ route: "/", label: "Explorer", icon: "home" },
{ route: "/status", label: "Status", icon: "notepad" }
];
export function Sidebar() {
const location = useLocation();
return (
<aside className="lg:col-span-3">
<nav className="space-y-1">
{navItems.map((item) => (
<Link
key={item.route}
to={item.route}
className={`w-full flex items-center space-x-3 px-4 py-3 rounded-xl text-sm font-medium transition-colors ${
location.pathname === item.route
? "bg-blue-50 text-blue-700 border border-blue-100"
: "text-slate-600 hover:bg-slate-100"
}`}
>
<img
src={
location.pathname === item.route
? `https://img.icons8.com/ios-filled/50/2563eb/${item.icon}.png`
: `https://img.icons8.com/ios/50/64748b/${item.icon}.png`
}
className="w-5 h-5 shrink-0 object-contain"
alt={item.label}
/>
<span>{item.label}</span>
</Link>
))}
</nav>
</aside>
);
}

View File

@@ -0,0 +1,7 @@
export function LoadingView() {
return (
<div className="flex justify-center items-center">
<p className="sr-only">Loading...</p>
</div>
);
}

25
app/config/wagmi.ts Normal file
View File

@@ -0,0 +1,25 @@
import { createConfig, http } from "wagmi";
import { metaMask } from "wagmi/connectors";
import { type Chain } from "viem";
export const nextChain = {
id: 1337,
name: "Next",
nativeCurrency: { name: "Ether", symbol: "ETH", decimals: 18 },
rpcUrls: {
default: { http: ["https://eth.code-camp.org"] }
},
blockExplorers: {
default: { name: "Otterscan", url: "https://etherscan.code-camp.org" }
},
testnet: true
} as const satisfies Chain;
export const config = createConfig({
chains: [nextChain],
transports: {
[nextChain.id]: http()
},
connectors: [metaMask()]
});

7
app/lib/fetch.ts Normal file
View File

@@ -0,0 +1,7 @@
export const fetchApi = async <T = any>(url: string): Promise<T> => {
const response = await fetch(url);
if (!response.ok) {
throw new Error(`HTTP error! status: ${response.status}`);
}
return response.json();
};

View File

@@ -0,0 +1,7 @@
export function HomePage() {
return (
<div>
<p>Hello Wagmi!</p>
</div>
);
}

View File

@@ -0,0 +1,79 @@
import { useEffect } from "react";
import { formatEther, type Address } from "viem";
import { useBalance, useBlockNumber, useConnect, useConnection, useConnectors, useDisconnect } from "wagmi";
function WalletDetails({ address }: { address: Address }) {
const { data: blockNumber } = useBlockNumber({ watch: true });
const { data: balance, isPending, error, refetch: refetchBalance } = useBalance({ address });
const { mutate: disconnect } = useDisconnect();
useEffect(() => {
refetchBalance();
}, [blockNumber]);
return (
<div className="flex flex-col gap-6">
<h1 className="text-lg font-bold">You are connected</h1>
<p className="break-all">Your address is: {address}</p>
{isPending && <p>Loading balance...</p>}
{error && <p>An error occurred.</p>}
{blockNumber && <p>Block number: {blockNumber.toLocaleString()}</p>}
{balance && <p>Balance: {formatEther(balance.value)} ETH</p>}
<div className="flex flex-row">
<button
className="bg-black text-white py-2 px-6 rounded-xl cursor-pointer"
onClick={() => disconnect()}
>
Disconnect
</button>
</div>
</div>
)
}
function ConnectWallet() {
const connectors = useConnectors();
const { mutate: connect } = useConnect();
return (
<div className="flex flex-col gap-6">
<h1 className="text-lg font-bold">Connect your wallet</h1>
<p>Choose an option from the list below:</p>
<div className="flex flex-row gap-6">
{connectors.map(connector => (
<button
key={connector.id}
onClick={() => connect({ connector })}
className="bg-black text-white px-6 py-2 rounded-lg cursor-pointer"
>
Connect {connector.name}
</button>
))}
</div>
</div>
)
}
export function StatusPage() {
const { address, isConnected } = useConnection();
return (
<div className="bg-white p-5 border border-slate-200 shadow-sm rounded-xl flex flex-col gap-6">
{isConnected && address ? (
<WalletDetails address={address} />
) : (
<ConnectWallet />
)}
</div>
);
}

103
app/root.tsx Normal file
View File

@@ -0,0 +1,103 @@
import {
isRouteErrorResponse,
Links,
Meta,
Outlet,
Scripts,
ScrollRestoration
} from "react-router";
import { ToastContainer } from "react-toastify";
import { WagmiProvider } from "wagmi";
import { config } from "./config/wagmi";
import { QueryClient, QueryClientProvider } from "@tanstack/react-query";
const queryClient = new QueryClient();
import type { Route } from "./+types/root";
import "./app.css";
import { Header } from "./components/layout/Header";
import { Footer } from "./components/layout/Footer";
import { Sidebar } from "./components/layout/Sidebar";
export const links: Route.LinksFunction = () => [
{ rel: "preconnect", href: "https://fonts.googleapis.com" },
{
rel: "preconnect",
href: "https://fonts.gstatic.com",
crossOrigin: "anonymous"
},
{
rel: "stylesheet",
href: "https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap"
}
];
export function Layout({ children }: { children: React.ReactNode }) {
return (
<html lang="en">
<head>
<meta charSet="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<Meta />
<Links />
</head>
<body className="bg-slate-50 text-slate-900 font-sans">
<div>
<Header />
<main className="max-w-6xl mx-auto px-4 py-8 min-h-[calc(100vh-15rem)]">
<div className="grid grid-cols-1 lg:grid-cols-12 gap-8">
<Sidebar />
<div className="lg:col-span-9 space-y-6">{children}</div>
</div>
</main>
<Footer />
</div>
<ToastContainer position="top-center" autoClose={5000} theme="colored" />
<ScrollRestoration />
<Scripts />
</body>
</html>
);
}
export default function App() {
return (
<WagmiProvider config={config}>
<QueryClientProvider client={queryClient}>
<Outlet />
</QueryClientProvider>
</WagmiProvider>
);
}
export function ErrorBoundary({ error }: Route.ErrorBoundaryProps) {
let message = "Oops!";
let details = "An unexpected error occurred.";
let stack: string | undefined;
if (isRouteErrorResponse(error)) {
message = error.status === 404 ? "404" : "Error";
details =
error.status === 404
? "The requested page could not be found."
: error.statusText || details;
} else if (import.meta.env.DEV && error && error instanceof Error) {
details = error.message;
stack = error.stack;
}
return (
<main className="pt-16 p-4 container mx-auto">
<h1>{message}</h1>
<p>{details}</p>
{stack && (
<pre className="w-full p-4 overflow-x-auto">
<code>{stack}</code>
</pre>
)}
</main>
);
}

6
app/routes.ts Normal file
View File

@@ -0,0 +1,6 @@
import { type RouteConfig, index, route } from "@react-router/dev/routes";
export default [
index("routes/home.tsx"),
route("status", "routes/status.tsx"),
] satisfies RouteConfig;

12
app/routes/home.tsx Normal file
View File

@@ -0,0 +1,12 @@
import { HomePage } from "../pages/home/HomePage";
export function meta() {
return [
{ title: "Wagmi Starter" },
{ name: "description", content: "Welcome to Wagmi!" },
];
}
export default function Home() {
return <HomePage />;
}

6
app/routes/status.tsx Normal file
View File

@@ -0,0 +1,6 @@
import { StatusPage } from "../pages/status/StatusPage";
export default function Status() {
return <StatusPage />;
}