mirror of
https://github.com/protomaps/PMTiles.git
synced 2026-02-04 10:51:07 +00:00
75 lines
1.7 KiB
TypeScript
75 lines
1.7 KiB
TypeScript
import { useState, useEffect } from "react";
|
|
import { styled, globalStyles } from "./stitches.config";
|
|
import { PMTiles } from "../../js";
|
|
import { GitHubLogoIcon } from "@radix-ui/react-icons";
|
|
|
|
import Start from "./Start";
|
|
import Loader from "./Loader";
|
|
|
|
const Header = styled("div", {
|
|
height: "$4",
|
|
display: "flex",
|
|
alignItems: "center",
|
|
padding: "0 $2 0 $2",
|
|
});
|
|
|
|
const Title = styled("span", {
|
|
fontWeight: 500,
|
|
cursor: "pointer",
|
|
});
|
|
|
|
const GithubA = styled("a", {
|
|
color: "white",
|
|
textDecoration: "none",
|
|
fontSize: "$1",
|
|
});
|
|
|
|
const GithubLink = styled("span", {
|
|
marginLeft: "auto",
|
|
});
|
|
|
|
const GIT_SHA = (import.meta.env.VITE_GIT_SHA || "").substr(0, 8);
|
|
|
|
function App() {
|
|
globalStyles();
|
|
|
|
let initialValue;
|
|
const loadUrl = new URLSearchParams(location.search).get("url");
|
|
if (loadUrl) {
|
|
initialValue = new PMTiles(loadUrl);
|
|
}
|
|
|
|
let [file, setFile] = useState<PMTiles | undefined>(initialValue);
|
|
|
|
useEffect(() => {
|
|
const url = new URL(window.location.href);
|
|
if (file && file.source.getKey().startsWith("http")) {
|
|
url.searchParams.set("url", file.source.getKey());
|
|
history.pushState(null, "", url.toString());
|
|
} else {
|
|
url.searchParams.delete("url");
|
|
history.pushState(null, "", url.toString());
|
|
}
|
|
}, [file]);
|
|
|
|
let clear = () => {
|
|
setFile(undefined);
|
|
};
|
|
|
|
return (
|
|
<div>
|
|
<Header>
|
|
<Title onClick={clear}>PMTiles Viewer</Title>
|
|
<GithubLink>
|
|
<GithubA href="https://github.com/protomaps/PMTiles" target="_blank">
|
|
<GitHubLogoIcon /> {GIT_SHA}
|
|
</GithubA>
|
|
</GithubLink>
|
|
</Header>
|
|
{file ? <Loader file={file} /> : <Start setFile={setFile} />}
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default App;
|