Spaces:
Running
Running
File size: 10,022 Bytes
28e1dba |
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 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 |
/**
* HTML Generator Utility
* 用于生成幻灯片的 HTML 内容
*/
/**
* 生成幻灯片的 HTML 内容
* @param {Object} slideData - 幻灯片数据
* @param {number} slideIndex - 幻灯片索引
* @param {Object} options - 渲染选项
* @returns {string} HTML 字符串
*/
export function generateSlideHTML(slideData, slideIndex = 0, options = {}) {
const {
width = 1000,
height = 562,
backgroundColor = '#ffffff',
scale = 1
} = options;
if (!slideData || !slideData.slides || !slideData.slides[slideIndex]) {
throw new Error(`Invalid slide data or slide index: ${slideIndex}`);
}
const slide = slideData.slides[slideIndex];
const slideBackground = slide.background || backgroundColor;
// 生成元素的 HTML
const elementsHTML = generateElementsHTML(slide.elements || [], { width, height, scale });
return `
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Slide ${slideIndex + 1}</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
background: #f0f0f0;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
padding: 20px;
}
.slide-container {
width: ${width}px;
height: ${height}px;
background: ${slideBackground};
position: relative;
overflow: hidden;
border-radius: 8px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
transform: scale(${scale});
transform-origin: center;
}
.slide-element {
position: absolute;
user-select: none;
}
.text-element {
display: flex;
align-items: center;
justify-content: center;
word-wrap: break-word;
overflow-wrap: break-word;
}
.image-element {
background-size: contain;
background-repeat: no-repeat;
background-position: center;
}
.shape-element {
border-radius: 4px;
}
.line-element {
border: none;
background: currentColor;
}
</style>
</head>
<body>
<div class="slide-container">
${elementsHTML}
</div>
</body>
</html>
`.trim();
}
/**
* 生成元素的 HTML
* @param {Array} elements - 元素数组
* @param {Object} options - 渲染选项
* @returns {string} 元素 HTML 字符串
*/
function generateElementsHTML(elements, options = {}) {
if (!Array.isArray(elements)) {
return '';
}
return elements.map(element => {
try {
return generateElementHTML(element, options);
} catch (error) {
console.warn(`Failed to generate HTML for element:`, element, error);
return '';
}
}).join('\n');
}
/**
* 生成单个元素的 HTML
* @param {Object} element - 元素数据
* @param {Object} options - 渲染选项
* @returns {string} 元素 HTML 字符串
*/
function generateElementHTML(element, options = {}) {
if (!element || typeof element !== 'object') {
return '';
}
const {
type,
left = 0,
top = 0,
width = 100,
height = 100,
rotate = 0,
opacity = 1
} = element;
const baseStyle = `
left: ${left}px;
top: ${top}px;
width: ${width}px;
height: ${height}px;
transform: rotate(${rotate}deg);
opacity: ${opacity};
`;
switch (type) {
case 'text':
return generateTextElementHTML(element, baseStyle);
case 'image':
return generateImageElementHTML(element, baseStyle);
case 'shape':
return generateShapeElementHTML(element, baseStyle);
case 'line':
return generateLineElementHTML(element, baseStyle);
case 'chart':
return generateChartElementHTML(element, baseStyle);
case 'table':
return generateTableElementHTML(element, baseStyle);
default:
console.warn(`Unknown element type: ${type}`);
return '';
}
}
/**
* 生成文本元素 HTML
*/
function generateTextElementHTML(element, baseStyle) {
const {
content = '',
fontSize = 14,
fontFamily = 'Arial',
color = '#000000',
fontWeight = 'normal',
fontStyle = 'normal',
textDecoration = 'none',
textAlign = 'left',
lineHeight = 1.2
} = element;
const textStyle = `
font-size: ${fontSize}px;
font-family: ${fontFamily};
color: ${color};
font-weight: ${fontWeight};
font-style: ${fontStyle};
text-decoration: ${textDecoration};
text-align: ${textAlign};
line-height: ${lineHeight};
`;
return `
<div class="slide-element text-element" style="${baseStyle} ${textStyle}">
${escapeHtml(content)}
</div>
`;
}
/**
* 生成图片元素 HTML
*/
function generateImageElementHTML(element, baseStyle) {
const { src = '', alt = '' } = element;
if (!src) {
return `
<div class="slide-element" style="${baseStyle} background: #f0f0f0; border: 2px dashed #ccc;">
<div style="display: flex; align-items: center; justify-content: center; height: 100%; color: #999;">
图片加载失败
</div>
</div>
`;
}
return `
<div class="slide-element image-element" style="${baseStyle} background-image: url('${escapeHtml(src)}');">
<img src="${escapeHtml(src)}" alt="${escapeHtml(alt)}" style="width: 100%; height: 100%; object-fit: contain; opacity: 0;" />
</div>
`;
}
/**
* 生成形状元素 HTML
*/
function generateShapeElementHTML(element, baseStyle) {
const {
fill = '#ffffff',
stroke = '#000000',
strokeWidth = 1,
borderRadius = 0
} = element;
const shapeStyle = `
background: ${fill};
border: ${strokeWidth}px solid ${stroke};
border-radius: ${borderRadius}px;
`;
return `
<div class="slide-element shape-element" style="${baseStyle} ${shapeStyle}">
</div>
`;
}
/**
* 生成线条元素 HTML
*/
function generateLineElementHTML(element, baseStyle) {
const {
stroke = '#000000',
strokeWidth = 2
} = element;
const lineStyle = `
background: ${stroke};
height: ${strokeWidth}px;
color: ${stroke};
`;
return `
<div class="slide-element line-element" style="${baseStyle} ${lineStyle}">
</div>
`;
}
/**
* 生成图表元素 HTML
*/
function generateChartElementHTML(element, baseStyle) {
// 简化的图表渲染,实际项目中可能需要更复杂的图表库
return `
<div class="slide-element" style="${baseStyle} background: #f8f9fa; border: 1px solid #dee2e6; border-radius: 4px;">
<div style="display: flex; align-items: center; justify-content: center; height: 100%; color: #6c757d;">
📊 图表
</div>
</div>
`;
}
/**
* 生成表格元素 HTML
*/
function generateTableElementHTML(element, baseStyle) {
const { data = [] } = element;
if (!Array.isArray(data) || data.length === 0) {
return `
<div class="slide-element" style="${baseStyle} background: #f8f9fa; border: 1px solid #dee2e6;">
<div style="display: flex; align-items: center; justify-content: center; height: 100%; color: #6c757d;">
📋 空表格
</div>
</div>
`;
}
const tableHTML = data.map(row => {
if (!Array.isArray(row)) return '';
const cellsHTML = row.map(cell => `<td style="border: 1px solid #dee2e6; padding: 8px;">${escapeHtml(String(cell))}</td>`).join('');
return `<tr>${cellsHTML}</tr>`;
}).join('');
return `
<div class="slide-element" style="${baseStyle} overflow: auto;">
<table style="width: 100%; border-collapse: collapse; font-size: 12px;">
${tableHTML}
</table>
</div>
`;
}
/**
* HTML 转义函数
* @param {string} text - 需要转义的文本
* @returns {string} 转义后的文本
*/
function escapeHtml(text) {
if (typeof text !== 'string') {
return String(text);
}
const map = {
'&': '&',
'<': '<',
'>': '>',
'"': '"',
"'": '''
};
return text.replace(/[&<>"']/g, m => map[m]);
}
/**
* 生成完整的 PPT HTML(包含所有幻灯片)
* @param {Object} pptData - PPT 数据
* @param {Object} options - 渲染选项
* @returns {string} 完整的 HTML 字符串
*/
export function generatePPTHTML(pptData, options = {}) {
if (!pptData || !pptData.slides || !Array.isArray(pptData.slides)) {
throw new Error('Invalid PPT data');
}
const { width = 1000, height = 562 } = options;
const slidesHTML = pptData.slides.map((slide, index) => {
try {
return generateSlideHTML(pptData, index, options);
} catch (error) {
console.warn(`Failed to generate HTML for slide ${index}:`, error);
return `
<div class="slide-error" style="width: ${width}px; height: ${height}px; background: #f8d7da; border: 1px solid #f5c6cb; display: flex; align-items: center; justify-content: center; color: #721c24;">
幻灯片 ${index + 1} 渲染失败
</div>
`;
}
}).join('\n\n');
return `
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PPT Preview</title>
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
background: #f0f0f0;
margin: 0;
padding: 20px;
}
.ppt-container {
display: flex;
flex-direction: column;
align-items: center;
gap: 20px;
}
.slide-wrapper {
position: relative;
}
.slide-number {
position: absolute;
top: -30px;
left: 0;
background: #007bff;
color: white;
padding: 4px 8px;
border-radius: 4px;
font-size: 12px;
font-weight: bold;
}
</style>
</head>
<body>
<div class="ppt-container">
${slidesHTML}
</div>
</body>
</html>
`.trim();
}
export default {
generateSlideHTML,
generatePPTHTML
}; |