mirror of
https://github.com/pacnpal/Roo-Code.git
synced 2025-12-21 12:51:17 -05:00
60 lines
1.3 KiB
TypeScript
60 lines
1.3 KiB
TypeScript
import { McpResource, McpResourceTemplate } from "../../../../src/shared/mcp"
|
|
|
|
type McpResourceRowProps = {
|
|
item: McpResource | McpResourceTemplate
|
|
}
|
|
|
|
const McpResourceRow = ({ item }: McpResourceRowProps) => {
|
|
const hasUri = "uri" in item
|
|
const uri = hasUri ? item.uri : item.uriTemplate
|
|
|
|
return (
|
|
<div
|
|
key={uri}
|
|
style={{
|
|
padding: "3px 0",
|
|
}}>
|
|
<div
|
|
style={{
|
|
display: "flex",
|
|
alignItems: "center",
|
|
marginBottom: "4px",
|
|
}}>
|
|
<span className={`codicon codicon-symbol-file`} style={{ marginRight: "6px" }} />
|
|
<span style={{ fontWeight: 500, wordBreak: "break-all" }}>{uri}</span>
|
|
</div>
|
|
<div
|
|
style={{
|
|
fontSize: "12px",
|
|
opacity: 0.8,
|
|
margin: "4px 0",
|
|
}}>
|
|
{item.name && item.description
|
|
? `${item.name}: ${item.description}`
|
|
: !item.name && item.description
|
|
? item.description
|
|
: !item.description && item.name
|
|
? item.name
|
|
: "No description"}
|
|
</div>
|
|
<div
|
|
style={{
|
|
fontSize: "12px",
|
|
}}>
|
|
<span style={{ opacity: 0.8 }}>Returns </span>
|
|
<code
|
|
style={{
|
|
color: "var(--vscode-textPreformat-foreground)",
|
|
background: "var(--vscode-textPreformat-background)",
|
|
padding: "1px 4px",
|
|
borderRadius: "3px",
|
|
}}>
|
|
{item.mimeType || "Unknown"}
|
|
</code>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default McpResourceRow
|