(status)
| 160 | } |
| 161 | |
| 162 | function getStatusText(status) { |
| 163 | const statusMap = { |
| 164 | 'connecting': '连接中', |
| 165 | 'open': '已连接', |
| 166 | 'closed': '已关闭', |
| 167 | 'error': '错误', |
| 168 | 'archived': '归档' |
| 169 | }; |
| 170 | return statusMap[status] || status; |
| 171 | } |
| 172 | |
| 173 | function downloadFile(content, filename, mimeType) { |
| 174 | const bom = mimeType === 'text/csv' ? '\uFEFF' : ''; |
no outgoing calls
no test coverage detected