test
This commit is contained in:
220
app/page.tsx
220
app/page.tsx
@@ -1,65 +1,171 @@
|
||||
import Image from "next/image";
|
||||
"use client";
|
||||
import { useState, useRef, useEffect } from "react";
|
||||
|
||||
export default function XgridsWizard() {
|
||||
const [files, setFiles] = useState<File[]>([]);
|
||||
const [status, setStatus] = useState<string>("Waiting for upload...");
|
||||
const [isProcessing, setIsProcessing] = useState(false);
|
||||
const workerRef = useRef<Worker | null>(null);
|
||||
|
||||
useEffect(() => {
|
||||
// 1. Point to the NEW location in the /app folder
|
||||
// Next.js recognizes the 'new URL' pattern and bundles it as a separate worker
|
||||
const worker = new Worker(
|
||||
new URL("./workers/converter.worker.ts", import.meta.url),
|
||||
);
|
||||
workerRef.current = worker;
|
||||
|
||||
worker.onmessage = (e) => {
|
||||
const { type, message, data } = e.data;
|
||||
if (type === "LOG") setStatus(message);
|
||||
if (type === "DONE") {
|
||||
setIsProcessing(false);
|
||||
setStatus("Conversion Complete!");
|
||||
downloadFile(data.sog, `${data.fileName}.sog`);
|
||||
// Removed: downloadFile(data.ply, ...) — worker doesn't produce a PLY
|
||||
}
|
||||
};
|
||||
|
||||
return () => worker.terminate();
|
||||
}, []);
|
||||
|
||||
// Helper to trigger browser downloads
|
||||
const downloadFile = (blob: Blob, name: string) => {
|
||||
const url = URL.createObjectURL(blob);
|
||||
const a = document.createElement("a");
|
||||
a.href = url;
|
||||
a.download = name;
|
||||
a.click();
|
||||
URL.revokeObjectURL(url);
|
||||
};
|
||||
|
||||
const handleFolderUpload = (e: React.ChangeEvent<HTMLInputElement>) => {
|
||||
const uploadedFiles = Array.from(e.target.files || []);
|
||||
if (uploadedFiles.length > 0) {
|
||||
setFiles(uploadedFiles);
|
||||
setStatus(`Loaded ${uploadedFiles.length} files. Ready to convert.`);
|
||||
}
|
||||
};
|
||||
|
||||
const startConversion = async () => {
|
||||
if (!files.length || !workerRef.current) return;
|
||||
|
||||
setIsProcessing(true);
|
||||
setStatus("Reading files into memory (this might take a moment)...");
|
||||
|
||||
// Find the main .lcc file to act as our entry point
|
||||
const lccFile = files.find((f) => f.name.endsWith(".lcc"));
|
||||
|
||||
if (!lccFile) {
|
||||
setStatus("Error: Missing .lcc file in folder.");
|
||||
setIsProcessing(false);
|
||||
return;
|
||||
}
|
||||
|
||||
try {
|
||||
// 1. Convert all File objects into an array of { name, buffer }
|
||||
const filesData = await Promise.all(
|
||||
files.map(async (f) => ({
|
||||
name: f.name,
|
||||
buffer: await f.arrayBuffer(),
|
||||
})),
|
||||
);
|
||||
|
||||
// 2. Extract just the ArrayBuffers so we can "transfer" them to the worker efficiently
|
||||
// This prevents duplicating the 272MB data in RAM
|
||||
const buffersToTransfer = filesData.map((f) => f.buffer);
|
||||
|
||||
workerRef.current.postMessage(
|
||||
{
|
||||
type: "START_CONVERSION",
|
||||
filesData,
|
||||
mainLccName: lccFile.name,
|
||||
fileName: lccFile.name.replace(".lcc", ""), // e.g., "Wilhelm Studios"
|
||||
},
|
||||
buffersToTransfer, // Passes ownership to the worker to save memory
|
||||
);
|
||||
} catch (error) {
|
||||
console.error(error);
|
||||
setStatus("Error reading files. Check console.");
|
||||
setIsProcessing(false);
|
||||
}
|
||||
};
|
||||
|
||||
export default function Home() {
|
||||
return (
|
||||
<div className="flex min-h-screen items-center justify-center bg-zinc-50 font-sans dark:bg-black">
|
||||
<main className="flex min-h-screen w-full max-w-3xl flex-col items-center justify-between py-32 px-16 bg-white dark:bg-black sm:items-start">
|
||||
<Image
|
||||
className="dark:invert"
|
||||
src="/next.svg"
|
||||
alt="Next.js logo"
|
||||
width={100}
|
||||
height={20}
|
||||
priority
|
||||
/>
|
||||
<div className="flex flex-col items-center gap-6 text-center sm:items-start sm:text-left">
|
||||
<h1 className="max-w-xs text-3xl font-semibold leading-10 tracking-tight text-black dark:text-zinc-50">
|
||||
To get started, edit the page.tsx file.
|
||||
</h1>
|
||||
<p className="max-w-md text-lg leading-8 text-zinc-600 dark:text-zinc-400">
|
||||
Looking for a starting point or more instructions? Head over to{" "}
|
||||
<a
|
||||
href="https://vercel.com/templates?framework=next.js&utm_source=create-next-app&utm_medium=appdir-template-tw&utm_campaign=create-next-app"
|
||||
className="font-medium text-zinc-950 dark:text-zinc-50"
|
||||
>
|
||||
Templates
|
||||
</a>{" "}
|
||||
or the{" "}
|
||||
<a
|
||||
href="https://nextjs.org/learn?utm_source=create-next-app&utm_medium=appdir-template-tw&utm_campaign=create-next-app"
|
||||
className="font-medium text-zinc-950 dark:text-zinc-50"
|
||||
>
|
||||
Learning
|
||||
</a>{" "}
|
||||
center.
|
||||
<main className="min-h-screen bg-slate-900 text-white p-8 flex flex-col items-center">
|
||||
<div className="max-w-2xl w-full bg-slate-800 rounded-xl p-8 shadow-2xl border border-slate-700">
|
||||
<header className="mb-8">
|
||||
<h1 className="text-3xl font-bold mb-2">Xgrids Scene Wizard</h1>
|
||||
<p className="text-slate-400">
|
||||
Convert .lcc/.lci to SOG, LODs, and PLY meshes locally.
|
||||
</p>
|
||||
</div>
|
||||
<div className="flex flex-col gap-4 text-base font-medium sm:flex-row">
|
||||
<a
|
||||
className="flex h-12 w-full items-center justify-center gap-2 rounded-full bg-foreground px-5 text-background transition-colors hover:bg-[#383838] dark:hover:bg-[#ccc] md:w-[158px]"
|
||||
href="https://vercel.com/new?utm_source=create-next-app&utm_medium=appdir-template-tw&utm_campaign=create-next-app"
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
>
|
||||
<Image
|
||||
className="dark:invert"
|
||||
src="/vercel.svg"
|
||||
alt="Vercel logomark"
|
||||
width={16}
|
||||
height={16}
|
||||
</header>
|
||||
|
||||
<div className="space-y-6">
|
||||
<div className="border-2 border-dashed border-slate-600 rounded-lg p-10 text-center hover:border-blue-500 transition-colors">
|
||||
<input
|
||||
type="file"
|
||||
id="folder-upload"
|
||||
//@ts-ignore
|
||||
webkitdirectory=""
|
||||
directory=""
|
||||
className="hidden"
|
||||
onChange={handleFolderUpload}
|
||||
/>
|
||||
Deploy Now
|
||||
</a>
|
||||
<a
|
||||
className="flex h-12 w-full items-center justify-center rounded-full border border-solid border-black/[.08] px-5 transition-colors hover:border-transparent hover:bg-black/[.04] dark:border-white/[.145] dark:hover:bg-[#1a1a1a] md:w-[158px]"
|
||||
href="https://nextjs.org/docs?utm_source=create-next-app&utm_medium=appdir-template-tw&utm_campaign=create-next-app"
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
<label htmlFor="folder-upload" className="cursor-pointer">
|
||||
<span className="bg-blue-600 px-6 py-3 rounded-md font-medium hover:bg-blue-500 transition-colors inline-block">
|
||||
Select Xgrids Folder
|
||||
</span>
|
||||
<p className="mt-4 text-sm text-slate-500 italic">
|
||||
{files.length > 0
|
||||
? `${files.length} files selected`
|
||||
: "Drag and drop or click to browse"}
|
||||
</p>
|
||||
</label>
|
||||
</div>
|
||||
|
||||
<div className="bg-black/40 p-4 rounded-md font-mono text-sm border border-slate-700">
|
||||
<p
|
||||
className={`${isProcessing ? "text-yellow-400" : "text-emerald-400"}`}
|
||||
>
|
||||
{"> "} {status}
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<button
|
||||
onClick={startConversion}
|
||||
disabled={files.length === 0 || isProcessing}
|
||||
className="w-full py-4 bg-emerald-600 hover:bg-emerald-500 disabled:bg-slate-700 disabled:text-slate-500 disabled:cursor-not-allowed rounded-lg font-bold transition-all shadow-lg"
|
||||
>
|
||||
Documentation
|
||||
</a>
|
||||
{isProcessing ? (
|
||||
<span className="flex items-center justify-center gap-2">
|
||||
<svg
|
||||
className="animate-spin h-5 w-5 text-white"
|
||||
viewBox="0 0 24 24"
|
||||
>
|
||||
<circle
|
||||
className="opacity-25"
|
||||
cx="12"
|
||||
cy="12"
|
||||
r="10"
|
||||
stroke="currentColor"
|
||||
strokeWidth="4"
|
||||
fill="none"
|
||||
/>
|
||||
<path
|
||||
className="opacity-75"
|
||||
fill="currentColor"
|
||||
d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"
|
||||
/>
|
||||
</svg>
|
||||
Processing...
|
||||
</span>
|
||||
) : (
|
||||
"Generate Scene Files"
|
||||
)}
|
||||
</button>
|
||||
</div>
|
||||
</main>
|
||||
</div>
|
||||
</div>
|
||||
</main>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user