Compare commits

..

No commits in common. "2a13d11e9dbd35b86c2d78741fec096179be4116" and "9836b5de2669fe49ed0c3a0653795f1d33b22bf9" have entirely different histories.

4 changed files with 39 additions and 54 deletions

View File

@ -36,13 +36,21 @@ const App: React.FC = () => {
</div> </div>
</div> </div>
<Navigator /> <Navigator />
{ethStatus?.syncState === "syncing" || {true ||
ethStatus?.syncState === "syncing" ||
handshakeStatus?.syncState === "syncing" ? ( handshakeStatus?.syncState === "syncing" ? (
<div className="py-4 -mb-4 flex flex-row gap-x-3"> <div className="py-4 -mb-4 flex flex-row gap-x-3">
{ethStatus?.syncState === "syncing" ? ( {ethStatus?.syncState === "syncing" ? (
<span className="flex items-center gap-x-2 rounded-full bg-neutral-800 text-white p-1 px-4 bg"> <span className="flex items-center gap-x-2 rounded-full bg-neutral-800 text-white p-1 px-4 bg">
<CircleProgressBar radius={5} strokeWidth={3} percentage={Math.floor(ethStatus.sync)} /> <CircleProgressBar
<span className="font-bold font-mono text-orange-400 mr-2">{ethStatus.sync.toFixed(1)}%</span> Syncing Ethereum Network radius={5}
strokeWidth={3}
percentage={Math.floor(ethStatus.sync)}
/>
<span className="font-bold font-mono text-orange-400 mr-2">
{ethStatus.sync.toFixed(1)}%
</span>{" "}
Syncing Ethereum Network
</span> </span>
) : ethStatus?.syncState === "done" ? ( ) : ethStatus?.syncState === "done" ? (
<span className="flex items-center gap-x-2 rounded-full bg-neutral-800 text-white p-1 px-4 bg"> <span className="flex items-center gap-x-2 rounded-full bg-neutral-800 text-white p-1 px-4 bg">

View File

@ -38,8 +38,6 @@ interface BrowserContextType {
setUrl: React.Dispatch<React.SetStateAction<string>>; setUrl: React.Dispatch<React.SetStateAction<string>>;
isLoadingPage: boolean; isLoadingPage: boolean;
setIsLoadingPage: React.Dispatch<React.SetStateAction<boolean>>; setIsLoadingPage: React.Dispatch<React.SetStateAction<boolean>>;
authStatus: LumeAuthStatus;
setAuthStatus: React.Dispatch<React.SetStateAction<LumeAuthStatus>>;
} }
const BrowserStateContext = createContext<BrowserContextType | undefined>( const BrowserStateContext = createContext<BrowserContextType | undefined>(
@ -53,18 +51,10 @@ export function BrowserStateProvider({
}) { }) {
const [url, setUrl] = useState(""); const [url, setUrl] = useState("");
const [isLoadingPage, setIsLoadingPage] = useState<boolean>(false); const [isLoadingPage, setIsLoadingPage] = useState<boolean>(false);
const [authStatus, setAuthStatus] = useState<LumeAuthStatus>("idle");
return ( return (
<BrowserStateContext.Provider <BrowserStateContext.Provider
value={{ value={{ url, setUrl, isLoadingPage, setIsLoadingPage }}
url,
setUrl,
isLoadingPage,
setIsLoadingPage,
authStatus,
setAuthStatus,
}}
> >
{children} {children}
</BrowserStateContext.Provider> </BrowserStateContext.Provider>
@ -81,18 +71,15 @@ export function useBrowserState() {
return context; return context;
} }
type LumeAuthStatus = "idle" | "done" | "syncing";
async function boot({ async function boot({
onInit, onInit,
onAuth, onAuth,
onBoot, onBoot,
}: { }: {
onInit: (inited: boolean) => Promise<void> | void; onInit: (inited: boolean) => Promise<void> | void;
onAuth: (authed: LumeAuthStatus) => Promise<void> | void; onAuth: (authed: boolean) => Promise<void> | void;
onBoot: (booted: boolean) => Promise<void> | void; onBoot: (booted: boolean) => Promise<void> | void;
}) { }) {
await onAuth("idle");
let err = false; let err = false;
const reg = await navigator.serviceWorker.register("/sw.js"); const reg = await navigator.serviceWorker.register("/sw.js");
await reg.update(); await reg.update();
@ -104,8 +91,7 @@ async function boot({
}); });
await onInit(true); await onInit(true);
await kernelLoaded() await kernelLoaded()
.then(async (result) => { .then((result) => {
await onAuth("syncing");
if ("indexeddb_error" === (result as string)) { if ("indexeddb_error" === (result as string)) {
alert( alert(
"Error: Please ensure 3rd party cookies are enabled, and any security like brave shield is off, then reload the app", "Error: Please ensure 3rd party cookies are enabled, and any security like brave shield is off, then reload the app",
@ -119,7 +105,7 @@ async function boot({
if (err) { if (err) {
return; return;
} }
await onAuth("done"); await onAuth(true);
BOOT_FUNCTIONS.push( BOOT_FUNCTIONS.push(
async () => async () =>
@ -154,11 +140,10 @@ async function boot({
for (const resolver of resolvers) { for (const resolver of resolvers) {
BOOT_FUNCTIONS.push(async () => dnsClient.registerResolver(resolver)); BOOT_FUNCTIONS.push(async () => dnsClient.registerResolver(resolver));
} }
BOOT_FUNCTIONS.push(async () => onBoot(true));
await bootup(); await bootup();
await onBoot(true);
await Promise.all([ await Promise.all([
ethClient.ready(), ethClient.ready(),
handshakeClient.ready(), handshakeClient.ready(),
@ -167,7 +152,7 @@ async function boot({
} }
async function bootup() { async function bootup() {
for await (const entry of Object.entries(BOOT_FUNCTIONS)) { for (const entry of Object.entries(BOOT_FUNCTIONS)) {
console.log(entry[1].toString()); console.log(entry[1].toString());
await entry[1](); await entry[1]();
} }
@ -198,7 +183,7 @@ export function Navigator() {
const browse = (inputValue: string) => { const browse = (inputValue: string) => {
try { try {
if(inputValue === "") { if(inputValue === "") {
setUrl("about:blank"); setUrl("about:blank")
} }
// Try to parse it as a URL // Try to parse it as a URL
const url = parseUrl(inputValue); const url = parseUrl(inputValue);
@ -250,8 +235,7 @@ export function Navigator() {
} }
export function Browser() { export function Browser() {
const { url, setUrl, isLoadingPage, setIsLoadingPage, setAuthStatus } = const { url, setUrl, isLoadingPage, setIsLoadingPage } = useBrowserState();
useBrowserState();
const status = useLumeStatus(); const status = useLumeStatus();
const auth = useAuth(); const auth = useAuth();
const iframeRef = useRef<HTMLIFrameElement>(null); const iframeRef = useRef<HTMLIFrameElement>(null);
@ -259,11 +243,7 @@ export function Browser() {
useEffect(() => { useEffect(() => {
boot({ boot({
onAuth(authed) { onAuth(authed) {
console.log({authed}) auth.setIsLoggedIn(authed);
setAuthStatus(authed);
if (authed === "done") {
auth.setIsLoggedIn(true);
}
}, },
onBoot(booted) { onBoot(booted) {
status.setReady(booted); status.setReady(booted);
@ -276,9 +256,7 @@ export function Browser() {
); );
}, []); }, []);
const handleIframeLoad = ( const handleIframeLoad = (event: React.SyntheticEvent<HTMLIFrameElement, Event>) => {
event: React.SyntheticEvent<HTMLIFrameElement, Event>,
) => {
try { try {
const newUrl = iframeRef?.current?.contentWindow?.location.href as string; const newUrl = iframeRef?.current?.contentWindow?.location.href as string;
const urlObj = new URL(newUrl); const urlObj = new URL(newUrl);
@ -290,7 +268,7 @@ export function Browser() {
} }
const readyState = event.currentTarget.contentDocument?.readyState; const readyState = event.currentTarget.contentDocument?.readyState;
console.log("[debug]",{readyState}); console.log("[debug]",{readyState});
if (readyState === "interactive") { if(readyState === 'interactive') {
setIsLoadingPage(false); setIsLoadingPage(false);
} }
} catch (e) { } catch (e) {
@ -307,7 +285,7 @@ export function Browser() {
if (iframe) { if (iframe) {
const observer = new MutationObserver((mutationsList, observer) => { const observer = new MutationObserver((mutationsList, observer) => {
for (let mutation of mutationsList) { for (let mutation of mutationsList) {
console.log("[debug] Mutated ", { mutation }); console.log("[debug] Mutated ", {mutation})
if ( if (
mutation.type === "attributes" && mutation.type === "attributes" &&
mutation.attributeName === "src" mutation.attributeName === "src"

View File

@ -4,13 +4,10 @@ import {
LumeIdentityTrigger, LumeIdentityTrigger,
useAuth, useAuth,
useLumeStatus, useLumeStatus,
useNetworks,
} from "@lumeweb/sdk"; } from "@lumeweb/sdk";
import { useBrowserState } from "./Browser";
const Lume: React.FC = () => { const Lume: React.FC = () => {
const { isLoggedIn } = useAuth(); const { isLoggedIn } = useAuth();
const { authStatus } = useBrowserState();
const { ready, inited } = useLumeStatus(); const { ready, inited } = useLumeStatus();
return ( return (
@ -20,14 +17,14 @@ const Lume: React.FC = () => {
<LumeIdentityTrigger asChild> <LumeIdentityTrigger asChild>
<button <button
className="ml-2 w-full rounded-full bg-[hsl(113,49%,55%)] text-black disabled:pointer-events-none disabled:opacity-50" className="ml-2 w-full rounded-full bg-[hsl(113,49%,55%)] text-black disabled:pointer-events-none disabled:opacity-50"
disabled={!inited || authStatus === 'syncing'} disabled={!inited}
> >
Login Login
</button> </button>
</LumeIdentityTrigger> </LumeIdentityTrigger>
</LumeIdentity> </LumeIdentity>
)} )}
{isLoggedIn && <LumeDashboard disabled={!inited} />} {isLoggedIn && <LumeDashboard disabled={!ready} />}
</> </>
); );
}; };

View File

@ -26,6 +26,8 @@ const StartPage = ({ setUrl }: Props) => {
from the Ethereum Name Service (ENS) and Handshake protocol, providing a from the Ethereum Name Service (ENS) and Handshake protocol, providing a
secure and decentralized browsing experience. secure and decentralized browsing experience.
</p> </p>
{/* TODO: Add the lume loading indicators for the networks. */}
{/* <CircleProgressBar radius={20} strokeWidth={4} textSize={12} percentage={75} /> */}
{inited && ready ? ( {inited && ready ? (
<div> <div>
<hr className="my-3 border-neutral-700" /> <hr className="my-3 border-neutral-700" />
@ -61,11 +63,11 @@ const StartPage = ({ setUrl }: Props) => {
) : null} ) : null}
{inited && !ready && isLoggedIn ? ( {inited && !ready && isLoggedIn ? (
<div <div
className="bg-green-800/40 rounded-md border border-green-500 text-green-500 p-4" className="bg-yellow-800/40 rounded-md border border-yellow-500 text-yellow-500 p-4"
role="alert" role="alert"
> >
<p className="font-bold">You are logged in.</p> <p className="font-bold">Be patient</p>
<p>We are now starting to sync the networks.</p> <p>We are starting the engines.</p>
</div> </div>
) : null} ) : null}
{!isLoggedIn ? ( {!isLoggedIn ? (