| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- import { useCallback } from "react"
- import { useTranslation, Trans } from "react-i18next"
- import { VSCodeLink } from "@vscode/webview-ui-toolkit/react"
- import { buildDocLink } from "../../utils/docLinks"
- export const CommandExecutionError = () => {
- const { t } = useTranslation()
- const onClick = useCallback((e: React.MouseEvent<HTMLAnchorElement>) => {
- e.preventDefault()
- window.postMessage({ type: "action", action: "settingsButtonClicked", values: { section: "terminal" } }, "*")
- }, [])
- return (
- <div className="text-sm bg-vscode-editor-background border border-vscode-border rounded-lg p-3 ml-6">
- <div className="flex flex-col gap-2">
- <div className="flex items-center">
- <i className="codicon codicon-warning mr-1 text-vscode-editorWarning-foreground" />
- <span className="text-vscode-editorWarning-foreground font-semibold">
- {t("chat:shellIntegration.title")}
- </span>
- </div>
- <div>
- <Trans
- i18nKey="chat:shellIntegration.description"
- components={{
- settingsLink: <VSCodeLink href="#" onClick={onClick} className="inline" />,
- }}
- />
- </div>
- <a
- href={buildDocLink("troubleshooting/shell-integration/", "error_tooltip")}
- className="underline"
- style={{ color: "inherit" }}>
- {t("chat:shellIntegration.troubleshooting")}
- </a>
- </div>
- </div>
- )
- }
|