2023-10-11 13:46:46 +00:00
|
|
|
import {
|
|
|
|
createContext,
|
|
|
|
createRef,
|
|
|
|
forwardRef,
|
|
|
|
useContext,
|
|
|
|
useEffect,
|
|
|
|
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-12 17:06:48 +00:00
|
|
|
import { type LumeContextType, useLume } 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("about:blank");
|
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2023-10-12 17:06:48 +00:00
|
|
|
async function boot(lume: LumeContextType) {
|
2023-10-11 13:46:46 +00:00
|
|
|
const reg = await navigator.serviceWorker.register("/sw.js");
|
|
|
|
await reg.update();
|
|
|
|
|
|
|
|
await kernel.serviceWorkerReady();
|
2023-10-12 16:56:28 +00:00
|
|
|
|
|
|
|
kernel.init().then(() => {
|
2023-10-12 17:20:46 +00:00
|
|
|
lume.setInited(true);
|
2023-10-12 16:56:28 +00:00
|
|
|
});
|
|
|
|
|
2023-10-11 13:46:46 +00:00
|
|
|
await kernelLoaded();
|
|
|
|
|
2023-10-12 17:20:46 +00:00
|
|
|
lume.setIsLoggedIn(true);
|
|
|
|
|
2023-10-11 13:46:46 +00:00
|
|
|
BOOT_FUNCTIONS.push(
|
|
|
|
async () =>
|
|
|
|
await swarmClient.addRelay(
|
|
|
|
"2d7ae1517caf4aae4de73c6d6f400765d2dd00b69d65277a29151437ef1c7d1d",
|
|
|
|
),
|
|
|
|
);
|
|
|
|
|
|
|
|
// IRC
|
|
|
|
BOOT_FUNCTIONS.push(
|
|
|
|
async () =>
|
|
|
|
await peerDiscoveryClient.register(
|
|
|
|
"zdiN5eJ3RfHpZHTYorGxBt1GCsrGJYV9GprwVWkj8snGsjWSrptFm8BtQX",
|
|
|
|
),
|
|
|
|
);
|
|
|
|
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));
|
|
|
|
}
|
|
|
|
|
|
|
|
await bootup();
|
|
|
|
|
2023-10-12 17:20:46 +00:00
|
|
|
lume.setReady(true);
|
2023-10-12 16:56:28 +00:00
|
|
|
|
2023-10-11 13:46:46 +00:00
|
|
|
await Promise.all([
|
|
|
|
ethClient.ready(),
|
|
|
|
handshakeClient.ready(),
|
|
|
|
ipfsClient.ready(),
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
async function bootup() {
|
|
|
|
for (const entry of Object.entries(BOOT_FUNCTIONS)) {
|
|
|
|
await entry[1]();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export function Navigator() {
|
|
|
|
const { url, setUrl } = useBrowserState();
|
2023-10-11 14:27:12 +00:00
|
|
|
const { isLoggedIn } = useLume();
|
2023-10-11 13:46:46 +00:00
|
|
|
const inputRef = createRef<HTMLInputElement>();
|
|
|
|
|
|
|
|
const browse = () => {
|
|
|
|
let input = inputRef.current?.value.trim();
|
|
|
|
|
|
|
|
// 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);
|
|
|
|
|
|
|
|
setUrl(
|
|
|
|
`/browse/${url.hostname}${url.pathname}${url.search}${url.hash}` ||
|
|
|
|
"about:blank",
|
|
|
|
);
|
|
|
|
} catch (e) {
|
|
|
|
// Handle invalid URLs here, if needed
|
|
|
|
console.error("Invalid URL:", e);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
const NavInput = forwardRef((props: any, ref) => (
|
|
|
|
<Input ref={ref} {...props}></Input>
|
|
|
|
));
|
|
|
|
|
|
|
|
return (
|
|
|
|
<>
|
2023-10-11 14:27:12 +00:00
|
|
|
<NavInput ref={inputRef} disabled={!isLoggedIn} />
|
|
|
|
<Button onClick={browse} disabled={!isLoggedIn}>
|
2023-10-11 13:46:46 +00:00
|
|
|
Navigate
|
|
|
|
<Arrow />
|
|
|
|
</Button>
|
|
|
|
</>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
export function Browser() {
|
|
|
|
const { url } = useBrowserState();
|
2023-10-12 17:06:48 +00:00
|
|
|
const lume = useLume();
|
2023-10-11 13:46:46 +00:00
|
|
|
|
|
|
|
useEffect(() => {
|
2023-10-12 17:06:48 +00:00
|
|
|
boot(lume);
|
2023-10-11 13:46:46 +00:00
|
|
|
}, []);
|
|
|
|
|
|
|
|
return <iframe src={url} className="w-full h-full"></iframe>;
|
|
|
|
}
|