web3browser.io/src/components/Browser.tsx

235 lines
5.8 KiB
TypeScript
Raw Normal View History

2023-10-11 13:46:46 +00:00
import {
createContext,
createRef,
forwardRef,
2023-10-16 21:43:13 +00:00
useCallback,
2023-10-11 13:46:46 +00:00
useContext,
useEffect,
useRef,
2023-10-11 13:46:46 +00:00
useState,
} from "react";
import {
dnsClient,
ethClient,
handshakeClient,
ipfsClient,
networkRegistryClient,
peerDiscoveryClient,
swarmClient,
} from "@/clients.ts";
import * as kernel from "@lumeweb/libkernel/kernel";
import { kernelLoaded } from "@lumeweb/libkernel/kernel";
import Arrow from "@/components/Arrow.tsx";
import type React from "react";
import { Input } from "@/components/ui/input.tsx";
import { Button } from "@/components/ui/button.tsx";
2023-10-16 19:20:00 +00:00
import {
type AuthContextType,
type LumeStatusContextType,
useAuth,
useLumeStatus,
} from "@lumeweb/sdk";
2023-10-11 13:46:46 +00:00
let BOOT_FUNCTIONS: (() => Promise<any>)[] = [];
interface BrowserContextType {
url: string;
setUrl: React.Dispatch<React.SetStateAction<string>>;
}
const BrowserStateContext = createContext<BrowserContextType | undefined>(
undefined,
);
export function BrowserStateProvider({
children,
}: {
children: React.ReactElement;
}) {
const [url, setUrl] = useState("");
2023-10-11 13:46:46 +00:00
return (
<BrowserStateContext.Provider value={{ url, setUrl }}>
{children}
</BrowserStateContext.Provider>
);
}
export function useBrowserState() {
const context = useContext(BrowserStateContext);
if (!context) {
throw new Error(
"useBrowserState must be used within a BrowserStateProvider",
);
}
return context;
}
async function boot({
onInit,
onAuth,
onBoot,
}: {onInit: (inited: boolean) => Promise<void> | void, onAuth: (authed: boolean) => Promise<void> | void, onBoot: (booted: boolean) => Promise<void> | void}) {
2023-10-11 13:46:46 +00:00
const reg = await navigator.serviceWorker.register("/sw.js");
await reg.update();
await kernel.serviceWorkerReady();
await kernel.init().catch((err) => {
console.error("[Browser.tsx] Failed to init kernel", {error: err});
});
await onInit(true);
await kernelLoaded().catch((err) => {
console.error("[Browser.tsx] Failed to load kernel", {error: err});
});
await onAuth(true);
2023-10-12 17:20:46 +00:00
2023-10-11 13:46:46 +00:00
BOOT_FUNCTIONS.push(
async () =>
await swarmClient.addRelay(
"2d7ae1517caf4aae4de73c6d6f400765d2dd00b69d65277a29151437ef1c7d1d",
),
);
// IRC
BOOT_FUNCTIONS.push(
async () =>
await peerDiscoveryClient.register(
2023-10-13 09:37:44 +00:00
"zrjHTx8tSQFWnmZ9JzK7XmJirqJQi2WRBLYp3fASaL2AfBQ",
2023-10-11 13:46:46 +00:00
),
);
BOOT_FUNCTIONS.push(
async () => await networkRegistryClient.registerType("content"),
);
BOOT_FUNCTIONS.push(
async () => await networkRegistryClient.registerType("blockchain"),
);
BOOT_FUNCTIONS.push(async () => await handshakeClient.register());
BOOT_FUNCTIONS.push(async () => await ethClient.register());
BOOT_FUNCTIONS.push(async () => await ipfsClient.register());
const resolvers = [
2023-10-12 14:04:14 +00:00
"zrjCnUBqmBqXXcc2yPnq517sXQtNcfZ2BHgnVTcbhSYxko7", // CID
"zrjEYq154PS7boERAbRAKMyRGzAR6CTHVRG6mfi5FV4q9FA", // ENS
2023-10-11 13:46:46 +00:00
"zrjEH3iojPLr7986o7iCn9THBmJmHiuDWmS1G6oT8DnfuFM", // HNS
];
for (const resolver of resolvers) {
BOOT_FUNCTIONS.push(async () => dnsClient.registerResolver(resolver));
}
BOOT_FUNCTIONS.push(async () => onBoot(true));
2023-10-11 13:46:46 +00:00
await bootup();
await Promise.all([
ethClient.ready(),
handshakeClient.ready(),
ipfsClient.ready(),
]);
}
async function bootup() {
for (const entry of Object.entries(BOOT_FUNCTIONS)) {
2023-10-13 06:51:11 +00:00
console.log(entry[1].toString());
2023-10-11 13:46:46 +00:00
await entry[1]();
}
}
export function Navigator() {
const { url: contextUrl, setUrl } = useBrowserState();
const [inputValue, setInputValue] = useState(contextUrl); // Local state for the input value
const { ready } = useLumeStatus();
2023-10-11 13:46:46 +00:00
2023-10-16 22:37:10 +00:00
const browse = () => {
2023-10-16 22:12:20 +00:00
let input = inputValue.trim();
2023-10-11 13:46:46 +00:00
// If the input doesn't contain a protocol, assume it's http
if (!input?.match(/^https?:\/\//)) {
input = `http://${input}`;
}
try {
// Try to parse it as a URL
const url = new URL(input);
2023-10-16 23:50:58 +00:00
setUrl(url.toString() || "about:blank");
2023-10-11 13:46:46 +00:00
} catch (e) {
// Handle invalid URLs here, if needed
console.error("Invalid URL:", e);
}
2023-10-16 22:37:10 +00:00
};
2023-10-11 13:46:46 +00:00
useEffect(() => {
setInputValue(contextUrl); // Update local state when context's url changes
}, [contextUrl]);
2023-10-16 22:20:10 +00:00
const NavInput = forwardRef((props: any, ref) => {
return <Input ref={ref} {...props}></Input>;
});
2023-10-11 13:46:46 +00:00
2023-10-16 21:15:23 +00:00
console.log("Navigator mounted");
2023-10-11 13:46:46 +00:00
return (
<>
<NavInput
value={inputValue}
2023-10-16 22:37:10 +00:00
onChange={(e: any) => setInputValue(e.target.value)}
disabled={!ready}
/>
<Button onClick={browse} disabled={!ready}>
2023-10-11 13:46:46 +00:00
Navigate
<Arrow />
</Button>
</>
);
}
export function Browser() {
const { url, setUrl } = useBrowserState();
2023-10-16 19:20:00 +00:00
const status = useLumeStatus();
const auth = useAuth();
const iframeRef = useRef<HTMLIFrameElement>(null);
2023-10-11 13:46:46 +00:00
useEffect(() => {
boot({
onAuth(authed) {
auth.setIsLoggedIn(authed)
},
onBoot(booted) {
status.setReady(booted)
},
onInit(inited) {
status.setInited(inited)
}
}).catch((err) => console.error("[Browser.tsx] Failed to Boot Lume", {error: err}));
2023-10-11 13:46:46 +00:00
}, []);
const handleIframeLoad = () => {
try {
const newUrl = iframeRef?.current?.contentWindow?.location.href as string;
2023-10-17 01:46:30 +00:00
const urlObj = new URL(newUrl);
let realUrl = urlObj.pathname
.replace(/^\/browse\//, "")
.replace(/\/$/, "");
if (url !== realUrl) {
setUrl(realUrl);
2023-10-17 00:49:20 +00:00
}
} catch (e) {
// This will catch errors related to cross-origin requests, in which case we can't access the iframe's contentWindow.location
console.warn(
"Couldn't access iframe URL due to cross-origin restrictions:",
e,
);
}
};
return (
<iframe
2023-10-17 01:40:49 +00:00
ref={iframeRef}
onLoad={handleIframeLoad}
src={url ? `/browse/${url}` : "about:blank"}
className="w-full h-full"
></iframe>
);
2023-10-11 13:46:46 +00:00
}