mirror of
https://github.com/anomalyco/opencode.git
synced 2026-07-24 12:15:51 -04:00
33 lines
871 B
TypeScript
33 lines
871 B
TypeScript
/** @jsxImportSource @opentui/solid */
|
|
import {
|
|
TuiPathsProvider,
|
|
TuiStartupProvider,
|
|
TuiTerminalEnvironmentProvider,
|
|
type TuiPaths,
|
|
} from "../../src/context/runtime"
|
|
import type { ParentProps } from "solid-js"
|
|
|
|
export function TestTuiContexts(
|
|
props: ParentProps<{
|
|
cwd?: string
|
|
directory?: string
|
|
paths?: Partial<TuiPaths>
|
|
}>,
|
|
) {
|
|
return (
|
|
<TuiPathsProvider
|
|
value={{
|
|
cwd: props.cwd ?? props.directory ?? "/tmp/opencode/packages/tui",
|
|
home: "/tmp/opencode/home",
|
|
state: "/tmp/opencode/state",
|
|
worktree: "/tmp/opencode",
|
|
...props.paths,
|
|
}}
|
|
>
|
|
<TuiTerminalEnvironmentProvider value={{ platform: "linux" }}>
|
|
<TuiStartupProvider value={{ skipInitialLoading: false }}>{props.children}</TuiStartupProvider>
|
|
</TuiTerminalEnvironmentProvider>
|
|
</TuiPathsProvider>
|
|
)
|
|
}
|