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 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285
| import * as vscode from 'vscode';
export class DataVisualizationProvider { static createVisualizationPanel(context: vscode.ExtensionContext) { const panel = vscode.window.createWebviewPanel( 'dataVisualization', '数据可视化', vscode.ViewColumn.One, { enableScripts: true, retainContextWhenHidden: true } ); panel.webview.html = this.getWebviewContent(); panel.webview.onDidReceiveMessage( message => { switch (message.command) { case 'generateChart': this.generateChartData(panel.webview, message.type); break; case 'exportChart': this.exportChart(message.data); break; } }, undefined, context.subscriptions ); return panel; } private static 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>数据可视化</title> <script src="https://cdn.jsdelivr.net/npm/chart.js"></script> <style> body { font-family: var(--vscode-font-family); color: var(--vscode-foreground); background-color: var(--vscode-editor-background); padding: 20px; } .controls { margin-bottom: 20px; padding: 15px; border: 1px solid var(--vscode-panel-border); border-radius: 5px; } .chart-container { position: relative; height: 400px; margin: 20px 0; } button { background-color: var(--vscode-button-background); color: var(--vscode-button-foreground); border: none; padding: 8px 16px; margin: 5px; border-radius: 3px; cursor: pointer; } button:hover { background-color: var(--vscode-button-hoverBackground); } select { background-color: var(--vscode-dropdown-background); color: var(--vscode-dropdown-foreground); border: 1px solid var(--vscode-dropdown-border); padding: 5px; margin: 5px; } </style> </head> <body> <div class="controls"> <h3>图表控制</h3> <label>图表类型:</label> <select id="chartType"> <option value="line">折线图</option> <option value="bar">柱状图</option> <option value="pie">饼图</option> <option value="doughnut">环形图</option> </select> <button onclick="generateChart()">生成图表</button> <button onclick="exportChart()">导出图表</button> </div> <div class="chart-container"> <canvas id="chartCanvas"></canvas> </div> <script> const vscode = acquireVsCodeApi(); let currentChart = null; function generateChart() { const chartType = document.getElementById('chartType').value; vscode.postMessage({ command: 'generateChart', type: chartType }); } function exportChart() { if (currentChart) { const imageData = currentChart.toBase64Image(); vscode.postMessage({ command: 'exportChart', data: imageData }); } } function createChart(type, data) { const ctx = document.getElementById('chartCanvas').getContext('2d'); if (currentChart) { currentChart.destroy(); } currentChart = new Chart(ctx, { type: type, data: data, options: { responsive: true, maintainAspectRatio: false, plugins: { legend: { labels: { color: 'var(--vscode-foreground)' } } }, scales: type !== 'pie' && type !== 'doughnut' ? { x: { ticks: { color: 'var(--vscode-foreground)' }, grid: { color: 'var(--vscode-panel-border)' } }, y: { ticks: { color: 'var(--vscode-foreground)' }, grid: { color: 'var(--vscode-panel-border)' } } } : {} } }); } // 监听来自扩展的消息 window.addEventListener('message', event => { const message = event.data; switch (message.type) { case 'chartData': createChart(message.chartType, message.data); break; } }); </script> </body> </html>`; } private static generateChartData(webview: vscode.Webview, chartType: string) { const labels = ['一月', '二月', '三月', '四月', '五月', '六月']; const data1 = [12, 19, 3, 5, 2, 3]; const data2 = [2, 3, 20, 5, 1, 4]; let chartData; switch (chartType) { case 'line': chartData = { labels: labels, datasets: [{ label: '数据集1', data: data1, borderColor: 'rgb(75, 192, 192)', backgroundColor: 'rgba(75, 192, 192, 0.1)', tension: 0.1 }, { label: '数据集2', data: data2, borderColor: 'rgb(255, 99, 132)', backgroundColor: 'rgba(255, 99, 132, 0.1)', tension: 0.1 }] }; break; case 'bar': chartData = { labels: labels, datasets: [{ label: '销售额', data: data1, backgroundColor: [ 'rgba(255, 99, 132, 0.8)', 'rgba(54, 162, 235, 0.8)', 'rgba(255, 205, 86, 0.8)', 'rgba(75, 192, 192, 0.8)', 'rgba(153, 102, 255, 0.8)', 'rgba(255, 159, 64, 0.8)' ] }] }; break; case 'pie': case 'doughnut': chartData = { labels: ['红色', '蓝色', '黄色', '绿色', '紫色', '橙色'], datasets: [{ data: data1, backgroundColor: [ '#FF6384', '#36A2EB', '#FFCE56', '#4BC0C0', '#9966FF', '#FF9F40' ] }] }; break; default: chartData = { labels: [], datasets: [] }; } webview.postMessage({ type: 'chartData', chartType: chartType, data: chartData }); } private static async exportChart(imageData: string) { try { const base64Data = imageData.replace(/^data:image\/png;base64,/, ''); const buffer = Buffer.from(base64Data, 'base64'); const uri = await vscode.window.showSaveDialog({ defaultUri: vscode.Uri.file('chart.png'), filters: { 'PNG图片': ['png'] } }); if (uri) { await vscode.workspace.fs.writeFile(uri, buffer); vscode.window.showInformationMessage(`图表已保存到:${uri.fsPath}`); } } catch (error) { vscode.window.showErrorMessage(`导出图表失败:${error}`); } } }
|