feat:将extension文件拆分成不同功能的独立组件

This commit is contained in:
Roe-xin
2025-12-11 10:54:46 +08:00
parent eec915421a
commit b3c8344d82
9 changed files with 547 additions and 40 deletions

177
src/utils/webviewContent.ts Normal file
View File

@ -0,0 +1,177 @@
/**
* 获取 WebView 面板的 HTML 内容
*/
export function getWebviewContent(): string {
return `<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>IC Coder 助手</title>
<style>
body {
font-family: var(--vscode-font-family);
background: var(--vscode-editor-background);
color: var(--vscode-foreground);
margin: 0;
padding: 20px;
height: 100vh;
display: flex;
flex-direction: column;
}
.header {
text-align: center;
margin-bottom: 20px;
padding-bottom: 15px;
border-bottom: 1px solid var(--vscode-panel-border);
}
.header h1 {
color: var(--vscode-button-background);
margin: 0 0 8px 0;
}
.chat-container {
flex: 1;
display: flex;
flex-direction: column;
}
.messages {
flex: 1;
overflow-y: auto;
margin-bottom: 15px;
}
.message {
margin-bottom: 12px;
padding: 10px 15px;
border-radius: 8px;
max-width: 80%;
}
.user-message {
background: var(--vscode-button-secondaryBackground);
margin-left: auto;
}
.bot-message {
background: var(--vscode-button-background);
color: var(--vscode-button-foreground);
margin-right: auto;
}
.input-area {
border-top: 1px solid var(--vscode-panel-border);
padding-top: 15px;
}
.input-group {
display: flex;
gap: 10px;
}
textarea {
flex: 1;
padding: 10px;
background: var(--vscode-input-background);
color: var(--vscode-input-foreground);
border: 1px solid var(--vscode-input-border);
border-radius: 4px;
font-family: inherit;
resize: none;
min-height: 40px;
}
button {
padding: 0 20px;
background: var(--vscode-button-background);
color: var(--vscode-button-foreground);
border: none;
border-radius: 4px;
cursor: pointer;
}
.quick-actions {
display: flex;
gap: 8px;
margin-top: 10px;
flex-wrap: wrap;
}
.quick-btn {
padding: 6px 12px;
background: var(--vscode-button-secondaryBackground);
color: var(--vscode-button-secondaryForeground);
border: none;
border-radius: 4px;
cursor: pointer;
font-size: 12px;
}
</style>
</head>
<body>
<div class="header">
<h1>IC Coder</h1>
<p>专注于真实FPGA研发的Verilog智能体编程平台</p>
</div>
<div class="chat-container">
<div id="messages" class="messages">
<div class="message bot-message">
👋 你好!我是 IC Coder 助手,可以帮你生成代码、回答问题。
</div>
</div>
<div class="quick-actions">
<button class="quick-btn" onclick="quickAction('counter')">生成计数器</button>
<button class="quick-btn" onclick="quickAction('fsm')">生成状态机</button>
<button class="quick-btn" onclick="quickAction('testbench')">生成测试平台</button>
</div>
<div class="input-area">
<div class="input-group">
<textarea
id="messageInput"
placeholder="输入您的问题..."
onkeydown="if(event.key === 'Enter' && !event.shiftKey) { event.preventDefault(); sendMessage(); }"
></textarea>
<button onclick="sendMessage()">发送</button>
</div>
</div>
</div>
<script>
const vscode = acquireVsCodeApi();
const messagesEl = document.getElementById('messages');
const messageInput = document.getElementById('messageInput');
function sendMessage() {
const text = messageInput.value.trim();
if (!text) return;
addMessage(text, 'user');
vscode.postMessage({ command: 'sendMessage', text: text });
messageInput.value = '';
messageInput.focus();
}
function quickAction(type) {
const questions = {
counter: '生成一个4位同步计数器',
fsm: '生成一个状态机',
testbench: '生成测试平台'
};
if (questions[type]) {
messageInput.value = questions[type];
sendMessage();
}
}
function addMessage(text, sender) {
const div = document.createElement('div');
div.className = \`message \${sender}-message\`;
div.textContent = text;
messagesEl.appendChild(div);
messagesEl.scrollTop = messagesEl.scrollHeight;
}
window.addEventListener('message', event => {
if (event.data.command === 'receiveMessage') {
addMessage(event.data.text, 'bot');
}
});
messageInput.focus();
</script>
</body>
</html>`;
}