File size: 1,080 Bytes
39e315a | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 | import { c as _c } from "react-compiler-runtime";
import * as React from 'react';
import { useContext } from 'react';
/**
* Context to indicate that shell output should be shown in full (not truncated).
* Used to auto-expand the most recent user `!` command output.
*
* This follows the same pattern as MessageResponseContext and SubAgentContext -
* a boolean context that child components can check to modify their behavior.
*/
const ExpandShellOutputContext = React.createContext(false);
export function ExpandShellOutputProvider(t0) {
const $ = _c(2);
const {
children
} = t0;
let t1;
if ($[0] !== children) {
t1 = <ExpandShellOutputContext.Provider value={true}>{children}</ExpandShellOutputContext.Provider>;
$[0] = children;
$[1] = t1;
} else {
t1 = $[1];
}
return t1;
}
/**
* Returns true if this component is rendered inside an ExpandShellOutputProvider,
* indicating the shell output should be shown in full rather than truncated.
*/
export function useExpandShellOutput() {
return useContext(ExpandShellOutputContext);
}
|