Spaces:
Running
Running
File size: 21,220 Bytes
f8b1f67 |
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 420 421 422 423 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>HTML to React Converter</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
.dropzone {
border: 2px dashed #9CA3AF;
transition: all 0.3s ease;
}
.dropzone.active {
border-color: #3B82F6;
background-color: #EFF6FF;
}
.code-block {
font-family: 'Courier New', monospace;
background-color: #1E293B;
color: #F8FAFC;
border-radius: 0.5rem;
overflow-x: auto;
}
.tab-button {
transition: all 0.2s ease;
}
.tab-button.active {
border-bottom: 2px solid #3B82F6;
color: #3B82F6;
}
.spinner {
animation: spin 1s linear infinite;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
</style>
</head>
<body class="bg-gray-50 min-h-screen">
<div class="container mx-auto px-4 py-8 max-w-6xl">
<!-- Header -->
<header class="mb-10 text-center">
<h1 class="text-4xl font-bold text-gray-800 mb-2">
<span class="text-blue-600">HTML</span> to <span class="text-cyan-500">React</span> Converter
</h1>
<p class="text-gray-600 max-w-2xl mx-auto">
Transform your HTML, CSS, and JavaScript files into fully functional React components using AI.
Upload your files and let our system generate clean, modern React code.
</p>
</header>
<!-- Main Content -->
<main>
<!-- Upload Section -->
<div class="bg-white rounded-xl shadow-md p-6 mb-8">
<div class="flex flex-col items-center">
<div
id="dropzone"
class="dropzone w-full max-w-3xl rounded-lg p-12 text-center cursor-pointer mb-4"
>
<div class="flex flex-col items-center justify-center">
<i class="fas fa-cloud-upload-alt text-4xl text-gray-400 mb-4"></i>
<h3 class="text-lg font-medium text-gray-700 mb-2">
Drag & drop your files here
</h3>
<p class="text-gray-500 text-sm mb-4">
Or click to browse your files (HTML, CSS, JS)
</p>
<button class="bg-blue-600 hover:bg-blue-700 text-white px-6 py-2 rounded-md transition">
Select Files
</button>
</div>
<input
type="file"
id="fileInput"
class="hidden"
multiple
accept=".html,.css,.js,.jsx,.ts,.tsx"
>
</div>
<div id="fileList" class="w-full max-w-3xl space-y-2 hidden"></div>
</div>
</div>
<!-- Configuration Options -->
<div class="bg-white rounded-xl shadow-md p-6 mb-8">
<h2 class="text-xl font-semibold text-gray-800 mb-4">Conversion Options</h2>
<div class="grid grid-cols-1 md:grid-cols-2 gap-6">
<div>
<label class="block text-sm font-medium text-gray-700 mb-1">React Version</label>
<select class="w-full rounded-md border-gray-300 shadow-sm focus:border-blue-500 focus:ring-blue-500">
<option>React 18 (Latest)</option>
<option>React 17</option>
<option>React 16</option>
</select>
</div>
<div>
<label class="block text-sm font-medium text-gray-700 mb-1">JavaScript Type</label>
<select class="w-full rounded-md border-gray-300 shadow-sm focus:border-blue-500 focus:ring-blue-500">
<option>JavaScript (ES6+)</option>
<option>TypeScript</option>
</select>
</div>
<div>
<label class="block text-sm font-medium text-gray-700 mb-1">CSS Handling</label>
<select class="w-full rounded-md border-gray-300 shadow-sm focus:border-blue-500 focus:ring-blue-500">
<option>CSS Modules</option>
<option>Styled Components</option>
<option>Tailwind CSS</option>
<option>Plain CSS</option>
</select>
</div>
<div>
<label class="block text-sm font-medium text-gray-700 mb-1">Component Type</label>
<select class="w-full rounded-md border-gray-300 shadow-sm focus:border-blue-500 focus:ring-blue-500">
<option>Functional Components</option>
<option>Class Components</option>
</select>
</div>
</div>
<div class="mt-6">
<label class="inline-flex items-center">
<input type="checkbox" class="rounded border-gray-300 text-blue-600 shadow-sm focus:border-blue-300 focus:ring focus:ring-offset-0 focus:ring-blue-200 focus:ring-opacity-50">
<span class="ml-2 text-sm text-gray-700">Include React Router setup</span>
</label>
</div>
</div>
<!-- Processing Section -->
<div id="processingSection" class="hidden bg-white rounded-xl shadow-md p-6 mb-8">
<div class="flex flex-col items-center justify-center py-8">
<div class="spinner text-4xl text-blue-600 mb-4">
<i class="fas fa-cog"></i>
</div>
<h3 class="text-xl font-medium text-gray-800 mb-2">Processing your files</h3>
<p class="text-gray-600 mb-4">Our AI is analyzing your code and generating React components...</p>
<div class="w-full max-w-md bg-gray-200 rounded-full h-2.5">
<div id="progressBar" class="bg-blue-600 h-2.5 rounded-full" style="width: 0%"></div>
</div>
<p id="progressText" class="text-sm text-gray-500 mt-2">0% complete</p>
</div>
</div>
<!-- Results Section -->
<div id="resultsSection" class="hidden bg-white rounded-xl shadow-md p-6">
<div class="flex justify-between items-center mb-6">
<h2 class="text-xl font-semibold text-gray-800">Generated React Application</h2>
<button id="downloadAll" class="bg-green-600 hover:bg-green-700 text-white px-4 py-2 rounded-md text-sm flex items-center">
<i class="fas fa-download mr-2"></i> Download All
</button>
</div>
<div class="border-b border-gray-200 mb-4">
<nav class="-mb-px flex space-x-8">
<button class="tab-button active py-4 px-1 border-b-2 font-medium text-sm">
Components
</button>
<button class="tab-button py-4 px-1 border-b-2 font-medium text-sm">
App.js
</button>
<button class="tab-button py-4 px-1 border-b-2 font-medium text-sm">
Styles
</button>
<button class="tab-button py-4 px-1 border-b-2 font-medium text-sm">
Package.json
</button>
</nav>
</div>
<div class="mb-4 flex justify-between items-center">
<div class="flex space-x-2">
<button class="bg-gray-100 hover:bg-gray-200 text-gray-800 px-3 py-1 rounded-md text-sm">
<i class="fas fa-copy mr-1"></i> Copy
</button>
<button class="bg-gray-100 hover:bg-gray-200 text-gray-800 px-3 py-1 rounded-md text-sm">
<i class="fas fa-download mr-1"></i> Download
</button>
</div>
<div class="text-sm text-gray-500">
<span class="font-medium">File:</span> MainComponent.jsx
</div>
</div>
<div class="code-block p-4 mb-6">
<pre id="generatedCode" class="text-sm"><code class="language-javascript">// Generated code will appear here</code></pre>
</div>
<div class="bg-blue-50 border-l-4 border-blue-400 p-4 mb-6">
<div class="flex">
<div class="flex-shrink-0">
<i class="fas fa-info-circle text-blue-400"></i>
</div>
<div class="ml-3">
<h3 class="text-sm font-medium text-blue-800">AI Suggestions</h3>
<div class="mt-2 text-sm text-blue-700">
<p>
The AI detected that your HTML includes form elements. Consider using React Hook Form
for better form management. Would you like to add this dependency to your package.json?
</p>
</div>
<div class="mt-4">
<button class="inline-flex items-center px-3 py-1 border border-transparent text-xs font-medium rounded shadow-sm text-white bg-blue-600 hover:bg-blue-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-blue-500">
Add React Hook Form
</button>
</div>
</div>
</div>
</div>
<div class="bg-gray-50 p-4 rounded-md">
<h3 class="text-sm font-medium text-gray-800 mb-2">Project Structure</h3>
<div class="text-sm text-gray-700 font-mono">
<div class="pl-4">βββ src/</div>
<div class="pl-8">βββ components/</div>
<div class="pl-12">βββ MainComponent.jsx</div>
<div class="pl-12">βββ Header.jsx</div>
<div class="pl-12">βββ Footer.jsx</div>
<div class="pl-8">βββ styles/</div>
<div class="pl-12">βββ main.module.css</div>
<div class="pl-8">βββ App.js</div>
<div class="pl-8">βββ index.js</div>
<div class="pl-4">βββ public/</div>
<div class="pl-4">βββ package.json</div>
</div>
</div>
</div>
</main>
<!-- Footer -->
<footer class="mt-12 text-center text-gray-500 text-sm">
<p>Powered by AI technology. This tool uses open-source LLMs to analyze and convert your code.</p>
<p class="mt-1">Not affiliated with Facebook or the React team.</p>
</footer>
</div>
<script>
document.addEventListener('DOMContentLoaded', function() {
const dropzone = document.getElementById('dropzone');
const fileInput = document.getElementById('fileInput');
const fileList = document.getElementById('fileList');
const processingSection = document.getElementById('processingSection');
const resultsSection = document.getElementById('resultsSection');
const progressBar = document.getElementById('progressBar');
const progressText = document.getElementById('progressText');
const generatedCode = document.getElementById('generatedCode');
const downloadAll = document.getElementById('downloadAll');
// Tab switching
const tabButtons = document.querySelectorAll('.tab-button');
tabButtons.forEach(button => {
button.addEventListener('click', () => {
tabButtons.forEach(btn => btn.classList.remove('active'));
button.classList.add('active');
});
});
// Dropzone highlight
['dragenter', 'dragover'].forEach(eventName => {
dropzone.addEventListener(eventName, highlight, false);
});
['dragleave', 'drop'].forEach(eventName => {
dropzone.addEventListener(eventName, unhighlight, false);
});
function highlight(e) {
e.preventDefault();
e.stopPropagation();
dropzone.classList.add('active');
}
function unhighlight(e) {
e.preventDefault();
e.stopPropagation();
dropzone.classList.remove('active');
}
// Handle dropped files
dropzone.addEventListener('drop', handleDrop, false);
dropzone.addEventListener('click', () => fileInput.click());
fileInput.addEventListener('change', handleFiles);
function handleDrop(e) {
const dt = e.dataTransfer;
const files = dt.files;
handleFiles({ target: { files } });
}
function handleFiles(e) {
const files = e.target.files;
if (files.length === 0) return;
fileList.innerHTML = '';
fileList.classList.remove('hidden');
for (let i = 0; i < files.length; i++) {
const file = files[i];
const fileItem = document.createElement('div');
fileItem.className = 'flex items-center p-3 bg-gray-50 rounded-md';
fileItem.innerHTML = `
<i class="fas ${getFileIcon(file.name)} text-gray-500 mr-3"></i>
<div class="flex-1">
<div class="text-sm font-medium text-gray-800">${file.name}</div>
<div class="text-xs text-gray-500">${formatFileSize(file.size)}</div>
</div>
<button class="text-red-500 hover:text-red-700">
<i class="fas fa-times"></i>
</button>
`;
fileList.appendChild(fileItem);
// Remove file handler
fileItem.querySelector('button').addEventListener('click', () => {
fileItem.remove();
if (fileList.children.length === 0) {
fileList.classList.add('hidden');
}
});
}
// Show process button if not already showing
if (!document.getElementById('processBtn')) {
const processBtn = document.createElement('button');
processBtn.id = 'processBtn';
processBtn.className = 'bg-blue-600 hover:bg-blue-700 text-white px-6 py-2 rounded-md transition mt-4 flex items-center justify-center w-full max-w-xs mx-auto';
processBtn.innerHTML = '<i class="fas fa-magic mr-2"></i> Convert to React';
processBtn.addEventListener('click', processFiles);
dropzone.parentNode.insertBefore(processBtn, dropzone.nextSibling);
}
}
function getFileIcon(filename) {
const ext = filename.split('.').pop().toLowerCase();
if (['html', 'htm'].includes(ext)) return 'fa-file-code';
if (['css'].includes(ext)) return 'fa-file-alt';
if (['js', 'jsx', 'ts', 'tsx'].includes(ext)) return 'fa-file-code';
return 'fa-file';
}
function formatFileSize(bytes) {
if (bytes === 0) return '0 Bytes';
const k = 1024;
const sizes = ['Bytes', 'KB', 'MB', 'GB'];
const i = Math.floor(Math.log(bytes) / Math.log(k));
return parseFloat((bytes / Math.pow(k, i)).toFixed(2)) + ' ' + sizes[i];
}
function processFiles() {
processingSection.classList.remove('hidden');
// Simulate processing with progress updates
let progress = 0;
const interval = setInterval(() => {
progress += Math.random() * 10;
if (progress > 100) progress = 100;
progressBar.style.width = `${progress}%`;
progressText.textContent = `${Math.round(progress)}% complete`;
if (progress === 100) {
clearInterval(interval);
setTimeout(showResults, 500);
}
}, 500);
}
function showResults() {
processingSection.classList.add('hidden');
resultsSection.classList.remove('hidden');
// Scroll to results
resultsSection.scrollIntoView({ behavior: 'smooth' });
// Generate sample React code (in a real app, this would come from the AI)
generatedCode.innerHTML = `
import React from 'react';
import styles from './MainComponent.module.css';
const MainComponent = () => {
const [count, setCount] = React.useState(0);
const handleClick = () => {
setCount(prev => prev + 1);
};
return (
<div className={styles.container}>
<h1 className={styles.title}>Converted to React!</h1>
<p className={styles.description}>
This component was automatically generated from your HTML.
</p>
<button
onClick={handleClick}
className={styles.button}
>
Click me: {count}
</button>
</div>
);
};
export default MainComponent;
`.trim();
// Highlight code (in a real app, you'd use a proper syntax highlighter)
generatedCode.innerHTML = generatedCode.innerHTML
.replace(/\/\/.*$/gm, '<span class="text-gray-400">$&</span>')
.replace(/(['"])(?:(?=(\\?))\2.)*?\1/g, '<span class="text-green-400">$&</span>')
.replace(/\b(import|from|export|default|const|return|React\.useState)\b/g, '<span class="text-purple-400">$&</span>')
.replace(/\b(div|h1|p|button)\b/g, '<span class="text-blue-400">$&</span>')
.replace(/\b(className|onClick)\b/g, '<span class="text-yellow-400">$&</span>');
}
// Download all handler
downloadAll.addEventListener('click', () => {
alert('In a real implementation, this would download a zip file with all generated React files.');
});
});
</script>
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 𧬠<a href="https://enzostvs-deepsite.hf.space?remix=hharris928/html-to-react" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |