// Copyright 2024, Command Line Inc. // SPDX-License-Identifier: Apache-2.0 import { getApi, openLink } from "@/app/store/global"; import { getSimpleControlShiftAtom } from "@/app/store/keymodel"; import { NodeModel } from "@/layout/index"; import { WOS, globalStore } from "@/store/global"; import * as services from "@/store/services"; import { adaptFromReactOrNativeKeyEvent, checkKeyPressed } from "@/util/keyutil"; import { fireAndForget } from "@/util/util"; import clsx from "clsx"; import { WebviewTag } from "electron"; import * as jotai from "jotai"; import React, { memo, useEffect, useState } from "react"; import { debounce } from "throttle-debounce"; import "./webview.less"; export class WebViewModel implements ViewModel { viewType: string; blockId: string; blockAtom: jotai.Atom; viewIcon: jotai.Atom; viewName: jotai.Atom; viewText: jotai.Atom; url: jotai.PrimitiveAtom; isUrlDirty: jotai.PrimitiveAtom; urlInput: jotai.PrimitiveAtom; urlInputFocused: jotai.PrimitiveAtom; isLoading: jotai.PrimitiveAtom; urlWrapperClassName: jotai.PrimitiveAtom; refreshIcon: jotai.PrimitiveAtom; webviewRef: React.RefObject; urlInputRef: React.RefObject; nodeModel: NodeModel; constructor(blockId: string, nodeModel: NodeModel) { this.nodeModel = nodeModel; this.viewType = "web"; this.blockId = blockId; this.blockAtom = WOS.getWaveObjectAtom(`block:${blockId}`); this.url = jotai.atom(); this.isUrlDirty = jotai.atom(false); this.urlInput = jotai.atom(""); this.urlWrapperClassName = jotai.atom(""); this.urlInputFocused = jotai.atom(false); this.isLoading = jotai.atom(false); this.refreshIcon = jotai.atom("rotate-right"); this.viewIcon = jotai.atom("globe"); this.viewName = jotai.atom("Web"); this.urlInputRef = React.createRef(); this.webviewRef = React.createRef(); this.viewText = jotai.atom((get) => { let url = get(this.blockAtom)?.meta?.url || ""; if (url && get(this.url) === undefined) { globalStore.set(this.url, url); } const urlIsDirty = get(this.isUrlDirty); if (urlIsDirty) { const currUrl = get(this.url); url = currUrl; } return [ { elemtype: "iconbutton", icon: "chevron-left", click: this.handleBack.bind(this), disabled: this.shouldDisabledBackButton(), }, { elemtype: "iconbutton", icon: "chevron-right", click: this.handleForward.bind(this), disabled: this.shouldDisabledForwardButton(), }, { elemtype: "div", className: clsx("block-frame-div-url", get(this.urlWrapperClassName)), onMouseOver: this.handleUrlWrapperMouseOver.bind(this), onMouseOut: this.handleUrlWrapperMouseOut.bind(this), children: [ { elemtype: "input", value: url, ref: this.urlInputRef, className: "url-input", onChange: this.handleUrlChange.bind(this), onKeyDown: this.handleKeyDown.bind(this), onFocus: this.handleFocus.bind(this), onBlur: this.handleBlur.bind(this), }, { elemtype: "iconbutton", icon: get(this.refreshIcon), click: this.handleRefresh.bind(this), }, ], }, ] as HeaderElem[]; }); } /** * Whether the back button in the header should be disabled. * @returns True if the WebView cannot go back or if the WebView call fails. False otherwise. */ shouldDisabledBackButton() { try { return !this.webviewRef.current?.canGoBack(); } catch (_) {} return true; } /** * Whether the forward button in the header should be disabled. * @returns True if the WebView cannot go forward or if the WebView call fails. False otherwise. */ shouldDisabledForwardButton() { try { return !this.webviewRef.current?.canGoForward(); } catch (_) {} return true; } handleUrlWrapperMouseOver(e: React.MouseEvent) { const urlInputFocused = globalStore.get(this.urlInputFocused); if (e.type === "mouseover" && !urlInputFocused) { globalStore.set(this.urlWrapperClassName, "hovered"); } } handleUrlWrapperMouseOut(e: React.MouseEvent) { const urlInputFocused = globalStore.get(this.urlInputFocused); if (e.type === "mouseout" && !urlInputFocused) { globalStore.set(this.urlWrapperClassName, ""); } } handleBack(e?: React.MouseEvent) { if (e) { e.preventDefault(); e.stopPropagation(); } this.webviewRef.current?.goBack(); } handleForward(e?: React.MouseEvent) { if (e) { e.preventDefault(); e.stopPropagation(); } this.webviewRef.current?.goForward(); } handleRefresh(e: React.MouseEvent) { e.preventDefault(); e.stopPropagation(); try { if (this.webviewRef.current) { if (globalStore.get(this.isLoading)) { this.webviewRef.current.stop(); } else { this.webviewRef.current.reload(); } } } catch (e) { console.warn("handleRefresh catch", e); } } handleUrlChange(event: React.ChangeEvent) { globalStore.set(this.url, event.target.value); globalStore.set(this.isUrlDirty, true); } handleKeyDown(event: React.KeyboardEvent) { const waveEvent = adaptFromReactOrNativeKeyEvent(event); if (checkKeyPressed(waveEvent, "Enter")) { const url = globalStore.get(this.url); this.loadUrl(url, "enter"); this.urlInputRef.current?.blur(); return; } if (checkKeyPressed(waveEvent, "Escape")) { this.webviewRef.current?.focus(); } } handleFocus(event: React.FocusEvent) { globalStore.set(this.urlWrapperClassName, "focused"); globalStore.set(this.urlInputFocused, true); this.urlInputRef.current.focus(); event.target.select(); } handleBlur(event: React.FocusEvent) { globalStore.set(this.urlWrapperClassName, ""); globalStore.set(this.urlInputFocused, false); } /** * Update the URL in the state when a navigation event has occurred. * @param url The URL that has been navigated to. */ handleNavigate(url: string) { services.ObjectService.UpdateObjectMeta(WOS.makeORef("block", this.blockId), { url }); globalStore.set(this.url, url); } ensureUrlScheme(url: string) { if (/^(http|https):/.test(url)) { // If the URL starts with http: or https:, return it as is return url; } // Check if the URL looks like a local URL const isLocal = /^(localhost|(\d{1,3}\.){3}\d{1,3})(:\d+)?$/.test(url.split("/")[0]); if (isLocal) { // If it is a local URL, ensure it has http:// scheme return `http://${url}`; } // Check if the URL looks like a domain const domainRegex = /^[a-z0-9.-]+\.[a-z]{2,}$/i; const isDomain = domainRegex.test(url.split("/")[0]); if (isDomain) { // If it looks like a domain, ensure it has https:// scheme return `https://${url}`; } // Otherwise, treat it as a search query return `https://www.google.com/search?q=${encodeURIComponent(url)}`; } normalizeUrl(url: string) { if (!url) { return url; } try { const parsedUrl = new URL(url); if (parsedUrl.hostname.startsWith("www.")) { parsedUrl.hostname = parsedUrl.hostname.slice(4); } return parsedUrl.href; } catch (e) { return url.replace(/\/+$/, "") + "/"; } } /** * Load a new URL in the webview. * @param newUrl The new URL to load in the webview. */ loadUrl(newUrl: string, reason: string) { const nextUrl = this.ensureUrlScheme(newUrl); console.log("webview loadUrl", reason, nextUrl, "cur=", this.webviewRef?.current.getURL()); if (newUrl != nextUrl) { globalStore.set(this.url, nextUrl); } if (!this.webviewRef.current) { return; } if (this.webviewRef.current.getURL() != nextUrl) { this.webviewRef.current.loadURL(nextUrl); } } /** * Get the current URL from the state. * @returns The URL from the state. */ getUrl() { return globalStore.get(this.url); } setRefreshIcon(refreshIcon: string) { globalStore.set(this.refreshIcon, refreshIcon); } setIsLoading(isLoading: boolean) { globalStore.set(this.isLoading, isLoading); } giveFocus(): boolean { const ctrlShiftState = globalStore.get(getSimpleControlShiftAtom()); if (ctrlShiftState) { // this is really weird, we don't get keyup events from webview const unsubFn = globalStore.sub(getSimpleControlShiftAtom(), () => { const state = globalStore.get(getSimpleControlShiftAtom()); if (!state) { unsubFn(); const isStillFocused = globalStore.get(this.nodeModel.isFocused); if (isStillFocused) { this.webviewRef.current?.focus(); } } }); return false; } this.webviewRef.current?.focus(); return true; } keyDownHandler(e: WaveKeyboardEvent): boolean { if (checkKeyPressed(e, "Cmd:l")) { this.urlInputRef?.current?.focus(); this.urlInputRef?.current?.select(); return true; } if (checkKeyPressed(e, "Cmd:r")) { this.webviewRef?.current?.reload(); return true; } if (checkKeyPressed(e, "Cmd:ArrowLeft")) { this.handleBack(null); return true; } if (checkKeyPressed(e, "Cmd:ArrowRight")) { this.handleForward(null); return true; } return false; } getSettingsMenuItems() { return [ { label: this.webviewRef.current?.isDevToolsOpened() ? "Close DevTools" : "Open DevTools", click: async () => { if (this.webviewRef.current) { if (this.webviewRef.current.isDevToolsOpened()) { this.webviewRef.current.closeDevTools(); } else { this.webviewRef.current.openDevTools(); } } }, }, ]; } } function makeWebViewModel(blockId: string, nodeModel: NodeModel): WebViewModel { const webviewModel = new WebViewModel(blockId, nodeModel); return webviewModel; } interface WebViewProps { blockId: string; model: WebViewModel; } const WebView = memo(({ model }: WebViewProps) => { const blockData = jotai.useAtomValue(model.blockAtom); const metaUrl = blockData?.meta?.url; const metaUrlRef = React.useRef(metaUrl); // The initial value of the block metadata URL when the component first renders. Used to set the starting src value for the webview. const [metaUrlInitial] = useState(metaUrl); const [webContentsId, setWebContentsId] = useState(null); const [domReady, setDomReady] = useState(false); useEffect(() => { if (model.webviewRef.current && domReady) { const wcId = model.webviewRef.current.getWebContentsId?.(); if (wcId) { setWebContentsId(wcId); } } }, [model.webviewRef.current, domReady]); // Load a new URL if the block metadata is updated. useEffect(() => { if (metaUrlRef.current != metaUrl) { metaUrlRef.current = metaUrl; model.loadUrl(metaUrl, "meta"); } }, [metaUrl]); useEffect(() => { const webview = model.webviewRef.current; if (webview) { const navigateListener = (e: any) => { model.handleNavigate(e.url); }; const newWindowHandler = (e: any) => { e.preventDefault(); const newUrl = e.detail.url; console.log("webview new-window event:", newUrl); fireAndForget(() => openLink(newUrl, true)); }; const startLoadingHandler = () => { model.setRefreshIcon("xmark-large"); model.setIsLoading(true); webview.style.backgroundColor = "transparent"; }; const stopLoadingHandler = () => { model.setRefreshIcon("rotate-right"); model.setIsLoading(false); debounce(1000, () => { webview.style.backgroundColor = "white"; })(); }; const failLoadHandler = (e: any) => { if (e.errorCode === -3) { console.warn("Suppressed ERR_ABORTED error", e); } else { console.error(`Failed to load ${e.validatedURL}: ${e.errorDescription}`); } }; const webviewFocus = () => { getApi().setWebviewFocus(webview.getWebContentsId()); model.nodeModel.focusNode(); }; const webviewBlur = () => { getApi().setWebviewFocus(null); }; const handleDomReady = () => { setDomReady(true); }; webview.addEventListener("did-navigate-in-page", navigateListener); webview.addEventListener("did-navigate", navigateListener); webview.addEventListener("did-start-loading", startLoadingHandler); webview.addEventListener("did-stop-loading", stopLoadingHandler); webview.addEventListener("new-window", newWindowHandler); webview.addEventListener("did-fail-load", failLoadHandler); webview.addEventListener("focus", webviewFocus); webview.addEventListener("blur", webviewBlur); webview.addEventListener("dom-ready", handleDomReady); // Clean up event listeners on component unmount return () => { webview.removeEventListener("did-navigate", navigateListener); webview.removeEventListener("did-navigate-in-page", navigateListener); webview.removeEventListener("new-window", newWindowHandler); webview.removeEventListener("did-fail-load", failLoadHandler); webview.removeEventListener("did-start-loading", startLoadingHandler); webview.removeEventListener("did-stop-loading", stopLoadingHandler); webview.removeEventListener("focus", webviewFocus); webview.removeEventListener("blur", webviewBlur); webview.removeEventListener("dom-ready", handleDomReady); }; } }, []); return ( ); }); export { WebView, makeWebViewModel };