// gomuks - A Matrix client written in Go. // Copyright (C) 2024 Tulir Asokan // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU Affero General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU Affero General Public License for more details. // // You should have received a copy of the GNU Affero General Public License // along with this program. If not, see . import { useEffect, useMemo } from "react" import { ScaleLoader } from "react-spinners" import Client from "./api/client.ts" import WSClient from "./api/wsclient.ts" import { ClientContext } from "./ui/ClientContext.ts" import { LightboxWrapper } from "./ui/Lightbox.tsx" import MainScreen from "./ui/MainScreen.tsx" import { LoginScreen, VerificationScreen } from "./ui/login" import { useEventAsState } from "./util/eventdispatcher.ts" function App() { const client = useMemo(() => new Client(new WSClient("/_gomuks/websocket")), []) const connState = useEventAsState(client.rpc.connect) const clientState = useEventAsState(client.state) ;((window as unknown) as { client: Client }).client = client useEffect(() => { client.rpc.start() return () => client.rpc.stop() }, [client]) if (connState?.error) { return
error {`${connState.error}`} :(
} else if (!connState?.connected || !clientState) { const msg = connState?.connected ? "Waiting for client state..." : "Connecting to backend..." return
{msg}
} else if (!clientState.is_logged_in) { return } else if (!clientState.is_verified) { return } else { return } } export default App