Update app.py
Browse files
app.py
CHANGED
@@ -442,96 +442,75 @@ def load_session_history(selected_session):
|
|
442 |
color: #666;
|
443 |
margin-top: 10px;
|
444 |
}
|
445 |
-
.code-display {
|
446 |
-
margin-top: 20px;
|
447 |
-
padding: 20px;
|
448 |
-
background: #f5f5f5;
|
449 |
-
border-radius: 8px;
|
450 |
-
display: none;
|
451 |
-
}
|
452 |
</style>
|
453 |
<div class="prompt-grid">
|
454 |
"""
|
455 |
|
|
|
|
|
|
|
456 |
for i, (prompt, response, timestamp) in enumerate(history):
|
457 |
short_prompt = prompt[:100] + "..." if len(prompt) > 100 else prompt
|
458 |
formatted_time = datetime.strptime(timestamp, '%Y-%m-%d %H:%M:%S.%f').strftime('%Y-%m-%d %H:%M')
|
459 |
|
460 |
-
#
|
461 |
-
|
462 |
-
|
|
|
|
|
463 |
|
464 |
cards_html += f"""
|
465 |
-
<div class="prompt-card"
|
466 |
-
onclick="executeHistoryItem(decodeURIComponent('{urllib.parse.quote(escaped_prompt)}'),
|
467 |
-
decodeURIComponent('{urllib.parse.quote(escaped_response)}'))">
|
468 |
<div>{short_prompt}</div>
|
469 |
<div class="timestamp">{formatted_time}</div>
|
470 |
</div>
|
471 |
"""
|
472 |
|
473 |
-
cards_html += """
|
474 |
</div>
|
475 |
<script>
|
476 |
-
|
477 |
-
|
478 |
-
|
479 |
-
|
480 |
-
|
481 |
-
|
482 |
-
|
483 |
-
|
484 |
-
|
485 |
-
|
486 |
-
|
487 |
-
|
488 |
-
|
489 |
-
|
490 |
-
|
491 |
-
|
492 |
-
|
493 |
-
|
494 |
-
|
495 |
-
|
496 |
-
|
497 |
-
|
498 |
-
|
499 |
-
|
500 |
-
|
501 |
-
|
502 |
-
|
503 |
-
|
504 |
-
|
505 |
-
|
506 |
-
|
507 |
-
|
508 |
-
|
509 |
-
|
510 |
-
|
511 |
-
|
512 |
-
|
513 |
-
|
514 |
-
|
515 |
-
|
516 |
-
|
517 |
-
const renderTab = Array.from(tabs).find(tab => tab.getAttribute('data-value') === 'render');
|
518 |
-
if (renderTab) {
|
519 |
-
renderTab.click();
|
520 |
-
}
|
521 |
-
}, 100);
|
522 |
-
}
|
523 |
-
} catch (error) {
|
524 |
-
console.error('Error executing history item:', error);
|
525 |
-
}
|
526 |
-
}
|
527 |
-
|
528 |
-
// jQuery๋ฅผ ์ฌ์ฉํ์ฌ ํ
์คํธ ํฌํจ ์ฌ๋ถ๋ก ๋ฒํผ ์ฐพ๊ธฐ
|
529 |
-
jQuery.expr[':'].contains = function(a, i, m) {
|
530 |
-
return jQuery(a).text().toUpperCase()
|
531 |
-
.indexOf(m[3].toUpperCase()) >= 0;
|
532 |
-
};
|
533 |
</script>
|
534 |
-
<div class="code-display"></div>
|
535 |
"""
|
536 |
|
537 |
return gr.HTML(value=cards_html)
|
|
|
442 |
color: #666;
|
443 |
margin-top: 10px;
|
444 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
445 |
</style>
|
446 |
<div class="prompt-grid">
|
447 |
"""
|
448 |
|
449 |
+
# ๋ฐ์ดํฐ๋ฅผ JavaScript ๋ฐฐ์ด๋ก ์ค๋น
|
450 |
+
js_data = []
|
451 |
+
|
452 |
for i, (prompt, response, timestamp) in enumerate(history):
|
453 |
short_prompt = prompt[:100] + "..." if len(prompt) > 100 else prompt
|
454 |
formatted_time = datetime.strptime(timestamp, '%Y-%m-%d %H:%M:%S.%f').strftime('%Y-%m-%d %H:%M')
|
455 |
|
456 |
+
# JavaScript ๋ฐ์ดํฐ ๋ฐฐ์ด์ ์ถ๊ฐ
|
457 |
+
js_data.append({
|
458 |
+
'prompt': prompt,
|
459 |
+
'response': response
|
460 |
+
})
|
461 |
|
462 |
cards_html += f"""
|
463 |
+
<div class="prompt-card" onclick="executeHistoryItem({i})">
|
|
|
|
|
464 |
<div>{short_prompt}</div>
|
465 |
<div class="timestamp">{formatted_time}</div>
|
466 |
</div>
|
467 |
"""
|
468 |
|
469 |
+
cards_html += f"""
|
470 |
</div>
|
471 |
<script>
|
472 |
+
// ๋ฐ์ดํฐ ์ ์ฅ
|
473 |
+
const historyData = {json.dumps(js_data)};
|
474 |
+
|
475 |
+
function executeHistoryItem(index) {{
|
476 |
+
const item = historyData[index];
|
477 |
+
|
478 |
+
// ํ
์คํธ ์์ญ ์
๋ฐ์ดํธ
|
479 |
+
const textarea = document.querySelector('textarea');
|
480 |
+
if (textarea) {{
|
481 |
+
textarea.value = item.prompt;
|
482 |
+
}}
|
483 |
+
|
484 |
+
// ์ฝ๋ ์ถ์ถ ๋ฐ ์คํ
|
485 |
+
let code = item.response;
|
486 |
+
if (code.includes('```html')) {{
|
487 |
+
code = code.match(/```html\\n([\\s\\S]*?)\\n```/)[1];
|
488 |
+
}}
|
489 |
+
|
490 |
+
// iframe ์
๋ฐ์ดํธ
|
491 |
+
const encodedHtml = btoa(unescape(encodeURIComponent(code.trim())));
|
492 |
+
const dataUri = `data:text/html;charset=utf-8;base64,${{encodedHtml}}`;
|
493 |
+
|
494 |
+
const iframe = document.querySelector('.html_content iframe');
|
495 |
+
if (iframe) {{
|
496 |
+
iframe.src = dataUri;
|
497 |
+
}}
|
498 |
+
|
499 |
+
// ์คํ ๋ฒํผ ํด๋ฆญ
|
500 |
+
const executeButton = Array.from(document.querySelectorAll('button')).find(
|
501 |
+
button => button.textContent.includes('Code ์คํ')
|
502 |
+
);
|
503 |
+
if (executeButton) {{
|
504 |
+
executeButton.click();
|
505 |
+
}}
|
506 |
+
|
507 |
+
// ๋๋ก์ด ๋ซ๊ธฐ
|
508 |
+
const drawer = document.querySelector('.session-drawer');
|
509 |
+
if (drawer) {{
|
510 |
+
drawer.style.display = 'none';
|
511 |
+
}}
|
512 |
+
}}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
513 |
</script>
|
|
|
514 |
"""
|
515 |
|
516 |
return gr.HTML(value=cards_html)
|