ttrpg-tools/src/App.tsx

38 lines
1.0 KiB
TypeScript
Raw Normal View History

2026-02-26 14:07:58 +08:00
import { Component, createSignal, onMount } from "solid-js";
import { useLocation } from "@solidjs/router";
2026-02-26 00:17:23 +08:00
2026-02-26 00:47:26 +08:00
// 导入组件以注册自定义元素
2026-02-26 14:07:58 +08:00
import "./components";
import { Article } from "./components";
2026-02-26 00:47:26 +08:00
2026-02-26 00:17:23 +08:00
const App: Component = () => {
const location = useLocation();
2026-02-26 14:07:58 +08:00
const [currentPath, setCurrentPath] = createSignal("");
2026-02-26 00:17:23 +08:00
2026-02-26 09:24:26 +08:00
onMount(() => {
2026-02-26 00:17:23 +08:00
// 根据路由加载对应的 markdown 文件
2026-02-26 14:07:58 +08:00
let path = decodeURIComponent(location.pathname);
if (!path) path = "/content/";
if (path.endsWith("/")) path += "index";
if (!path.endsWith(".md")) path += ".md";
2026-02-26 01:07:48 +08:00
setCurrentPath(path);
2026-02-26 00:17:23 +08:00
});
return (
<div class="min-h-screen bg-gray-50">
2026-02-26 10:26:04 +08:00
<header class="fixed top-0 left-0 right-0 bg-white shadow z-50">
2026-02-26 00:17:23 +08:00
<div class="max-w-4xl mx-auto px-4 py-4">
<h1 class="text-2xl font-bold text-gray-900">TTRPG Tools</h1>
</div>
</header>
2026-02-26 10:26:04 +08:00
<main class="max-w-4xl mx-auto px-4 py-8 pt-20">
2026-02-26 09:24:26 +08:00
<Article src={currentPath()} />
2026-02-26 00:17:23 +08:00
</main>
</div>
);
};
export default App;