| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584 |
- import { createEffect, createMemo, onCleanup, Show } from "solid-js"
- import { createStore } from "solid-js/store"
- import { Portal } from "solid-js/web"
- import { useParams } from "@solidjs/router"
- import { useLayout } from "@/context/layout"
- import { useCommand } from "@/context/command"
- import { useLanguage } from "@/context/language"
- import { usePlatform } from "@/context/platform"
- import { useServer } from "@/context/server"
- import { useSync } from "@/context/sync"
- import { useGlobalSDK } from "@/context/global-sdk"
- import { getFilename } from "@opencode-ai/util/path"
- import { decode64 } from "@/utils/base64"
- import { Persist, persisted } from "@/utils/persist"
- import { Icon } from "@opencode-ai/ui/icon"
- import { IconButton } from "@opencode-ai/ui/icon-button"
- import { Button } from "@opencode-ai/ui/button"
- import { AppIcon } from "@opencode-ai/ui/app-icon"
- import { DropdownMenu } from "@opencode-ai/ui/dropdown-menu"
- import { Tooltip, TooltipKeybind } from "@opencode-ai/ui/tooltip"
- import { Popover } from "@opencode-ai/ui/popover"
- import { TextField } from "@opencode-ai/ui/text-field"
- import { Keybind } from "@opencode-ai/ui/keybind"
- import { showToast } from "@opencode-ai/ui/toast"
- import { StatusPopover } from "../status-popover"
- export function SessionHeader() {
- const globalSDK = useGlobalSDK()
- const layout = useLayout()
- const params = useParams()
- const command = useCommand()
- const server = useServer()
- const sync = useSync()
- const platform = usePlatform()
- const language = useLanguage()
- const projectDirectory = createMemo(() => decode64(params.dir) ?? "")
- const project = createMemo(() => {
- const directory = projectDirectory()
- if (!directory) return
- return layout.projects.list().find((p) => p.worktree === directory || p.sandboxes?.includes(directory))
- })
- const name = createMemo(() => {
- const current = project()
- if (current) return current.name || getFilename(current.worktree)
- return getFilename(projectDirectory())
- })
- const hotkey = createMemo(() => command.keybind("file.open"))
- const currentSession = createMemo(() => sync.data.session.find((s) => s.id === params.id))
- const shareEnabled = createMemo(() => sync.data.config.share !== "disabled")
- const showShare = createMemo(() => shareEnabled() && !!currentSession())
- const sessionKey = createMemo(() => `${params.dir}${params.id ? "/" + params.id : ""}`)
- const view = createMemo(() => layout.view(sessionKey))
- const OPEN_APPS = [
- "vscode",
- "cursor",
- "zed",
- "textmate",
- "antigravity",
- "finder",
- "terminal",
- "iterm2",
- "ghostty",
- "xcode",
- "android-studio",
- "powershell",
- "sublime-text",
- ] as const
- type OpenApp = (typeof OPEN_APPS)[number]
- const MAC_APPS = [
- { id: "vscode", label: "VS Code", icon: "vscode", openWith: "Visual Studio Code" },
- { id: "cursor", label: "Cursor", icon: "cursor", openWith: "Cursor" },
- { id: "zed", label: "Zed", icon: "zed", openWith: "Zed" },
- { id: "textmate", label: "TextMate", icon: "textmate", openWith: "TextMate" },
- { id: "antigravity", label: "Antigravity", icon: "antigravity", openWith: "Antigravity" },
- { id: "terminal", label: "Terminal", icon: "terminal", openWith: "Terminal" },
- { id: "iterm2", label: "iTerm2", icon: "iterm2", openWith: "iTerm" },
- { id: "ghostty", label: "Ghostty", icon: "ghostty", openWith: "Ghostty" },
- { id: "xcode", label: "Xcode", icon: "xcode", openWith: "Xcode" },
- { id: "android-studio", label: "Android Studio", icon: "android-studio", openWith: "Android Studio" },
- { id: "sublime-text", label: "Sublime Text", icon: "sublime-text", openWith: "Sublime Text" },
- ] as const
- const WINDOWS_APPS = [
- { id: "vscode", label: "VS Code", icon: "vscode", openWith: "code" },
- { id: "cursor", label: "Cursor", icon: "cursor", openWith: "cursor" },
- { id: "zed", label: "Zed", icon: "zed", openWith: "zed" },
- { id: "powershell", label: "PowerShell", icon: "powershell", openWith: "powershell" },
- { id: "sublime-text", label: "Sublime Text", icon: "sublime-text", openWith: "Sublime Text" },
- ] as const
- const LINUX_APPS = [
- { id: "vscode", label: "VS Code", icon: "vscode", openWith: "code" },
- { id: "cursor", label: "Cursor", icon: "cursor", openWith: "cursor" },
- { id: "zed", label: "Zed", icon: "zed", openWith: "zed" },
- { id: "sublime-text", label: "Sublime Text", icon: "sublime-text", openWith: "Sublime Text" },
- ] as const
- const os = createMemo<"macos" | "windows" | "linux" | "unknown">(() => {
- if (platform.platform === "desktop" && platform.os) return platform.os
- if (typeof navigator !== "object") return "unknown"
- const value = navigator.platform || navigator.userAgent
- if (/Mac/i.test(value)) return "macos"
- if (/Win/i.test(value)) return "windows"
- if (/Linux/i.test(value)) return "linux"
- return "unknown"
- })
- const [exists, setExists] = createStore<Partial<Record<OpenApp, boolean>>>({ finder: true })
- createEffect(() => {
- if (platform.platform !== "desktop") return
- if (!platform.checkAppExists) return
- const list = os()
- const apps = list === "macos" ? MAC_APPS : list === "windows" ? WINDOWS_APPS : list === "linux" ? LINUX_APPS : []
- if (apps.length === 0) return
- void Promise.all(
- apps.map((app) =>
- Promise.resolve(platform.checkAppExists?.(app.openWith)).then((value) => {
- const ok = Boolean(value)
- console.debug(`[session-header] App "${app.label}" (${app.openWith}): ${ok ? "exists" : "does not exist"}`)
- return [app.id, ok] as const
- }),
- ),
- ).then((entries) => {
- setExists(Object.fromEntries(entries) as Partial<Record<OpenApp, boolean>>)
- })
- })
- const options = createMemo(() => {
- if (os() === "macos") {
- return [{ id: "finder", label: "Finder", icon: "finder" }, ...MAC_APPS.filter((app) => exists[app.id])] as const
- }
- if (os() === "windows") {
- return [
- { id: "finder", label: "File Explorer", icon: "file-explorer" },
- ...WINDOWS_APPS.filter((app) => exists[app.id]),
- ] as const
- }
- return [
- { id: "finder", label: "File Manager", icon: "finder" },
- ...LINUX_APPS.filter((app) => exists[app.id]),
- ] as const
- })
- const [prefs, setPrefs] = persisted(Persist.global("open.app"), createStore({ app: "finder" as OpenApp }))
- const canOpen = createMemo(() => platform.platform === "desktop" && !!platform.openPath && server.isLocal())
- const current = createMemo(() => options().find((o) => o.id === prefs.app) ?? options()[0])
- createEffect(() => {
- if (platform.platform !== "desktop") return
- const value = prefs.app
- if (options().some((o) => o.id === value)) return
- setPrefs("app", options()[0]?.id ?? "finder")
- })
- const openDir = (app: OpenApp) => {
- const directory = projectDirectory()
- if (!directory) return
- if (!canOpen()) return
- const item = options().find((o) => o.id === app)
- const openWith = item && "openWith" in item ? item.openWith : undefined
- Promise.resolve(platform.openPath?.(directory, openWith)).catch((err: unknown) => {
- showToast({
- variant: "error",
- title: language.t("common.requestFailed"),
- description: err instanceof Error ? err.message : String(err),
- })
- })
- }
- const copyPath = () => {
- const directory = projectDirectory()
- if (!directory) return
- navigator.clipboard
- .writeText(directory)
- .then(() => {
- showToast({
- variant: "success",
- icon: "circle-check",
- title: language.t("session.share.copy.copied"),
- description: directory,
- })
- })
- .catch((err: unknown) => {
- showToast({
- variant: "error",
- title: language.t("common.requestFailed"),
- description: err instanceof Error ? err.message : String(err),
- })
- })
- }
- const [state, setState] = createStore({
- share: false,
- unshare: false,
- copied: false,
- timer: undefined as number | undefined,
- })
- const shareUrl = createMemo(() => currentSession()?.share?.url)
- createEffect(() => {
- const url = shareUrl()
- if (url) return
- if (state.timer) window.clearTimeout(state.timer)
- setState({ copied: false, timer: undefined })
- })
- onCleanup(() => {
- if (state.timer) window.clearTimeout(state.timer)
- })
- function shareSession() {
- const session = currentSession()
- if (!session || state.share) return
- setState("share", true)
- globalSDK.client.session
- .share({ sessionID: session.id, directory: projectDirectory() })
- .catch((error) => {
- console.error("Failed to share session", error)
- })
- .finally(() => {
- setState("share", false)
- })
- }
- function unshareSession() {
- const session = currentSession()
- if (!session || state.unshare) return
- setState("unshare", true)
- globalSDK.client.session
- .unshare({ sessionID: session.id, directory: projectDirectory() })
- .catch((error) => {
- console.error("Failed to unshare session", error)
- })
- .finally(() => {
- setState("unshare", false)
- })
- }
- function copyLink() {
- const url = shareUrl()
- if (!url) return
- navigator.clipboard
- .writeText(url)
- .then(() => {
- if (state.timer) window.clearTimeout(state.timer)
- setState("copied", true)
- const timer = window.setTimeout(() => {
- setState("copied", false)
- setState("timer", undefined)
- }, 3000)
- setState("timer", timer)
- })
- .catch((error) => {
- console.error("Failed to copy share link", error)
- })
- }
- function viewShare() {
- const url = shareUrl()
- if (!url) return
- platform.openLink(url)
- }
- const centerMount = createMemo(() => document.getElementById("opencode-titlebar-center"))
- const rightMount = createMemo(() => document.getElementById("opencode-titlebar-right"))
- return (
- <>
- <Show when={centerMount()}>
- {(mount) => (
- <Portal mount={mount()}>
- <button
- type="button"
- class="hidden md:flex w-[320px] max-w-full min-w-0 h-[24px] px-2 pl-1.5 items-center gap-2 justify-between rounded-md border border-border-base bg-surface-panel transition-colors cursor-default hover:bg-surface-raised-base-hover focus-visible:bg-surface-raised-base-hover active:bg-surface-raised-base-active"
- onClick={() => command.trigger("file.open")}
- aria-label={language.t("session.header.searchFiles")}
- >
- <div class="flex min-w-0 flex-1 items-center gap-2 overflow-visible">
- <Icon name="magnifying-glass" size="normal" class="icon-base shrink-0" />
- <span class="flex-1 min-w-0 text-14-regular text-text-weak truncate h-4.5 flex items-center">
- {language.t("session.header.search.placeholder", { project: name() })}
- </span>
- </div>
- <Show when={hotkey()}>
- {(keybind) => (
- <Keybind class="shrink-0 !border-0 !bg-transparent !shadow-none px-0">{keybind()}</Keybind>
- )}
- </Show>
- </button>
- </Portal>
- )}
- </Show>
- <Show when={rightMount()}>
- {(mount) => (
- <Portal mount={mount()}>
- <div class="flex items-center gap-3">
- <StatusPopover />
- <Show when={projectDirectory()}>
- <div class="hidden xl:flex items-center">
- <Show
- when={canOpen()}
- fallback={
- <Button
- variant="ghost"
- class="rounded-sm h-[24px] py-1.5 pr-3 pl-2 gap-2 border-none shadow-none"
- onClick={copyPath}
- aria-label={language.t("session.header.open.copyPath")}
- >
- <Icon name="copy" size="small" class="text-icon-base" />
- <span class="text-12-regular text-text-strong">
- {language.t("session.header.open.copyPath")}
- </span>
- </Button>
- }
- >
- <div class="flex items-center">
- <div class="flex h-[24px] box-border items-center rounded-md border border-border-base bg-surface-panel overflow-hidden">
- <Button
- variant="ghost"
- class="rounded-none h-full py-0 pr-3 pl-2 gap-1.5 border-none shadow-none"
- onClick={() => openDir(current().id)}
- aria-label={language.t("session.header.open.ariaLabel", { app: current().label })}
- >
- <AppIcon id={current().icon} class="size-4" />
- <span class="text-12-regular text-text-strong">Open</span>
- </Button>
- <div class="self-stretch w-px bg-border-base/70" />
- <DropdownMenu>
- <DropdownMenu.Trigger
- as={IconButton}
- icon="chevron-down"
- variant="ghost"
- class="rounded-none h-full w-[24px] p-0 border-none shadow-none data-[expanded]:bg-surface-raised-base-active"
- aria-label={language.t("session.header.open.menu")}
- />
- <DropdownMenu.Portal>
- <DropdownMenu.Content placement="bottom-end" gutter={6}>
- <DropdownMenu.Group>
- <DropdownMenu.GroupLabel>{language.t("session.header.openIn")}</DropdownMenu.GroupLabel>
- <DropdownMenu.RadioGroup
- value={prefs.app}
- onChange={(value) => {
- if (!OPEN_APPS.includes(value as OpenApp)) return
- setPrefs("app", value as OpenApp)
- }}
- >
- {options().map((o) => (
- <DropdownMenu.RadioItem value={o.id} onSelect={() => openDir(o.id)}>
- <AppIcon id={o.icon} class="size-5" />
- <DropdownMenu.ItemLabel>{o.label}</DropdownMenu.ItemLabel>
- <DropdownMenu.ItemIndicator>
- <Icon name="check-small" size="small" class="text-icon-weak" />
- </DropdownMenu.ItemIndicator>
- </DropdownMenu.RadioItem>
- ))}
- </DropdownMenu.RadioGroup>
- </DropdownMenu.Group>
- <DropdownMenu.Separator />
- <DropdownMenu.Item onSelect={copyPath}>
- <Icon name="copy" size="small" class="text-icon-weak" />
- <DropdownMenu.ItemLabel>
- {language.t("session.header.open.copyPath")}
- </DropdownMenu.ItemLabel>
- </DropdownMenu.Item>
- </DropdownMenu.Content>
- </DropdownMenu.Portal>
- </DropdownMenu>
- </div>
- </div>
- </Show>
- </div>
- </Show>
- <Show when={showShare()}>
- <div class="flex items-center">
- <Popover
- title={language.t("session.share.popover.title")}
- description={
- shareUrl()
- ? language.t("session.share.popover.description.shared")
- : language.t("session.share.popover.description.unshared")
- }
- gutter={6}
- placement="bottom-end"
- shift={-64}
- class="rounded-xl [&_[data-slot=popover-close-button]]:hidden"
- triggerAs={Button}
- triggerProps={{
- variant: "ghost",
- class:
- "rounded-md h-[24px] px-3 border border-border-base bg-surface-panel shadow-none data-[expanded]:bg-surface-raised-base-active",
- classList: { "rounded-r-none": shareUrl() !== undefined },
- style: { scale: 1 },
- }}
- trigger={language.t("session.share.action.share")}
- >
- <div class="flex flex-col gap-2">
- <Show
- when={shareUrl()}
- fallback={
- <div class="flex">
- <Button
- size="large"
- variant="primary"
- class="w-1/2"
- onClick={shareSession}
- disabled={state.share}
- >
- {state.share
- ? language.t("session.share.action.publishing")
- : language.t("session.share.action.publish")}
- </Button>
- </div>
- }
- >
- <div class="flex flex-col gap-2">
- <TextField
- value={shareUrl() ?? ""}
- readOnly
- copyable
- copyKind="link"
- tabIndex={-1}
- class="w-full"
- />
- <div class="grid grid-cols-2 gap-2">
- <Button
- size="large"
- variant="secondary"
- class="w-full shadow-none border border-border-weak-base"
- onClick={unshareSession}
- disabled={state.unshare}
- >
- {state.unshare
- ? language.t("session.share.action.unpublishing")
- : language.t("session.share.action.unpublish")}
- </Button>
- <Button
- size="large"
- variant="primary"
- class="w-full"
- onClick={viewShare}
- disabled={state.unshare}
- >
- {language.t("session.share.action.view")}
- </Button>
- </div>
- </div>
- </Show>
- </div>
- </Popover>
- <Show when={shareUrl()} fallback={<div aria-hidden="true" />}>
- <Tooltip
- value={
- state.copied
- ? language.t("session.share.copy.copied")
- : language.t("session.share.copy.copyLink")
- }
- placement="top"
- gutter={8}
- >
- <IconButton
- icon={state.copied ? "check" : "link"}
- variant="ghost"
- class="rounded-l-none h-[24px] border border-border-base bg-surface-panel shadow-none"
- onClick={copyLink}
- disabled={state.unshare}
- aria-label={
- state.copied
- ? language.t("session.share.copy.copied")
- : language.t("session.share.copy.copyLink")
- }
- />
- </Tooltip>
- </Show>
- </div>
- </Show>
- <div class="hidden md:flex items-center gap-3 ml-2 shrink-0">
- <TooltipKeybind
- title={language.t("command.terminal.toggle")}
- keybind={command.keybind("terminal.toggle")}
- >
- <Button
- variant="ghost"
- class="group/terminal-toggle size-6 p-0"
- onClick={() => view().terminal.toggle()}
- aria-label={language.t("command.terminal.toggle")}
- aria-expanded={view().terminal.opened()}
- aria-controls="terminal-panel"
- >
- <div class="relative flex items-center justify-center size-4 [&>*]:absolute [&>*]:inset-0">
- <Icon
- size="small"
- name={view().terminal.opened() ? "layout-bottom-full" : "layout-bottom"}
- class="group-hover/terminal-toggle:hidden"
- />
- <Icon
- size="small"
- name="layout-bottom-partial"
- class="hidden group-hover/terminal-toggle:inline-block"
- />
- <Icon
- size="small"
- name={view().terminal.opened() ? "layout-bottom" : "layout-bottom-full"}
- class="hidden group-active/terminal-toggle:inline-block"
- />
- </div>
- </Button>
- </TooltipKeybind>
- </div>
- <div class="hidden md:block shrink-0">
- <TooltipKeybind title={language.t("command.review.toggle")} keybind={command.keybind("review.toggle")}>
- <Button
- variant="ghost"
- class="group/review-toggle size-6 p-0"
- onClick={() => view().reviewPanel.toggle()}
- aria-label={language.t("command.review.toggle")}
- aria-expanded={view().reviewPanel.opened()}
- aria-controls="review-panel"
- >
- <div class="relative flex items-center justify-center size-4 [&>*]:absolute [&>*]:inset-0">
- <Icon
- size="small"
- name={view().reviewPanel.opened() ? "layout-right-full" : "layout-right"}
- class="group-hover/review-toggle:hidden"
- />
- <Icon
- size="small"
- name="layout-right-partial"
- class="hidden group-hover/review-toggle:inline-block"
- />
- <Icon
- size="small"
- name={view().reviewPanel.opened() ? "layout-right" : "layout-right-full"}
- class="hidden group-active/review-toggle:inline-block"
- />
- </div>
- </Button>
- </TooltipKeybind>
- </div>
- <div class="hidden md:block shrink-0">
- <TooltipKeybind
- title={language.t("command.fileTree.toggle")}
- keybind={command.keybind("fileTree.toggle")}
- >
- <Button
- variant="ghost"
- class="group/file-tree-toggle size-6 p-0"
- onClick={() => layout.fileTree.toggle()}
- aria-label={language.t("command.fileTree.toggle")}
- aria-expanded={layout.fileTree.opened()}
- aria-controls="file-tree-panel"
- >
- <div class="relative flex items-center justify-center size-4">
- <Icon
- size="small"
- name="bullet-list"
- classList={{
- "text-icon-strong": layout.fileTree.opened(),
- "text-icon-weak": !layout.fileTree.opened(),
- }}
- />
- </div>
- </Button>
- </TooltipKeybind>
- </div>
- </div>
- </Portal>
- )}
- </Show>
- </>
- )
- }
|