@julianpedro/plugin-dev-ai-hub 0.2.0 → 0.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/api/DevAiHubClient.esm.js +15 -2
- package/dist/api/DevAiHubClient.esm.js.map +1 -1
- package/dist/components/AdminPage/AdminPage.esm.js +106 -0
- package/dist/components/AdminPage/AdminPage.esm.js.map +1 -0
- package/dist/components/AdminPage/index.esm.js +6 -0
- package/dist/components/AdminPage/index.esm.js.map +1 -0
- package/dist/components/AssetCard/AssetCard.esm.js +117 -26
- package/dist/components/AssetCard/AssetCard.esm.js.map +1 -1
- package/dist/components/AssetDetailPanel/AssetDetailPanel.esm.js +271 -87
- package/dist/components/AssetDetailPanel/AssetDetailPanel.esm.js.map +1 -1
- package/dist/components/AssetFilters/AssetFilters.esm.js +105 -44
- package/dist/components/AssetFilters/AssetFilters.esm.js.map +1 -1
- package/dist/components/AssetHelpDialog/AssetHelpDialog.esm.js +87 -0
- package/dist/components/AssetHelpDialog/AssetHelpDialog.esm.js.map +1 -0
- package/dist/components/AssetInstallDialog/AssetInstallDialog.esm.js +328 -108
- package/dist/components/AssetInstallDialog/AssetInstallDialog.esm.js.map +1 -1
- package/dist/components/AssetsTab/AssetsTab.esm.js +221 -0
- package/dist/components/AssetsTab/AssetsTab.esm.js.map +1 -0
- package/dist/components/AssetsTab/index.esm.js +6 -0
- package/dist/components/AssetsTab/index.esm.js.map +1 -0
- package/dist/components/DevAiHubPage/DevAiHubPage.esm.js +266 -134
- package/dist/components/DevAiHubPage/DevAiHubPage.esm.js.map +1 -1
- package/dist/components/McpConfigDialog/McpConfigDialog.esm.js +20 -297
- package/dist/components/McpConfigDialog/McpConfigDialog.esm.js.map +1 -1
- package/dist/components/McpPage/McpPage.esm.js +478 -0
- package/dist/components/McpPage/McpPage.esm.js.map +1 -0
- package/dist/components/McpPage/index.esm.js +6 -0
- package/dist/components/McpPage/index.esm.js.map +1 -0
- package/dist/components/ModelIcon/ModelBadge.esm.js +73 -0
- package/dist/components/ModelIcon/ModelBadge.esm.js.map +1 -0
- package/dist/components/ModelIcon/ModelIcon.esm.js +45 -0
- package/dist/components/ModelIcon/ModelIcon.esm.js.map +1 -0
- package/dist/components/ToolIcon/ToolIcon.esm.js +4 -1
- package/dist/components/ToolIcon/ToolIcon.esm.js.map +1 -1
- package/dist/context/UiConfigContext.esm.js +79 -0
- package/dist/context/UiConfigContext.esm.js.map +1 -0
- package/dist/hooks/index.esm.js +36 -1
- package/dist/hooks/index.esm.js.map +1 -1
- package/dist/index.d.ts +146 -23
- package/dist/index.esm.js +1 -0
- package/dist/index.esm.js.map +1 -1
- package/dist/locales/es.esm.js +121 -0
- package/dist/locales/es.esm.js.map +1 -0
- package/dist/locales/pt-BR.esm.js +121 -0
- package/dist/locales/pt-BR.esm.js.map +1 -0
- package/dist/plugin.esm.js +35 -6
- package/dist/plugin.esm.js.map +1 -1
- package/dist/translation.esm.js +151 -0
- package/dist/translation.esm.js.map +1 -0
- package/package.json +15 -5
|
@@ -0,0 +1,478 @@
|
|
|
1
|
+
import { jsxs, Fragment, jsx } from 'react/jsx-runtime';
|
|
2
|
+
import { useState, useMemo, useEffect } from 'react';
|
|
3
|
+
import Box from '@mui/material/Box';
|
|
4
|
+
import Button from '@mui/material/Button';
|
|
5
|
+
import Card from '@mui/material/Card';
|
|
6
|
+
import CardActions from '@mui/material/CardActions';
|
|
7
|
+
import CardContent from '@mui/material/CardContent';
|
|
8
|
+
import Chip from '@mui/material/Chip';
|
|
9
|
+
import Collapse from '@mui/material/Collapse';
|
|
10
|
+
import Divider from '@mui/material/Divider';
|
|
11
|
+
import FormControlLabel from '@mui/material/FormControlLabel';
|
|
12
|
+
import Grid from '@mui/material/Grid';
|
|
13
|
+
import IconButton from '@mui/material/IconButton';
|
|
14
|
+
import Switch from '@mui/material/Switch';
|
|
15
|
+
import Tab from '@mui/material/Tab';
|
|
16
|
+
import Tabs from '@mui/material/Tabs';
|
|
17
|
+
import Tooltip from '@mui/material/Tooltip';
|
|
18
|
+
import Typography from '@mui/material/Typography';
|
|
19
|
+
import { useTheme, alpha } from '@mui/material/styles';
|
|
20
|
+
import AppsIcon from '@mui/icons-material/Apps';
|
|
21
|
+
import CheckIcon from '@mui/icons-material/Check';
|
|
22
|
+
import ContentCopyIcon from '@mui/icons-material/ContentCopy';
|
|
23
|
+
import ExpandMoreIcon from '@mui/icons-material/ExpandMore';
|
|
24
|
+
import OpenInBrowserIcon from '@mui/icons-material/OpenInBrowser';
|
|
25
|
+
import StorageIcon from '@mui/icons-material/Storage';
|
|
26
|
+
import TuneIcon from '@mui/icons-material/Tune';
|
|
27
|
+
import { Content } from '@backstage/core-components';
|
|
28
|
+
import { useApi, discoveryApiRef } from '@backstage/core-plugin-api';
|
|
29
|
+
import { useTranslationRef } from '@backstage/frontend-plugin-api';
|
|
30
|
+
import { devAiHubTranslationRef } from '../../translation.esm.js';
|
|
31
|
+
import { ToolIcon } from '../ToolIcon/ToolIcon.esm.js';
|
|
32
|
+
import { useCopyToClipboard, useProviders, useMcpCatalog } from '../../hooks/index.esm.js';
|
|
33
|
+
|
|
34
|
+
const TYPE_ACCENT = {
|
|
35
|
+
http: "#2563EB",
|
|
36
|
+
stdio: "#059669"
|
|
37
|
+
};
|
|
38
|
+
function providerLabel(target) {
|
|
39
|
+
return target.split("/").pop()?.replace(/\.git$/, "") ?? target;
|
|
40
|
+
}
|
|
41
|
+
function CatalogEntryCard({ entry }) {
|
|
42
|
+
const { t } = useTranslationRef(devAiHubTranslationRef);
|
|
43
|
+
const accent = TYPE_ACCENT[entry.type] ?? "#64748b";
|
|
44
|
+
const handleInstallVscode = () => {
|
|
45
|
+
const config = { name: entry.id, type: entry.type };
|
|
46
|
+
if (entry.type === "http") config.url = entry.url;
|
|
47
|
+
if (entry.type === "stdio") {
|
|
48
|
+
config.command = entry.command;
|
|
49
|
+
if (entry.args?.length) config.args = entry.args;
|
|
50
|
+
if (entry.env && Object.keys(entry.env).length) config.env = entry.env;
|
|
51
|
+
}
|
|
52
|
+
window.location.href = `vscode:mcp/install?${encodeURIComponent(JSON.stringify(config))}`;
|
|
53
|
+
};
|
|
54
|
+
const handleInstallCursor = () => {
|
|
55
|
+
const config = { type: entry.type };
|
|
56
|
+
if (entry.type === "http") config.url = entry.url;
|
|
57
|
+
if (entry.type === "stdio") {
|
|
58
|
+
config.command = entry.command;
|
|
59
|
+
if (entry.args?.length) config.args = entry.args;
|
|
60
|
+
if (entry.env && Object.keys(entry.env).length) config.env = entry.env;
|
|
61
|
+
}
|
|
62
|
+
window.location.href = `cursor://anysphere.cursor-deeplink/mcp/install?name=${encodeURIComponent(entry.name)}&config=${btoa(JSON.stringify(config))}`;
|
|
63
|
+
};
|
|
64
|
+
const canInstall = entry.type === "http" && !!entry.url || entry.type === "stdio" && !!entry.command;
|
|
65
|
+
return /* @__PURE__ */ jsxs(
|
|
66
|
+
Card,
|
|
67
|
+
{
|
|
68
|
+
variant: "outlined",
|
|
69
|
+
sx: {
|
|
70
|
+
height: "100%",
|
|
71
|
+
display: "flex",
|
|
72
|
+
flexDirection: "column",
|
|
73
|
+
borderRadius: 2,
|
|
74
|
+
border: "1px solid",
|
|
75
|
+
borderColor: "divider",
|
|
76
|
+
borderLeft: `3px solid ${accent}`,
|
|
77
|
+
transition: "all 0.18s ease",
|
|
78
|
+
"&:hover": {
|
|
79
|
+
boxShadow: `0 6px 24px ${accent}30`,
|
|
80
|
+
borderColor: accent,
|
|
81
|
+
transform: "translateY(-2px)"
|
|
82
|
+
}
|
|
83
|
+
},
|
|
84
|
+
children: [
|
|
85
|
+
/* @__PURE__ */ jsxs(CardContent, { sx: { p: 1.5, pb: "0 !important", flex: 1 }, children: [
|
|
86
|
+
/* @__PURE__ */ jsxs(Box, { sx: { display: "flex", alignItems: "flex-start", gap: 1, mb: 1 }, children: [
|
|
87
|
+
/* @__PURE__ */ jsx(
|
|
88
|
+
Box,
|
|
89
|
+
{
|
|
90
|
+
sx: {
|
|
91
|
+
width: 40,
|
|
92
|
+
height: 40,
|
|
93
|
+
borderRadius: 1.5,
|
|
94
|
+
backgroundColor: alpha(accent, 0.12),
|
|
95
|
+
display: "flex",
|
|
96
|
+
alignItems: "center",
|
|
97
|
+
justifyContent: "center",
|
|
98
|
+
flexShrink: 0,
|
|
99
|
+
boxShadow: `0 2px 8px ${accent}25`
|
|
100
|
+
},
|
|
101
|
+
children: entry.icon ? /* @__PURE__ */ jsx(
|
|
102
|
+
Box,
|
|
103
|
+
{
|
|
104
|
+
component: "img",
|
|
105
|
+
src: entry.icon,
|
|
106
|
+
alt: entry.name,
|
|
107
|
+
sx: { width: 26, height: 26, objectFit: "contain" },
|
|
108
|
+
onError: (e) => {
|
|
109
|
+
e.target.style.display = "none";
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
) : /* @__PURE__ */ jsx(StorageIcon, { sx: { color: accent, fontSize: "1.3rem" } })
|
|
113
|
+
}
|
|
114
|
+
),
|
|
115
|
+
/* @__PURE__ */ jsxs(Box, { sx: { flex: 1, minWidth: 0 }, children: [
|
|
116
|
+
/* @__PURE__ */ jsxs(Box, { sx: { display: "flex", alignItems: "center", gap: 0.5, mb: 0.2 }, children: [
|
|
117
|
+
/* @__PURE__ */ jsx(Typography, { variant: "body2", fontWeight: 700, noWrap: true, title: entry.name, sx: { lineHeight: 1.2, flex: 1 }, children: entry.name }),
|
|
118
|
+
/* @__PURE__ */ jsx(
|
|
119
|
+
Chip,
|
|
120
|
+
{
|
|
121
|
+
label: entry.type,
|
|
122
|
+
size: "small",
|
|
123
|
+
sx: {
|
|
124
|
+
height: 18,
|
|
125
|
+
fontSize: "0.6rem",
|
|
126
|
+
fontFamily: "monospace",
|
|
127
|
+
fontWeight: 700,
|
|
128
|
+
bgcolor: accent,
|
|
129
|
+
color: "#fff",
|
|
130
|
+
flexShrink: 0,
|
|
131
|
+
"& .MuiChip-label": { px: "6px" }
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
)
|
|
135
|
+
] }),
|
|
136
|
+
/* @__PURE__ */ jsx(Typography, { variant: "caption", sx: { color: accent, fontWeight: 600 }, children: entry.type === "http" ? "HTTP" : "Stdio" })
|
|
137
|
+
] })
|
|
138
|
+
] }),
|
|
139
|
+
entry.description && /* @__PURE__ */ jsx(
|
|
140
|
+
Typography,
|
|
141
|
+
{
|
|
142
|
+
variant: "caption",
|
|
143
|
+
color: "text.secondary",
|
|
144
|
+
title: entry.description,
|
|
145
|
+
sx: {
|
|
146
|
+
mb: 0.75,
|
|
147
|
+
display: "-webkit-box",
|
|
148
|
+
WebkitLineClamp: 2,
|
|
149
|
+
WebkitBoxOrient: "vertical",
|
|
150
|
+
overflow: "hidden",
|
|
151
|
+
lineHeight: 1.4
|
|
152
|
+
},
|
|
153
|
+
children: entry.description
|
|
154
|
+
}
|
|
155
|
+
),
|
|
156
|
+
entry.type === "http" && entry.url && /* @__PURE__ */ jsx(Typography, { variant: "caption", sx: { display: "block", fontFamily: "monospace", fontSize: "0.65rem", color: "text.disabled", wordBreak: "break-all" }, children: entry.url }),
|
|
157
|
+
entry.type === "stdio" && entry.command && /* @__PURE__ */ jsx(Typography, { variant: "caption", sx: { display: "block", fontFamily: "monospace", fontSize: "0.65rem", color: "text.disabled" }, children: [entry.command, ...entry.args ?? []].join(" ") })
|
|
158
|
+
] }),
|
|
159
|
+
canInstall && /* @__PURE__ */ jsxs(CardActions, { sx: { px: 1.5, py: 1, mt: "auto", borderTop: "1px solid", borderColor: "divider", gap: 0.75 }, children: [
|
|
160
|
+
/* @__PURE__ */ jsx(
|
|
161
|
+
Button,
|
|
162
|
+
{
|
|
163
|
+
size: "small",
|
|
164
|
+
variant: "outlined",
|
|
165
|
+
fullWidth: true,
|
|
166
|
+
startIcon: /* @__PURE__ */ jsx(OpenInBrowserIcon, { sx: { fontSize: "0.85rem !important" } }),
|
|
167
|
+
onClick: handleInstallVscode,
|
|
168
|
+
sx: { fontSize: "0.72rem", fontWeight: 700, py: 0.5, borderColor: accent, color: accent, "&:hover": { borderColor: accent, bgcolor: alpha(accent, 0.08) } },
|
|
169
|
+
children: t("mcpConfigDialog.installInVscode")
|
|
170
|
+
}
|
|
171
|
+
),
|
|
172
|
+
/* @__PURE__ */ jsx(
|
|
173
|
+
Button,
|
|
174
|
+
{
|
|
175
|
+
size: "small",
|
|
176
|
+
variant: "outlined",
|
|
177
|
+
fullWidth: true,
|
|
178
|
+
startIcon: /* @__PURE__ */ jsx(ToolIcon, { tool: "cursor", branded: false, sx: { fontSize: "0.85rem !important", color: `${accent} !important` } }),
|
|
179
|
+
onClick: handleInstallCursor,
|
|
180
|
+
sx: { fontSize: "0.72rem", fontWeight: 700, py: 0.5, borderColor: accent, color: accent, "&:hover": { borderColor: accent, bgcolor: alpha(accent, 0.08) } },
|
|
181
|
+
children: t("mcpConfigDialog.installInCursor")
|
|
182
|
+
}
|
|
183
|
+
)
|
|
184
|
+
] })
|
|
185
|
+
]
|
|
186
|
+
}
|
|
187
|
+
);
|
|
188
|
+
}
|
|
189
|
+
function McpPage({ embedded = false }) {
|
|
190
|
+
const theme = useTheme();
|
|
191
|
+
const { t } = useTranslationRef(devAiHubTranslationRef);
|
|
192
|
+
const discoveryApi = useApi(discoveryApiRef);
|
|
193
|
+
const { copy: copyUrl, copied: copiedUrl } = useCopyToClipboard();
|
|
194
|
+
const { copy: copySnippet, copied: copiedSnippet } = useCopyToClipboard();
|
|
195
|
+
const [tab, setTab] = useState(0);
|
|
196
|
+
const [baseUrl, setBaseUrl] = useState("");
|
|
197
|
+
const [selectedProvider, setSelectedProvider] = useState("");
|
|
198
|
+
const [proactiveEnabled, setProactiveEnabled] = useState(false);
|
|
199
|
+
const [toolConfigExpanded, setToolConfigExpanded] = useState(false);
|
|
200
|
+
const [manualExpanded, setManualExpanded] = useState(false);
|
|
201
|
+
const { providers } = useProviders();
|
|
202
|
+
const { catalog } = useMcpCatalog();
|
|
203
|
+
const showProviderFilter = providers.length > 1;
|
|
204
|
+
const toolConfigs = useMemo(() => [
|
|
205
|
+
{
|
|
206
|
+
tool: "claude-code",
|
|
207
|
+
label: "Claude Code",
|
|
208
|
+
file: ".mcp.json",
|
|
209
|
+
description: t("mcpConfigDialog.claudeConfigDesc"),
|
|
210
|
+
buildConfig: (url) => JSON.stringify({ mcpServers: { "dev-ai-hub": { type: "http", url } } }, null, 2)
|
|
211
|
+
},
|
|
212
|
+
{
|
|
213
|
+
tool: "github-copilot",
|
|
214
|
+
label: "GitHub Copilot",
|
|
215
|
+
file: ".vscode/settings.json",
|
|
216
|
+
description: t("mcpConfigDialog.copilotConfigDesc"),
|
|
217
|
+
buildConfig: (url) => JSON.stringify({ "github.copilot.chat.mcp.servers": { "dev-ai-hub": { type: "http", url } } }, null, 2)
|
|
218
|
+
},
|
|
219
|
+
{
|
|
220
|
+
tool: "google-gemini",
|
|
221
|
+
label: "Google Gemini",
|
|
222
|
+
file: "gemini-config.json",
|
|
223
|
+
description: t("mcpConfigDialog.geminiConfigDesc"),
|
|
224
|
+
buildConfig: (url) => JSON.stringify({ mcpServers: { "dev-ai-hub": { url } } }, null, 2)
|
|
225
|
+
},
|
|
226
|
+
{
|
|
227
|
+
tool: "cursor",
|
|
228
|
+
label: "Cursor",
|
|
229
|
+
file: ".cursor/mcp.json",
|
|
230
|
+
description: t("mcpConfigDialog.cursorConfigDesc"),
|
|
231
|
+
buildConfig: (url) => JSON.stringify({ mcpServers: { "dev-ai-hub": { type: "http", url } } }, null, 2)
|
|
232
|
+
}
|
|
233
|
+
], [t]);
|
|
234
|
+
useEffect(() => {
|
|
235
|
+
discoveryApi.getBaseUrl("dev-ai-hub").then((url) => setBaseUrl(url));
|
|
236
|
+
}, [discoveryApi]);
|
|
237
|
+
const cfg = toolConfigs[tab] ?? toolConfigs[0];
|
|
238
|
+
const buildMcpUrl = () => {
|
|
239
|
+
if (!baseUrl) return "loading...";
|
|
240
|
+
const params = new URLSearchParams();
|
|
241
|
+
params.set("tool", cfg.tool);
|
|
242
|
+
if (selectedProvider) params.set("provider", selectedProvider);
|
|
243
|
+
if (proactiveEnabled) params.set("proactive", "true");
|
|
244
|
+
return `${baseUrl}/mcp?${params.toString()}`;
|
|
245
|
+
};
|
|
246
|
+
const mcpUrl = buildMcpUrl();
|
|
247
|
+
const configSnippet = baseUrl ? cfg.buildConfig(mcpUrl) : "";
|
|
248
|
+
const handleInstallInVscode = () => {
|
|
249
|
+
if (!baseUrl) return;
|
|
250
|
+
const config = JSON.stringify({ name: "dev-ai-hub", type: "http", url: mcpUrl });
|
|
251
|
+
window.location.href = `vscode:mcp/install?${encodeURIComponent(config)}`;
|
|
252
|
+
};
|
|
253
|
+
const handleInstallInCursor = () => {
|
|
254
|
+
if (!baseUrl) return;
|
|
255
|
+
const config = btoa(JSON.stringify({ type: "http", url: mcpUrl }));
|
|
256
|
+
window.location.href = `cursor://anysphere.cursor-deeplink/mcp/install?name=dev-ai-hub&config=${config}`;
|
|
257
|
+
};
|
|
258
|
+
const showVscodeButton = cfg.tool === "github-copilot";
|
|
259
|
+
const showCursorButton = cfg.tool === "cursor";
|
|
260
|
+
const body = /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
261
|
+
/* @__PURE__ */ jsxs(Box, { sx: { mb: 3 }, children: [
|
|
262
|
+
/* @__PURE__ */ jsxs(Box, { sx: { display: "flex", alignItems: "center", gap: 0.75, mb: 1 }, children: [
|
|
263
|
+
/* @__PURE__ */ jsx(AppsIcon, { sx: { fontSize: "0.95rem", color: "text.secondary" } }),
|
|
264
|
+
/* @__PURE__ */ jsx(Typography, { variant: "caption", fontWeight: 700, color: "text.secondary", sx: { textTransform: "uppercase", letterSpacing: 0.8, flex: 1 }, children: t("mcpConfigDialog.catalogTab") }),
|
|
265
|
+
catalog.length > 0 && /* @__PURE__ */ jsx(
|
|
266
|
+
Chip,
|
|
267
|
+
{
|
|
268
|
+
label: catalog.length,
|
|
269
|
+
size: "small",
|
|
270
|
+
sx: { height: 18, fontSize: "0.65rem", fontWeight: 700, bgcolor: "action.selected", color: "text.secondary", border: "1px solid", borderColor: "divider" }
|
|
271
|
+
}
|
|
272
|
+
)
|
|
273
|
+
] }),
|
|
274
|
+
/* @__PURE__ */ jsx(Typography, { variant: "body2", color: "text.secondary", sx: { mb: 1.5, fontSize: "0.8rem" }, children: t("mcpConfigDialog.catalogDescription") }),
|
|
275
|
+
catalog.length === 0 ? /* @__PURE__ */ jsxs(Box, { sx: { border: "1px dashed", borderColor: "divider", borderRadius: 2, p: 3, textAlign: "center" }, children: [
|
|
276
|
+
/* @__PURE__ */ jsx(AppsIcon, { sx: { fontSize: "2rem", color: "text.disabled", mb: 1 } }),
|
|
277
|
+
/* @__PURE__ */ jsx(Typography, { variant: "body2", color: "text.secondary", children: t("mcpConfigDialog.catalogEmpty") }),
|
|
278
|
+
/* @__PURE__ */ jsx(Typography, { variant: "caption", color: "text.disabled", children: t("mcpConfigDialog.catalogAddHint") })
|
|
279
|
+
] }) : /* @__PURE__ */ jsx(Grid, { container: true, spacing: 1.5, children: catalog.map((entry) => /* @__PURE__ */ jsx(Grid, { item: true, xs: 12, sm: 6, md: 4, children: /* @__PURE__ */ jsx(CatalogEntryCard, { entry }) }, entry.id)) })
|
|
280
|
+
] }),
|
|
281
|
+
/* @__PURE__ */ jsx(Divider, { sx: { mb: 0 } }),
|
|
282
|
+
/* @__PURE__ */ jsxs(Box, { children: [
|
|
283
|
+
/* @__PURE__ */ jsxs(
|
|
284
|
+
Box,
|
|
285
|
+
{
|
|
286
|
+
onClick: () => setToolConfigExpanded((v) => !v),
|
|
287
|
+
sx: { display: "flex", alignItems: "center", gap: 0.75, cursor: "pointer", userSelect: "none", py: 1.25, "&:hover": { opacity: 0.8 } },
|
|
288
|
+
children: [
|
|
289
|
+
/* @__PURE__ */ jsx(TuneIcon, { sx: { fontSize: "0.95rem", color: "text.secondary" } }),
|
|
290
|
+
/* @__PURE__ */ jsx(Typography, { variant: "caption", fontWeight: 700, color: "text.secondary", sx: { textTransform: "uppercase", letterSpacing: 0.8, flex: 1 }, children: t("mcpConfigDialog.toolConfigSection") }),
|
|
291
|
+
/* @__PURE__ */ jsx(
|
|
292
|
+
ExpandMoreIcon,
|
|
293
|
+
{
|
|
294
|
+
fontSize: "small",
|
|
295
|
+
sx: { color: "text.disabled", transition: "transform 0.2s ease", transform: toolConfigExpanded ? "rotate(180deg)" : "rotate(0deg)" }
|
|
296
|
+
}
|
|
297
|
+
)
|
|
298
|
+
]
|
|
299
|
+
}
|
|
300
|
+
),
|
|
301
|
+
/* @__PURE__ */ jsxs(Collapse, { in: toolConfigExpanded, mountOnEnter: true, unmountOnExit: true, children: [
|
|
302
|
+
/* @__PURE__ */ jsx(Tabs, { value: tab, onChange: (_, v) => setTab(v), sx: { mb: 2, borderBottom: 1, borderColor: "divider" }, children: toolConfigs.map((toolCfg, i) => /* @__PURE__ */ jsx(
|
|
303
|
+
Tab,
|
|
304
|
+
{
|
|
305
|
+
value: i,
|
|
306
|
+
sx: { color: "text.secondary", minHeight: 40, "&.Mui-selected": { color: "primary.main" }, "&:hover": { backgroundColor: "transparent", color: "text.primary" }, "&.Mui-selected:hover": { backgroundColor: "transparent" } },
|
|
307
|
+
label: /* @__PURE__ */ jsxs(Box, { sx: { display: "flex", alignItems: "center", gap: 0.75 }, children: [
|
|
308
|
+
/* @__PURE__ */ jsx(ToolIcon, { tool: toolCfg.tool, branded: false, sx: { fontSize: "1rem" } }),
|
|
309
|
+
/* @__PURE__ */ jsx("span", { children: toolCfg.label })
|
|
310
|
+
] })
|
|
311
|
+
},
|
|
312
|
+
toolCfg.tool
|
|
313
|
+
)) }),
|
|
314
|
+
showProviderFilter && /* @__PURE__ */ jsxs(Box, { sx: { mb: 2 }, children: [
|
|
315
|
+
/* @__PURE__ */ jsx(Typography, { variant: "caption", fontWeight: 600, color: "text.secondary", sx: { textTransform: "uppercase", letterSpacing: 0.5, display: "block", mb: 0.75 }, children: t("mcpConfigDialog.scopeToProvider") }),
|
|
316
|
+
/* @__PURE__ */ jsxs(Box, { sx: { display: "flex", gap: 0.75, flexWrap: "wrap" }, children: [
|
|
317
|
+
/* @__PURE__ */ jsx(
|
|
318
|
+
Chip,
|
|
319
|
+
{
|
|
320
|
+
label: t("mcpConfigDialog.allProviders"),
|
|
321
|
+
size: "small",
|
|
322
|
+
clickable: true,
|
|
323
|
+
onClick: () => setSelectedProvider(""),
|
|
324
|
+
sx: {
|
|
325
|
+
fontWeight: 600,
|
|
326
|
+
fontSize: "0.75rem",
|
|
327
|
+
borderRadius: 2,
|
|
328
|
+
border: "1.5px solid",
|
|
329
|
+
borderColor: !selectedProvider ? "text.primary" : "divider",
|
|
330
|
+
backgroundColor: !selectedProvider ? "text.primary" : "transparent",
|
|
331
|
+
color: !selectedProvider ? "background.paper" : "text.secondary",
|
|
332
|
+
transition: "all 0.15s ease"
|
|
333
|
+
}
|
|
334
|
+
}
|
|
335
|
+
),
|
|
336
|
+
providers.map((p) => {
|
|
337
|
+
const isSelected = selectedProvider === p.id;
|
|
338
|
+
return /* @__PURE__ */ jsx(
|
|
339
|
+
Chip,
|
|
340
|
+
{
|
|
341
|
+
size: "small",
|
|
342
|
+
clickable: true,
|
|
343
|
+
icon: /* @__PURE__ */ jsx(StorageIcon, { sx: { fontSize: "0.8rem !important", color: isSelected ? "background.paper" : "inherit" } }),
|
|
344
|
+
label: providerLabel(p.target),
|
|
345
|
+
onClick: () => setSelectedProvider(isSelected ? "" : p.id),
|
|
346
|
+
sx: {
|
|
347
|
+
fontWeight: 600,
|
|
348
|
+
fontSize: "0.75rem",
|
|
349
|
+
borderRadius: 2,
|
|
350
|
+
border: "1.5px solid",
|
|
351
|
+
borderColor: isSelected ? "text.primary" : "divider",
|
|
352
|
+
backgroundColor: isSelected ? "text.primary" : "transparent",
|
|
353
|
+
color: isSelected ? "background.paper" : "text.secondary",
|
|
354
|
+
transition: "all 0.15s ease"
|
|
355
|
+
}
|
|
356
|
+
},
|
|
357
|
+
p.id
|
|
358
|
+
);
|
|
359
|
+
})
|
|
360
|
+
] })
|
|
361
|
+
] }),
|
|
362
|
+
/* @__PURE__ */ jsx(Box, { sx: { mb: 2 }, children: /* @__PURE__ */ jsx(
|
|
363
|
+
FormControlLabel,
|
|
364
|
+
{
|
|
365
|
+
control: /* @__PURE__ */ jsx(Switch, { size: "small", checked: proactiveEnabled, onChange: (e) => setProactiveEnabled(e.target.checked) }),
|
|
366
|
+
label: /* @__PURE__ */ jsxs(Box, { children: [
|
|
367
|
+
/* @__PURE__ */ jsx(Typography, { variant: "body2", fontWeight: 600, children: t("mcpConfigDialog.proactiveSuggestions") }),
|
|
368
|
+
/* @__PURE__ */ jsx(Typography, { variant: "caption", color: "text.secondary", children: t("mcpConfigDialog.proactiveDescription") })
|
|
369
|
+
] }),
|
|
370
|
+
sx: { alignItems: "flex-start", ml: 0, gap: 1 }
|
|
371
|
+
}
|
|
372
|
+
) }),
|
|
373
|
+
/* @__PURE__ */ jsx(Typography, { variant: "caption", fontWeight: 600, color: "text.secondary", sx: { textTransform: "uppercase", letterSpacing: 0.5 }, children: t("mcpConfigDialog.mcpEndpoint") }),
|
|
374
|
+
/* @__PURE__ */ jsxs(
|
|
375
|
+
Box,
|
|
376
|
+
{
|
|
377
|
+
sx: {
|
|
378
|
+
display: "flex",
|
|
379
|
+
alignItems: "center",
|
|
380
|
+
gap: 1,
|
|
381
|
+
mt: 0.5,
|
|
382
|
+
mb: 1.5,
|
|
383
|
+
px: 1.5,
|
|
384
|
+
py: 1,
|
|
385
|
+
borderRadius: 1.5,
|
|
386
|
+
border: "1px solid",
|
|
387
|
+
borderColor: "divider",
|
|
388
|
+
backgroundColor: theme.palette.mode === "dark" ? "rgba(255,255,255,0.05)" : "rgba(0,0,0,0.03)"
|
|
389
|
+
},
|
|
390
|
+
children: [
|
|
391
|
+
/* @__PURE__ */ jsx(Typography, { variant: "body2", sx: { flex: 1, fontFamily: "monospace", fontSize: "0.8rem", wordBreak: "break-all" }, children: mcpUrl }),
|
|
392
|
+
/* @__PURE__ */ jsx(Tooltip, { title: copiedUrl ? t("assetInstallDialog.copied") : t("mcpConfigDialog.copyUrl"), children: /* @__PURE__ */ jsx(IconButton, { size: "small", onClick: () => copyUrl(mcpUrl), children: copiedUrl ? /* @__PURE__ */ jsx(CheckIcon, { fontSize: "small", color: "success" }) : /* @__PURE__ */ jsx(ContentCopyIcon, { fontSize: "small" }) }) })
|
|
393
|
+
]
|
|
394
|
+
}
|
|
395
|
+
),
|
|
396
|
+
showVscodeButton && /* @__PURE__ */ jsx(Button, { variant: "contained", startIcon: /* @__PURE__ */ jsx(OpenInBrowserIcon, {}), onClick: handleInstallInVscode, disabled: !baseUrl, fullWidth: true, sx: { mb: 2, fontSize: "0.8rem" }, children: t("mcpConfigDialog.installInVscode") }),
|
|
397
|
+
showCursorButton && /* @__PURE__ */ jsx(
|
|
398
|
+
Button,
|
|
399
|
+
{
|
|
400
|
+
variant: "contained",
|
|
401
|
+
fullWidth: true,
|
|
402
|
+
onClick: handleInstallInCursor,
|
|
403
|
+
disabled: !baseUrl,
|
|
404
|
+
startIcon: /* @__PURE__ */ jsx(ToolIcon, { tool: "cursor", branded: false, sx: { fontSize: "1rem !important" } }),
|
|
405
|
+
sx: { mb: 2, fontSize: "0.8rem" },
|
|
406
|
+
children: t("mcpConfigDialog.installInCursor")
|
|
407
|
+
}
|
|
408
|
+
),
|
|
409
|
+
/* @__PURE__ */ jsx(Divider, { sx: { mb: 1.5 } }),
|
|
410
|
+
/* @__PURE__ */ jsxs(
|
|
411
|
+
Box,
|
|
412
|
+
{
|
|
413
|
+
onClick: () => setManualExpanded((v) => !v),
|
|
414
|
+
sx: { display: "flex", alignItems: "center", justifyContent: "space-between", cursor: "pointer", userSelect: "none", py: 0.75 },
|
|
415
|
+
children: [
|
|
416
|
+
/* @__PURE__ */ jsx(Typography, { variant: "caption", fontWeight: 600, color: "text.secondary", sx: { textTransform: "uppercase", letterSpacing: 0.5 }, children: t("mcpConfigDialog.manualConfig", { file: cfg.file }) }),
|
|
417
|
+
/* @__PURE__ */ jsx(
|
|
418
|
+
ExpandMoreIcon,
|
|
419
|
+
{
|
|
420
|
+
fontSize: "small",
|
|
421
|
+
sx: { color: "text.disabled", transition: "transform 0.2s ease", transform: manualExpanded ? "rotate(180deg)" : "rotate(0deg)" }
|
|
422
|
+
}
|
|
423
|
+
)
|
|
424
|
+
]
|
|
425
|
+
}
|
|
426
|
+
),
|
|
427
|
+
/* @__PURE__ */ jsxs(Collapse, { in: manualExpanded, mountOnEnter: true, unmountOnExit: true, children: [
|
|
428
|
+
/* @__PURE__ */ jsx(Typography, { variant: "caption", color: "text.secondary", sx: { display: "block", mb: 1, mt: 0.5 }, children: cfg.description }),
|
|
429
|
+
/* @__PURE__ */ jsxs(Box, { sx: { position: "relative" }, children: [
|
|
430
|
+
/* @__PURE__ */ jsx(
|
|
431
|
+
Box,
|
|
432
|
+
{
|
|
433
|
+
component: "pre",
|
|
434
|
+
sx: {
|
|
435
|
+
m: 0,
|
|
436
|
+
p: 2,
|
|
437
|
+
borderRadius: 2,
|
|
438
|
+
border: "1px solid",
|
|
439
|
+
borderColor: "divider",
|
|
440
|
+
backgroundColor: theme.palette.mode === "dark" ? "#0d1117" : "#f6f8fa",
|
|
441
|
+
color: theme.palette.mode === "dark" ? "#e6edf3" : "#24292f",
|
|
442
|
+
fontFamily: "monospace",
|
|
443
|
+
fontSize: "0.8rem",
|
|
444
|
+
overflowX: "auto",
|
|
445
|
+
whiteSpace: "pre"
|
|
446
|
+
},
|
|
447
|
+
children: configSnippet
|
|
448
|
+
}
|
|
449
|
+
),
|
|
450
|
+
/* @__PURE__ */ jsx(Tooltip, { title: copiedSnippet ? t("assetInstallDialog.copied") : t("mcpConfigDialog.copyUrl"), children: /* @__PURE__ */ jsx(
|
|
451
|
+
IconButton,
|
|
452
|
+
{
|
|
453
|
+
size: "small",
|
|
454
|
+
onClick: (e) => {
|
|
455
|
+
e.stopPropagation();
|
|
456
|
+
copySnippet(configSnippet);
|
|
457
|
+
},
|
|
458
|
+
sx: {
|
|
459
|
+
position: "absolute",
|
|
460
|
+
top: 8,
|
|
461
|
+
right: 8,
|
|
462
|
+
backgroundColor: theme.palette.mode === "dark" ? "rgba(255,255,255,0.1)" : "rgba(0,0,0,0.06)",
|
|
463
|
+
"&:hover": { backgroundColor: theme.palette.mode === "dark" ? "rgba(255,255,255,0.2)" : "rgba(0,0,0,0.12)" }
|
|
464
|
+
},
|
|
465
|
+
children: copiedSnippet ? /* @__PURE__ */ jsx(CheckIcon, { fontSize: "small", color: "success" }) : /* @__PURE__ */ jsx(ContentCopyIcon, { fontSize: "small" })
|
|
466
|
+
}
|
|
467
|
+
) })
|
|
468
|
+
] }),
|
|
469
|
+
/* @__PURE__ */ jsx(Typography, { variant: "caption", color: "text.disabled", sx: { display: "block", mt: 1.5 }, children: t("mcpConfigDialog.omitToolHint") })
|
|
470
|
+
] })
|
|
471
|
+
] })
|
|
472
|
+
] })
|
|
473
|
+
] });
|
|
474
|
+
return embedded ? body : /* @__PURE__ */ jsx(Content, { children: body });
|
|
475
|
+
}
|
|
476
|
+
|
|
477
|
+
export { McpPage };
|
|
478
|
+
//# sourceMappingURL=McpPage.esm.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"McpPage.esm.js","sources":["../../../src/components/McpPage/McpPage.tsx"],"sourcesContent":["import { useEffect, useMemo, useState } from 'react';\nimport Box from '@mui/material/Box';\nimport Button from '@mui/material/Button';\nimport Card from '@mui/material/Card';\nimport CardActions from '@mui/material/CardActions';\nimport CardContent from '@mui/material/CardContent';\nimport Chip from '@mui/material/Chip';\nimport Collapse from '@mui/material/Collapse';\nimport Divider from '@mui/material/Divider';\nimport FormControlLabel from '@mui/material/FormControlLabel';\nimport Grid from '@mui/material/Grid';\nimport IconButton from '@mui/material/IconButton';\nimport Switch from '@mui/material/Switch';\nimport Tab from '@mui/material/Tab';\nimport Tabs from '@mui/material/Tabs';\nimport Tooltip from '@mui/material/Tooltip';\nimport Typography from '@mui/material/Typography';\nimport { alpha, useTheme } from '@mui/material/styles';\nimport AppsIcon from '@mui/icons-material/Apps';\nimport CheckIcon from '@mui/icons-material/Check';\nimport ContentCopyIcon from '@mui/icons-material/ContentCopy';\nimport ExpandMoreIcon from '@mui/icons-material/ExpandMore';\nimport OpenInBrowserIcon from '@mui/icons-material/OpenInBrowser';\nimport StorageIcon from '@mui/icons-material/Storage';\nimport TuneIcon from '@mui/icons-material/Tune';\nimport { Content } from '@backstage/core-components';\nimport { useApi, discoveryApiRef } from '@backstage/core-plugin-api';\nimport { useTranslationRef } from '@backstage/frontend-plugin-api';\nimport type { AiTool, McpCatalogEntry } from '@julianpedro/plugin-dev-ai-hub-common';\nimport { devAiHubTranslationRef } from '../../translation';\nimport { ToolIcon } from '../ToolIcon';\nimport { useCopyToClipboard, useMcpCatalog, useProviders } from '../../hooks';\n\ninterface ToolConfig {\n tool: AiTool;\n label: string;\n file: string;\n description: string;\n buildConfig: (mcpUrl: string) => string;\n}\n\nconst TYPE_ACCENT: Record<string, string> = {\n http: '#2563EB',\n stdio: '#059669',\n};\n\nfunction providerLabel(target: string): string {\n return target.split('/').pop()?.replace(/\\.git$/, '') ?? target;\n}\n\nfunction CatalogEntryCard({ entry }: { entry: McpCatalogEntry }) {\n const { t } = useTranslationRef(devAiHubTranslationRef);\n const accent = TYPE_ACCENT[entry.type] ?? '#64748b';\n\n const handleInstallVscode = () => {\n const config: Record<string, unknown> = { name: entry.id, type: entry.type };\n if (entry.type === 'http') config.url = entry.url;\n if (entry.type === 'stdio') {\n config.command = entry.command;\n if (entry.args?.length) config.args = entry.args;\n if (entry.env && Object.keys(entry.env).length) config.env = entry.env;\n }\n window.location.href = `vscode:mcp/install?${encodeURIComponent(JSON.stringify(config))}`;\n };\n\n const handleInstallCursor = () => {\n const config: Record<string, unknown> = { type: entry.type };\n if (entry.type === 'http') config.url = entry.url;\n if (entry.type === 'stdio') {\n config.command = entry.command;\n if (entry.args?.length) config.args = entry.args;\n if (entry.env && Object.keys(entry.env).length) config.env = entry.env;\n }\n window.location.href = `cursor://anysphere.cursor-deeplink/mcp/install?name=${encodeURIComponent(entry.name)}&config=${btoa(JSON.stringify(config))}`;\n };\n\n const canInstall =\n (entry.type === 'http' && !!entry.url) ||\n (entry.type === 'stdio' && !!entry.command);\n\n return (\n <Card\n variant=\"outlined\"\n sx={{\n height: '100%',\n display: 'flex',\n flexDirection: 'column',\n borderRadius: 2,\n border: '1px solid',\n borderColor: 'divider',\n borderLeft: `3px solid ${accent}`,\n transition: 'all 0.18s ease',\n '&:hover': {\n boxShadow: `0 6px 24px ${accent}30`,\n borderColor: accent,\n transform: 'translateY(-2px)',\n },\n }}\n >\n <CardContent sx={{ p: 1.5, pb: '0 !important', flex: 1 }}>\n <Box sx={{ display: 'flex', alignItems: 'flex-start', gap: 1, mb: 1 }}>\n <Box\n sx={{\n width: 40, height: 40, borderRadius: 1.5,\n backgroundColor: alpha(accent, 0.12),\n display: 'flex', alignItems: 'center', justifyContent: 'center',\n flexShrink: 0, boxShadow: `0 2px 8px ${accent}25`,\n }}\n >\n {entry.icon ? (\n <Box\n component=\"img\" src={entry.icon} alt={entry.name}\n sx={{ width: 26, height: 26, objectFit: 'contain' }}\n onError={e => { (e.target as HTMLImageElement).style.display = 'none'; }}\n />\n ) : (\n <StorageIcon sx={{ color: accent, fontSize: '1.3rem' }} />\n )}\n </Box>\n <Box sx={{ flex: 1, minWidth: 0 }}>\n <Box sx={{ display: 'flex', alignItems: 'center', gap: 0.5, mb: 0.2 }}>\n <Typography variant=\"body2\" fontWeight={700} noWrap title={entry.name} sx={{ lineHeight: 1.2, flex: 1 }}>\n {entry.name}\n </Typography>\n <Chip\n label={entry.type} size=\"small\"\n sx={{\n height: 18, fontSize: '0.6rem', fontFamily: 'monospace', fontWeight: 700,\n bgcolor: accent, color: '#fff', flexShrink: 0,\n '& .MuiChip-label': { px: '6px' },\n }}\n />\n </Box>\n <Typography variant=\"caption\" sx={{ color: accent, fontWeight: 600 }}>\n {entry.type === 'http' ? 'HTTP' : 'Stdio'}\n </Typography>\n </Box>\n </Box>\n\n {entry.description && (\n <Typography\n variant=\"caption\" color=\"text.secondary\" title={entry.description}\n sx={{\n mb: 0.75, display: '-webkit-box', WebkitLineClamp: 2,\n WebkitBoxOrient: 'vertical', overflow: 'hidden', lineHeight: 1.4,\n }}\n >\n {entry.description}\n </Typography>\n )}\n\n {entry.type === 'http' && entry.url && (\n <Typography variant=\"caption\" sx={{ display: 'block', fontFamily: 'monospace', fontSize: '0.65rem', color: 'text.disabled', wordBreak: 'break-all' }}>\n {entry.url}\n </Typography>\n )}\n {entry.type === 'stdio' && entry.command && (\n <Typography variant=\"caption\" sx={{ display: 'block', fontFamily: 'monospace', fontSize: '0.65rem', color: 'text.disabled' }}>\n {[entry.command, ...(entry.args ?? [])].join(' ')}\n </Typography>\n )}\n </CardContent>\n\n {canInstall && (\n <CardActions sx={{ px: 1.5, py: 1, mt: 'auto', borderTop: '1px solid', borderColor: 'divider', gap: 0.75 }}>\n <Button\n size=\"small\" variant=\"outlined\" fullWidth\n startIcon={<OpenInBrowserIcon sx={{ fontSize: '0.85rem !important' }} />}\n onClick={handleInstallVscode}\n sx={{ fontSize: '0.72rem', fontWeight: 700, py: 0.5, borderColor: accent, color: accent, '&:hover': { borderColor: accent, bgcolor: alpha(accent, 0.08) } }}\n >\n {t('mcpConfigDialog.installInVscode')}\n </Button>\n <Button\n size=\"small\" variant=\"outlined\" fullWidth\n startIcon={<ToolIcon tool=\"cursor\" branded={false} sx={{ fontSize: '0.85rem !important', color: `${accent} !important` }} />}\n onClick={handleInstallCursor}\n sx={{ fontSize: '0.72rem', fontWeight: 700, py: 0.5, borderColor: accent, color: accent, '&:hover': { borderColor: accent, bgcolor: alpha(accent, 0.08) } }}\n >\n {t('mcpConfigDialog.installInCursor')}\n </Button>\n </CardActions>\n )}\n </Card>\n );\n}\n\ninterface McpPageProps {\n /** When true, renders without the <Content> wrapper — for use inside dialogs. */\n embedded?: boolean;\n}\n\nexport function McpPage({ embedded = false }: McpPageProps) {\n const theme = useTheme();\n const { t } = useTranslationRef(devAiHubTranslationRef);\n const discoveryApi = useApi(discoveryApiRef);\n const { copy: copyUrl, copied: copiedUrl } = useCopyToClipboard();\n const { copy: copySnippet, copied: copiedSnippet } = useCopyToClipboard();\n const [tab, setTab] = useState(0);\n const [baseUrl, setBaseUrl] = useState('');\n const [selectedProvider, setSelectedProvider] = useState<string>('');\n const [proactiveEnabled, setProactiveEnabled] = useState(false);\n const [toolConfigExpanded, setToolConfigExpanded] = useState(false);\n const [manualExpanded, setManualExpanded] = useState(false);\n\n const { providers } = useProviders();\n const { catalog } = useMcpCatalog();\n const showProviderFilter = providers.length > 1;\n\n const toolConfigs = useMemo<ToolConfig[]>(() => [\n {\n tool: 'claude-code', label: 'Claude Code', file: '.mcp.json',\n description: t('mcpConfigDialog.claudeConfigDesc'),\n buildConfig: url => JSON.stringify({ mcpServers: { 'dev-ai-hub': { type: 'http', url } } }, null, 2),\n },\n {\n tool: 'github-copilot', label: 'GitHub Copilot', file: '.vscode/settings.json',\n description: t('mcpConfigDialog.copilotConfigDesc'),\n buildConfig: url => JSON.stringify({ 'github.copilot.chat.mcp.servers': { 'dev-ai-hub': { type: 'http', url } } }, null, 2),\n },\n {\n tool: 'google-gemini', label: 'Google Gemini', file: 'gemini-config.json',\n description: t('mcpConfigDialog.geminiConfigDesc'),\n buildConfig: url => JSON.stringify({ mcpServers: { 'dev-ai-hub': { url } } }, null, 2),\n },\n {\n tool: 'cursor', label: 'Cursor', file: '.cursor/mcp.json',\n description: t('mcpConfigDialog.cursorConfigDesc'),\n buildConfig: url => JSON.stringify({ mcpServers: { 'dev-ai-hub': { type: 'http', url } } }, null, 2),\n },\n ], [t]);\n\n useEffect(() => {\n discoveryApi.getBaseUrl('dev-ai-hub').then(url => setBaseUrl(url));\n }, [discoveryApi]);\n\n const cfg = toolConfigs[tab] ?? toolConfigs[0];\n\n const buildMcpUrl = () => {\n if (!baseUrl) return 'loading...';\n const params = new URLSearchParams();\n params.set('tool', cfg.tool);\n if (selectedProvider) params.set('provider', selectedProvider);\n if (proactiveEnabled) params.set('proactive', 'true');\n return `${baseUrl}/mcp?${params.toString()}`;\n };\n\n const mcpUrl = buildMcpUrl();\n const configSnippet = baseUrl ? cfg.buildConfig(mcpUrl) : '';\n\n const handleInstallInVscode = () => {\n if (!baseUrl) return;\n const config = JSON.stringify({ name: 'dev-ai-hub', type: 'http', url: mcpUrl });\n window.location.href = `vscode:mcp/install?${encodeURIComponent(config)}`;\n };\n\n const handleInstallInCursor = () => {\n if (!baseUrl) return;\n const config = btoa(JSON.stringify({ type: 'http', url: mcpUrl }));\n window.location.href = `cursor://anysphere.cursor-deeplink/mcp/install?name=dev-ai-hub&config=${config}`;\n };\n\n const showVscodeButton = cfg.tool === 'github-copilot';\n const showCursorButton = cfg.tool === 'cursor';\n\n const body = (\n <>\n {/* MCP Catalog section */}\n <Box sx={{ mb: 3 }}>\n <Box sx={{ display: 'flex', alignItems: 'center', gap: 0.75, mb: 1 }}>\n <AppsIcon sx={{ fontSize: '0.95rem', color: 'text.secondary' }} />\n <Typography variant=\"caption\" fontWeight={700} color=\"text.secondary\" sx={{ textTransform: 'uppercase', letterSpacing: 0.8, flex: 1 }}>\n {t('mcpConfigDialog.catalogTab')}\n </Typography>\n {catalog.length > 0 && (\n <Chip\n label={catalog.length} size=\"small\"\n sx={{ height: 18, fontSize: '0.65rem', fontWeight: 700, bgcolor: 'action.selected', color: 'text.secondary', border: '1px solid', borderColor: 'divider' }}\n />\n )}\n </Box>\n\n <Typography variant=\"body2\" color=\"text.secondary\" sx={{ mb: 1.5, fontSize: '0.8rem' }}>\n {t('mcpConfigDialog.catalogDescription')}\n </Typography>\n\n {catalog.length === 0 ? (\n <Box sx={{ border: '1px dashed', borderColor: 'divider', borderRadius: 2, p: 3, textAlign: 'center' }}>\n <AppsIcon sx={{ fontSize: '2rem', color: 'text.disabled', mb: 1 }} />\n <Typography variant=\"body2\" color=\"text.secondary\">{t('mcpConfigDialog.catalogEmpty')}</Typography>\n <Typography variant=\"caption\" color=\"text.disabled\">{t('mcpConfigDialog.catalogAddHint')}</Typography>\n </Box>\n ) : (\n <Grid container spacing={1.5}>\n {catalog.map(entry => (\n <Grid item xs={12} sm={6} md={4} key={entry.id}>\n <CatalogEntryCard entry={entry} />\n </Grid>\n ))}\n </Grid>\n )}\n </Box>\n\n <Divider sx={{ mb: 0 }} />\n\n {/* Tool Config section — collapsible */}\n <Box>\n <Box\n onClick={() => setToolConfigExpanded(v => !v)}\n sx={{ display: 'flex', alignItems: 'center', gap: 0.75, cursor: 'pointer', userSelect: 'none', py: 1.25, '&:hover': { opacity: 0.8 } }}\n >\n <TuneIcon sx={{ fontSize: '0.95rem', color: 'text.secondary' }} />\n <Typography variant=\"caption\" fontWeight={700} color=\"text.secondary\" sx={{ textTransform: 'uppercase', letterSpacing: 0.8, flex: 1 }}>\n {t('mcpConfigDialog.toolConfigSection')}\n </Typography>\n <ExpandMoreIcon\n fontSize=\"small\"\n sx={{ color: 'text.disabled', transition: 'transform 0.2s ease', transform: toolConfigExpanded ? 'rotate(180deg)' : 'rotate(0deg)' }}\n />\n </Box>\n\n <Collapse in={toolConfigExpanded} mountOnEnter unmountOnExit>\n <Tabs value={tab} onChange={(_, v) => setTab(v)} sx={{ mb: 2, borderBottom: 1, borderColor: 'divider' }}>\n {toolConfigs.map((toolCfg, i) => (\n <Tab\n key={toolCfg.tool} value={i}\n sx={{ color: 'text.secondary', minHeight: 40, '&.Mui-selected': { color: 'primary.main' }, '&:hover': { backgroundColor: 'transparent', color: 'text.primary' }, '&.Mui-selected:hover': { backgroundColor: 'transparent' } }}\n label={\n <Box sx={{ display: 'flex', alignItems: 'center', gap: 0.75 }}>\n <ToolIcon tool={toolCfg.tool} branded={false} sx={{ fontSize: '1rem' }} />\n <span>{toolCfg.label}</span>\n </Box>\n }\n />\n ))}\n </Tabs>\n\n {showProviderFilter && (\n <Box sx={{ mb: 2 }}>\n <Typography variant=\"caption\" fontWeight={600} color=\"text.secondary\" sx={{ textTransform: 'uppercase', letterSpacing: 0.5, display: 'block', mb: 0.75 }}>\n {t('mcpConfigDialog.scopeToProvider')}\n </Typography>\n <Box sx={{ display: 'flex', gap: 0.75, flexWrap: 'wrap' }}>\n <Chip\n label={t('mcpConfigDialog.allProviders')} size=\"small\" clickable\n onClick={() => setSelectedProvider('')}\n sx={{\n fontWeight: 600, fontSize: '0.75rem', borderRadius: 2, border: '1.5px solid',\n borderColor: !selectedProvider ? 'text.primary' : 'divider',\n backgroundColor: !selectedProvider ? 'text.primary' : 'transparent',\n color: !selectedProvider ? 'background.paper' : 'text.secondary',\n transition: 'all 0.15s ease',\n }}\n />\n {providers.map(p => {\n const isSelected = selectedProvider === p.id;\n return (\n <Chip\n key={p.id} size=\"small\" clickable\n icon={<StorageIcon sx={{ fontSize: '0.8rem !important', color: isSelected ? 'background.paper' : 'inherit' }} />}\n label={providerLabel(p.target)}\n onClick={() => setSelectedProvider(isSelected ? '' : p.id)}\n sx={{\n fontWeight: 600, fontSize: '0.75rem', borderRadius: 2, border: '1.5px solid',\n borderColor: isSelected ? 'text.primary' : 'divider',\n backgroundColor: isSelected ? 'text.primary' : 'transparent',\n color: isSelected ? 'background.paper' : 'text.secondary',\n transition: 'all 0.15s ease',\n }}\n />\n );\n })}\n </Box>\n </Box>\n )}\n\n <Box sx={{ mb: 2 }}>\n <FormControlLabel\n control={<Switch size=\"small\" checked={proactiveEnabled} onChange={e => setProactiveEnabled(e.target.checked)} />}\n label={\n <Box>\n <Typography variant=\"body2\" fontWeight={600}>{t('mcpConfigDialog.proactiveSuggestions')}</Typography>\n <Typography variant=\"caption\" color=\"text.secondary\">{t('mcpConfigDialog.proactiveDescription')}</Typography>\n </Box>\n }\n sx={{ alignItems: 'flex-start', ml: 0, gap: 1 }}\n />\n </Box>\n\n <Typography variant=\"caption\" fontWeight={600} color=\"text.secondary\" sx={{ textTransform: 'uppercase', letterSpacing: 0.5 }}>\n {t('mcpConfigDialog.mcpEndpoint')}\n </Typography>\n <Box\n sx={{\n display: 'flex', alignItems: 'center', gap: 1, mt: 0.5, mb: 1.5,\n px: 1.5, py: 1, borderRadius: 1.5, border: '1px solid', borderColor: 'divider',\n backgroundColor: theme.palette.mode === 'dark' ? 'rgba(255,255,255,0.05)' : 'rgba(0,0,0,0.03)',\n }}\n >\n <Typography variant=\"body2\" sx={{ flex: 1, fontFamily: 'monospace', fontSize: '0.8rem', wordBreak: 'break-all' }}>\n {mcpUrl}\n </Typography>\n <Tooltip title={copiedUrl ? t('assetInstallDialog.copied') : t('mcpConfigDialog.copyUrl')}>\n <IconButton size=\"small\" onClick={() => copyUrl(mcpUrl)}>\n {copiedUrl ? <CheckIcon fontSize=\"small\" color=\"success\" /> : <ContentCopyIcon fontSize=\"small\" />}\n </IconButton>\n </Tooltip>\n </Box>\n\n {showVscodeButton && (\n <Button variant=\"contained\" startIcon={<OpenInBrowserIcon />} onClick={handleInstallInVscode} disabled={!baseUrl} fullWidth sx={{ mb: 2, fontSize: '0.8rem' }}>\n {t('mcpConfigDialog.installInVscode')}\n </Button>\n )}\n {showCursorButton && (\n <Button\n variant=\"contained\" fullWidth onClick={handleInstallInCursor} disabled={!baseUrl}\n startIcon={<ToolIcon tool=\"cursor\" branded={false} sx={{ fontSize: '1rem !important' }} />}\n sx={{ mb: 2, fontSize: '0.8rem' }}\n >\n {t('mcpConfigDialog.installInCursor')}\n </Button>\n )}\n\n <Divider sx={{ mb: 1.5 }} />\n\n <Box\n onClick={() => setManualExpanded(v => !v)}\n sx={{ display: 'flex', alignItems: 'center', justifyContent: 'space-between', cursor: 'pointer', userSelect: 'none', py: 0.75 }}\n >\n <Typography variant=\"caption\" fontWeight={600} color=\"text.secondary\" sx={{ textTransform: 'uppercase', letterSpacing: 0.5 }}>\n {t('mcpConfigDialog.manualConfig', { file: cfg.file })}\n </Typography>\n <ExpandMoreIcon\n fontSize=\"small\"\n sx={{ color: 'text.disabled', transition: 'transform 0.2s ease', transform: manualExpanded ? 'rotate(180deg)' : 'rotate(0deg)' }}\n />\n </Box>\n\n <Collapse in={manualExpanded} mountOnEnter unmountOnExit>\n <Typography variant=\"caption\" color=\"text.secondary\" sx={{ display: 'block', mb: 1, mt: 0.5 }}>\n {cfg.description}\n </Typography>\n <Box sx={{ position: 'relative' }}>\n <Box\n component=\"pre\"\n sx={{\n m: 0, p: 2, borderRadius: 2, border: '1px solid', borderColor: 'divider',\n backgroundColor: theme.palette.mode === 'dark' ? '#0d1117' : '#f6f8fa',\n color: theme.palette.mode === 'dark' ? '#e6edf3' : '#24292f',\n fontFamily: 'monospace', fontSize: '0.8rem', overflowX: 'auto', whiteSpace: 'pre',\n }}\n >\n {configSnippet}\n </Box>\n <Tooltip title={copiedSnippet ? t('assetInstallDialog.copied') : t('mcpConfigDialog.copyUrl')}>\n <IconButton\n size=\"small\"\n onClick={e => { e.stopPropagation(); copySnippet(configSnippet); }}\n sx={{\n position: 'absolute', top: 8, right: 8,\n backgroundColor: theme.palette.mode === 'dark' ? 'rgba(255,255,255,0.1)' : 'rgba(0,0,0,0.06)',\n '&:hover': { backgroundColor: theme.palette.mode === 'dark' ? 'rgba(255,255,255,0.2)' : 'rgba(0,0,0,0.12)' },\n }}\n >\n {copiedSnippet ? <CheckIcon fontSize=\"small\" color=\"success\" /> : <ContentCopyIcon fontSize=\"small\" />}\n </IconButton>\n </Tooltip>\n </Box>\n <Typography variant=\"caption\" color=\"text.disabled\" sx={{ display: 'block', mt: 1.5 }}>\n {t('mcpConfigDialog.omitToolHint')}\n </Typography>\n </Collapse>\n </Collapse>\n </Box>\n </>\n );\n\n return embedded ? body : <Content>{body}</Content>;\n}"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.esm.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;"}
|