Spaces:
Running
Running
File size: 14,671 Bytes
d758ffc 1cc14d1 d758ffc 1cc14d1 ddb2dc9 d758ffc 1cc14d1 0246ff9 d758ffc c1e9df5 1cc14d1 ff47789 3d608a7 ff47789 3d608a7 ff47789 3d608a7 ff47789 1cc14d1 c6373cc d428c88 c6373cc 1cc14d1 c5a511a 1cc14d1 c5a511a 1cc14d1 c5a511a 1cc14d1 d758ffc 1cc14d1 d758ffc 1cc14d1 d758ffc 0246ff9 1cc14d1 0246ff9 1cc14d1 ddb2dc9 1cc14d1 ff47789 c6373cc ff47789 c6373cc ff47789 c6373cc 1cc14d1 2ad4034 1cc14d1 ddb2dc9 1cc14d1 ddb2dc9 1cc14d1 ddb2dc9 1cc14d1 ddb2dc9 1cc14d1 ddb2dc9 1cc14d1 0246ff9 ddb2dc9 d758ffc 1cc14d1 d758ffc 1cc14d1 d758ffc c5a511a 0246ff9 c5a511a d758ffc c5a511a 1cc14d1 c5a511a 1cc14d1 c5a511a 1cc14d1 c5a511a d758ffc 1cc14d1 d758ffc 1cc14d1 d758ffc 1cc14d1 d758ffc 1cc14d1 d758ffc 1cc14d1 ddb2dc9 1cc14d1 ddb2dc9 1cc14d1 ddb2dc9 11d5ed8 ddb2dc9 1cc14d1 d758ffc 3d608a7 c1e9df5 3d608a7 |
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 |
import gradio as gr
import os
import tempfile
import cv2
import numpy as np
import urllib.parse
from screencoder.main import generate_html_for_demo
from PIL import Image
import shutil
import html
import base64
from bs4 import BeautifulSoup
from pathlib import Path
# Predefined examples
examples_data = [
[
"screencoder/data/input/test1.png",
"",
"",
"",
"",
"screencoder/data/input/test1.png"
],
[
"screencoder/data/input/test2.png",
"",
"",
"",
"",
"screencoder/data/input/test2.png"
],
[
"screencoder/data/input/test3.png",
"",
"",
"",
"",
"screencoder/data/input/test3.png"
],
]
# TAILWIND_SCRIPT = "<script src='https://cdn.jsdelivr.net/npm/@tailwindcss/browser@4'></script>"
def image_to_data_url(image_path):
"""Convert an image file to a data URL for embedding in HTML."""
try:
with open(image_path, 'rb') as img_file:
img_data = img_file.read()
# Detect image type from file extension
ext = os.path.splitext(image_path)[1].lower()
mime_type = {
'.png': 'image/png',
'.jpg': 'image/jpeg',
'.jpeg': 'image/jpeg',
'.gif': 'image/gif',
'.webp': 'image/webp'
}.get(ext, 'image/png')
encoded = base64.b64encode(img_data).decode('utf-8')
return f'data:{mime_type};base64,{encoded}'
except Exception as e:
print(f"Error converting image to data URL: {e}")
return None
def patch_css_js_paths(soup: BeautifulSoup, output_dir: Path):
"""
Fix CSS and JS paths in the HTML to work with Gradio's file serving.
Converts relative paths to /file= paths or removes them if files don't exist.
"""
try:
# CSS
for link in soup.find_all("link", rel=lambda x: x and "stylesheet" in x):
href = link.get("href", "")
if href.startswith(("http", "data:")):
continue
f = output_dir / href.lstrip("./")
if f.exists():
link["href"] = f"/file={f}"
print(f"Fixed CSS path: {href} -> /file={f}")
else:
print(f"Removing non-existent CSS: {href}")
link.decompose()
# JS
for script in soup.find_all("script", src=True):
src = script["src"]
if src.startswith(("http", "data:")):
continue
f = output_dir / src.lstrip("./")
if f.exists():
script["src"] = f"/file={f}"
print(f"Fixed JS path: {src} -> /file={f}")
else:
print(f"Removing non-existent JS: {src}")
script.decompose()
except Exception as e:
print(f"Error in patch_css_js_paths: {e}")
return soup
def render_preview(code: str, width: int, height: int, scale: float) -> str:
"""
Preview renderer with both width and height control for the inner canvas.
"""
try:
soup = BeautifulSoup(code, 'html.parser')
for script in soup.find_all('script'):
src = script.get('src', '')
if src and any(pattern in src for pattern in ['assets/', 'index-', 'iframeResizer']):
script.decompose()
for link in soup.find_all('link'):
href = link.get('href', '')
if href and any(pattern in href for pattern in ['assets/', 'index-']):
link.decompose()
cleaned_code = str(soup)
except Exception as e:
print(f"Error cleaning HTML in render_preview: {e}")
# Fallback to original code if cleaning fails
cleaned_code = code
safe_code = html.escape(cleaned_code).replace("'", "'")
iframe_html = f"""
<div style="width: 100%; max-width: 100%; margin: 0 auto; overflow-x: auto; overflow-y: hidden;">
<div style="
width: 100%;
max-width: 1200px;
height: 600px;
margin: 0 auto;
display: flex;
justify-content: center;
align-items: center;
border: 1px solid #ddd;
overflow: hidden;
background: #f9fafb;
position: relative;
box-shadow: 0 4px 12px rgba(0,0,0,0.1);">
<div style="
width: {width}px;
height: {height}px;
transform: scale({scale});
transform-origin: center center;
border: none;
position: relative;">
<iframe
style="width: 100%; height: 100%; border: none; display: block;"
srcdoc='{safe_code}'>
</iframe>
</div>
</div>
</div>
"""
return iframe_html
def process_and_generate(image_np, image_path_from_state, sidebar_prompt, header_prompt, navigation_prompt, main_content_prompt):
"""
Main processing pipeline: takes an image, generates code, creates a downloadable
package, and returns the initial preview and code outputs.
"""
final_image_path = ""
is_temp_file = False
if image_path_from_state:
final_image_path = image_path_from_state
elif image_np is not None:
is_temp_file = True
with tempfile.NamedTemporaryFile(suffix=".png", delete=False) as tmp:
cv2.imwrite(tmp.name, cv2.cvtColor(image_np, cv2.COLOR_RGB2BGR))
final_image_path = tmp.name
else:
return "No image provided.", "Please upload or select an image.", gr.update(visible=False), None
instructions = {
"sidebar": sidebar_prompt, "header": header_prompt,
"navigation": navigation_prompt, "main content": main_content_prompt
}
html_content, run_id = generate_html_for_demo(final_image_path, instructions)
if not run_id: # Handle potential errors from the generator
return "Generation failed.", f"Error: {html_content}", gr.update(visible=False), None
# Rewrite image paths to be absolute for Gradio serving
# HF Spaces: Use Path objects for robust path handling
base_dir = Path(__file__).parent.resolve()
soup = BeautifulSoup(html_content, 'html.parser')
print(f"Processing HTML for run_id: {run_id}")
# Fix CSS and JS paths to work with Gradio's file serving
try:
output_dir = base_dir / 'screencoder' / 'data' / 'output' / run_id
soup = patch_css_js_paths(soup, output_dir)
except Exception as e:
print(f"Error fixing CSS/JS paths: {e}")
for img in soup.find_all('img'):
if img.get('src') and not img['src'].startswith(('http', 'data:')):
original_src = img['src']
print(f"Processing image: {original_src}")
# In HF Spaces, paths can be tricky. We'll rely on the fact
# that the image replacer creates a predictable structure.
img_path = base_dir / 'screencoder' / 'data' / 'output' / run_id / original_src
if img_path.exists():
print(f"Found image at: {img_path}")
# Convert to base64 data URL for better iframe compatibility
data_url = image_to_data_url(str(img_path))
if data_url:
print(f"Converted to data URL: {original_src}")
img['src'] = data_url
else:
# Fallback to Gradio file path (might not work in all Spaces configs)
img['src'] = f'/file={str(img_path)}'
else:
print(f"Image not found at expected path: {img_path}")
# Keep original path as fallback
img['src'] = original_src
html_content = str(soup)
output_dir = base_dir / 'screencoder' / 'data' / 'output' / run_id
packages_dir = base_dir / 'screencoder' / 'data' / 'packages'
packages_dir.mkdir(exist_ok=True)
shutil.make_archive(str(packages_dir / run_id), 'zip', str(output_dir))
package_path = packages_dir / f'{run_id}.zip'
package_url = f'/file={str(package_path)}'
if is_temp_file:
os.unlink(final_image_path)
initial_preview = render_preview(html_content, 1280, 600, 0.7)
return initial_preview, html_content, gr.update(value=package_url, visible=True)
with gr.Blocks(css="""
.main-container {
height: 100vh;
overflow: hidden;
display: flex;
flex-direction: column;
}
.content-row {
flex: 1;
overflow: hidden;
display: flex;
min-height: 0;
}
.left-column {
width: 33%;
min-width: 350px;
overflow-y: auto;
padding: 20px;
border-right: 1px solid #e0e0e0;
background: #fafafa;
display: flex;
flex-direction: column;
}
.right-column {
flex: 1;
overflow-y: auto;
padding: 20px;
background: white;
display: flex;
flex-direction: column;
}
.header {
padding: 20px;
border-bottom: 1px solid #e0e0e0;
background: white;
flex-shrink: 0;
}
.examples-section {
padding: 20px;
border-top: 1px solid #e0e0e0;
background: #f5f5f5;
flex-shrink: 0;
}
.left-column > * {
margin-bottom: 15px;
}
.right-column .tabs {
flex: 1;
display: flex;
flex-direction: column;
}
.right-column .tab-nav {
flex-shrink: 0;
}
.right-column .tab-content {
flex: 1;
overflow: auto;
}
@media (max-width: 768px) {
.content-row {
flex-direction: column;
}
.left-column, .right-column {
width: 100%;
min-width: auto;
}
}
""") as demo:
with gr.Column(elem_classes=["main-container"]):
with gr.Column(elem_classes=["header"]):
gr.Markdown("# ScreenCoder: Screenshot to Code")
with gr.Row(elem_classes=["content-row"]):
with gr.Column(elem_classes=["left-column"]):
gr.Markdown("### Step 1: Provide an Image")
active_image = gr.Image(type="numpy", height=400, value=examples_data[0][0])
upload_button = gr.UploadButton("Click to Upload", file_types=["image"], variant="primary")
gr.Markdown("### Step 2: Write Prompts (Optional)")
with gr.Accordion("Component-specific Prompts", open=False):
sidebar_prompt = gr.Textbox(label="Sidebar", placeholder="Instructions for the sidebar...")
header_prompt = gr.Textbox(label="Header", placeholder="Instructions for the header...")
navigation_prompt = gr.Textbox(label="Navigation", placeholder="Instructions for the navigation...")
main_content_prompt = gr.Textbox(label="Main Content", placeholder="Instructions for the main content...")
generate_btn = gr.Button("Generate HTML", variant="primary")
with gr.Column(elem_classes=["right-column"]):
with gr.Tabs():
with gr.TabItem("Preview"):
with gr.Row():
scale_slider = gr.Slider(0.2, 1.5, value=0.7, step=0.05, label="Zoom")
width_slider = gr.Slider(400, 1920, value=1280, step=100, label="Canvas Width (px)")
height_slider = gr.Slider(300, 1080, value=600, step=50, label="Canvas Height (px)")
html_preview = gr.HTML(label="Rendered HTML", show_label=False)
with gr.TabItem("Code"):
html_code_output = gr.Code(label="Generated HTML", language="html")
download_button = gr.Button("⬇️ Download Package", visible=False, variant="secondary")
with gr.Column(elem_classes=["examples-section"]):
gr.Examples(
examples=examples_data,
fn=lambda *args: args[0],
inputs=[gr.State(examples_data[0][0])],
outputs=[active_image],
cache_examples=False,
)
active_image_path_state = gr.State(examples_data[0][5])
def handle_example_click(img_path):
return img_path, img_path
demo.load(
lambda: (examples_data[0][0], examples_data[0][5]), None, [active_image, active_image_path_state]
)
def handle_upload(uploaded_image_np):
return uploaded_image_np, None, gr.update(visible=False)
upload_button.upload(handle_upload, upload_button, [active_image, active_image_path_state, download_button])
generate_btn.click(
process_and_generate,
[active_image, active_image_path_state, sidebar_prompt, header_prompt, navigation_prompt, main_content_prompt],
[html_preview, html_code_output, download_button],
show_progress="full"
)
preview_controls = [scale_slider, width_slider, height_slider]
for control in preview_controls:
control.change(
render_preview,
[html_code_output, width_slider, height_slider, scale_slider],
html_preview,
show_progress=True
)
download_button.click(None, download_button, None, js= \
"(url) => { const link = document.createElement('a'); link.href = url; link.download = ''; document.body.appendChild(link); link.click(); document.body.removeChild(link); }")
base_dir = Path(__file__).parent.resolve()
allowed_paths = [
str(base_dir),
str(base_dir / 'screencoder' / 'data' / 'output'),
str(base_dir / 'screencoder' / 'data' / 'packages')
]
# Add all example file paths to allowed_paths to ensure they are accessible
for example in examples_data:
# HF Spaces: Ensure the path is absolute by joining with base_dir
# The example path is relative, so we join it with the base_dir to make it absolute.
example_abs_path = (base_dir / example[0]).resolve()
example_dir = example_abs_path.parent
if str(example_dir) not in allowed_paths:
allowed_paths.append(str(example_dir))
print("Allowed paths for file serving:")
for path in allowed_paths:
print(f" - {path}")
if __name__ == "__main__":
demo.launch(
allowed_paths=allowed_paths,
server_name="0.0.0.0",
server_port=7860,
share=False
)
|