mirror of
https://github.com/PeterMaquiran/tvone.git
synced 2026-04-18 07:17:52 +00:00
fix
This commit is contained in:
@@ -0,0 +1,188 @@
|
||||
"use client";
|
||||
import React, { useState, useCallback } from "react";
|
||||
import Cropper from "react-easy-crop";
|
||||
|
||||
const RATIOS = [
|
||||
{ label: "Hero Banner (Ultra Wide)", value: 21 / 9, text: "21/9" },
|
||||
{ label: "News Feed (Widescreen)", value: 16 / 9, text: "16/9" },
|
||||
{ label: "Profile / Post (Square)", value: 1 / 1, text: "1/1" },
|
||||
];
|
||||
|
||||
export default function FullPageEditor() {
|
||||
const [image, setImage] = useState<string | null>(null);
|
||||
const [crops, setCrops] = useState<Record<string, any>>(
|
||||
RATIOS.reduce((acc, r) => ({ ...acc, [r.text]: { x: 0, y: 0, zoom: 1 } }), {})
|
||||
);
|
||||
const [completedCrops, setCompletedCrops] = useState<Record<string, any>>({});
|
||||
const [isExporting, setIsExporting] = useState(false);
|
||||
const [results, setResults] = useState<Record<string, string>>({});
|
||||
|
||||
const onSelectFile = (e: React.ChangeEvent<HTMLInputElement>) => {
|
||||
if (e.target.files && e.target.files.length > 0) {
|
||||
const reader = new FileReader();
|
||||
reader.onload = () => setImage(reader.result as string);
|
||||
reader.readAsDataURL(e.target.files[0]);
|
||||
}
|
||||
};
|
||||
|
||||
const handleExport = async () => {
|
||||
setIsExporting(true);
|
||||
const bundle: Record<string, string> = {};
|
||||
for (const ratio of RATIOS) {
|
||||
const crop = completedCrops[ratio.text];
|
||||
if (crop) bundle[ratio.text] = await getCroppedImg(image!, crop);
|
||||
}
|
||||
setResults(bundle);
|
||||
setIsExporting(false);
|
||||
};
|
||||
|
||||
return (
|
||||
<div className="min-h-screen bg-zinc-950 text-zinc-100 font-sans selection:bg-indigo-500">
|
||||
{/* 1. Global Navigation */}
|
||||
<nav className="sticky top-0 z-50 border-b border-zinc-800 bg-zinc-950/80 backdrop-blur-md px-8 py-4 flex items-center justify-between">
|
||||
<div className="flex items-center gap-4">
|
||||
<div className="bg-indigo-600 p-2 rounded-lg font-black text-xs">FIX</div>
|
||||
<h1 className="text-lg font-bold tracking-tighter">IMAGE FRAMER <span className="text-zinc-500 font-medium text-sm ml-2">PRO v3.0</span></h1>
|
||||
</div>
|
||||
|
||||
<div className="flex gap-4">
|
||||
<label className="cursor-pointer bg-zinc-800 hover:bg-zinc-700 text-sm font-bold px-5 py-2 rounded-full transition-all border border-zinc-700">
|
||||
{image ? "New Photo" : "Upload Source"}
|
||||
<input type="file" accept="image/*" className="hidden" onChange={onSelectFile} />
|
||||
</label>
|
||||
{image && (
|
||||
<button
|
||||
onClick={handleExport}
|
||||
className="bg-indigo-600 hover:bg-indigo-500 text-white text-sm font-bold px-8 py-2 rounded-full shadow-lg shadow-indigo-900/20 transition-all active:scale-95"
|
||||
>
|
||||
{isExporting ? "Processing..." : "Generate Base64"}
|
||||
</button>
|
||||
)}
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
{/* 2. Workspace Area */}
|
||||
<main className="max-w-screen-xl mx-auto p-8 space-y-20">
|
||||
{!image ? (
|
||||
<div className="h-[70vh] flex flex-col items-center justify-center border-2 border-dashed border-zinc-800 rounded-[3rem] bg-zinc-900/30">
|
||||
<div className="w-20 h-20 bg-zinc-800 rounded-full flex items-center justify-center text-3xl mb-6">📁</div>
|
||||
<h2 className="text-2xl font-bold mb-2">Editor is Empty</h2>
|
||||
<p className="text-zinc-500 max-w-xs text-center">Upload a high-resolution image to begin the multi-aspect framing process.</p>
|
||||
</div>
|
||||
) : (
|
||||
<div className="space-y-32 pb-40">
|
||||
{RATIOS.map((ratio) => (
|
||||
<section key={ratio.text} className="group">
|
||||
{/* Section Header */}
|
||||
<div className="flex items-end justify-between mb-6 border-b border-zinc-800 pb-4">
|
||||
<div>
|
||||
<span className="text-indigo-500 text-xs font-black uppercase tracking-[0.2em]">Aspect Ratio</span>
|
||||
<h3 className="text-3xl font-bold mt-1">{ratio.label}</h3>
|
||||
</div>
|
||||
<div className="text-right">
|
||||
<p className="text-zinc-500 text-xs font-mono uppercase">Current Zoom</p>
|
||||
<p className="text-2xl font-black">{Math.round((crops[ratio.text]?.zoom || 1) * 100)}%</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{/* BIG Editor Window */}
|
||||
<div className="relative w-full overflow-hidden rounded-[2rem] bg-zinc-900 shadow-2xl ring-1 ring-zinc-800 h-[600px]">
|
||||
<Cropper
|
||||
image={image}
|
||||
crop={{ x: crops[ratio.text].x, y: crops[ratio.text].y }}
|
||||
zoom={crops[ratio.text].zoom}
|
||||
aspect={ratio.value}
|
||||
onCropChange={(c) => setCrops(prev => ({ ...prev, [ratio.text]: { ...prev[ratio.text], ...c } }))}
|
||||
onZoomChange={(z) => setCrops(prev => ({ ...prev, [ratio.text]: { ...prev[ratio.text], zoom: z } }))}
|
||||
onCropComplete={(_, px) => setCompletedCrops(prev => ({ ...prev, [ratio.text]: px }))}
|
||||
objectFit="cover"
|
||||
showGrid={true}
|
||||
/>
|
||||
</div>
|
||||
|
||||
{/* Floating Zoom Control (Large & Accessible) */}
|
||||
<div className="mt-8 flex items-center gap-8 bg-zinc-900/50 p-6 rounded-2xl border border-zinc-800">
|
||||
<span className="text-xs font-bold text-zinc-500 uppercase tracking-widest min-w-[80px]">Adjust Zoom</span>
|
||||
<input
|
||||
type="range"
|
||||
min={1}
|
||||
max={3}
|
||||
step={0.01}
|
||||
value={crops[ratio.text].zoom}
|
||||
onChange={(e) => setCrops(prev => ({ ...prev, [ratio.text]: { ...prev[ratio.text], zoom: Number(e.target.value) } }))}
|
||||
className="flex-1 accent-indigo-500 h-2 bg-zinc-800 rounded-lg appearance-none cursor-pointer"
|
||||
/>
|
||||
<button
|
||||
onClick={() => setCrops(prev => ({ ...prev, [ratio.text]: { x:0, y:0, zoom: 1 } }))}
|
||||
className="text-[10px] font-black uppercase tracking-widest text-zinc-600 hover:text-white"
|
||||
>
|
||||
Reset
|
||||
</button>
|
||||
</div>
|
||||
</section>
|
||||
))}
|
||||
</div>
|
||||
)}
|
||||
</main>
|
||||
|
||||
{/* 3. Global Results Modal/Area */}
|
||||
{Object.keys(results).length > 0 && (
|
||||
<div className="fixed inset-0 z-[100] bg-zinc-950 flex flex-col">
|
||||
<header className="p-8 border-b border-zinc-800 flex justify-between items-center">
|
||||
<h2 className="text-2xl font-black">EXPORT BUNDLE</h2>
|
||||
<button onClick={() => setResults({})} className="text-zinc-500 hover:text-white font-bold">Close Editor</button>
|
||||
</header>
|
||||
<div className="flex-1 overflow-y-auto p-8 grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
|
||||
{Object.entries(results).map(([ratio, b64]) => (
|
||||
<div key={ratio} className="bg-zinc-900 rounded-3xl p-6 space-y-4 border border-zinc-800">
|
||||
<div className="flex justify-between items-center">
|
||||
<span className="text-xs font-bold text-indigo-500 uppercase">{ratio} Result</span>
|
||||
<button
|
||||
onClick={() => {navigator.clipboard.writeText(b64); alert('Copied!');}}
|
||||
className="text-[10px] bg-indigo-600 px-3 py-1 rounded-full font-bold"
|
||||
>
|
||||
Copy Base64
|
||||
</button>
|
||||
</div>
|
||||
<img src={b64} className="w-full rounded-xl border border-white/5 shadow-lg" alt="Crop preview" />
|
||||
<textarea
|
||||
readOnly
|
||||
value={b64}
|
||||
className="w-full h-24 bg-zinc-950 text-[10px] font-mono p-4 rounded-xl border-none outline-none text-zinc-600"
|
||||
/>
|
||||
</div>
|
||||
))}
|
||||
</div>
|
||||
</div>
|
||||
)}
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
/* ---------------- CANVAS EXPORT UTILITY ---------------- */
|
||||
async function getCroppedImg(imageSrc: string, pixelCrop: any): Promise<string> {
|
||||
const image = new Image();
|
||||
image.src = imageSrc;
|
||||
await new Promise((resolve) => (image.onload = resolve));
|
||||
|
||||
const canvas = document.createElement("canvas");
|
||||
const ctx = canvas.getContext("2d");
|
||||
if (!ctx) return "";
|
||||
|
||||
canvas.width = pixelCrop.width;
|
||||
canvas.height = pixelCrop.height;
|
||||
|
||||
ctx.drawImage(
|
||||
image,
|
||||
pixelCrop.x,
|
||||
pixelCrop.y,
|
||||
pixelCrop.width,
|
||||
pixelCrop.height,
|
||||
0,
|
||||
0,
|
||||
pixelCrop.width,
|
||||
pixelCrop.height
|
||||
);
|
||||
|
||||
return canvas.toDataURL("image/jpeg", 0.9);
|
||||
}
|
||||
+2
-1
@@ -13,7 +13,8 @@
|
||||
"lucide-react": "^1.8.0",
|
||||
"next": "16.2.1",
|
||||
"react": "19.2.4",
|
||||
"react-dom": "19.2.4"
|
||||
"react-dom": "19.2.4",
|
||||
"react-easy-crop": "^5.5.7"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@tailwindcss/postcss": "^4",
|
||||
|
||||
Generated
+21
@@ -23,6 +23,9 @@ importers:
|
||||
react-dom:
|
||||
specifier: 19.2.4
|
||||
version: 19.2.4(react@19.2.4)
|
||||
react-easy-crop:
|
||||
specifier: ^5.5.7
|
||||
version: 5.5.7(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
|
||||
devDependencies:
|
||||
'@tailwindcss/postcss':
|
||||
specifier: ^4
|
||||
@@ -1596,6 +1599,9 @@ packages:
|
||||
node-releases@2.0.36:
|
||||
resolution: {integrity: sha512-TdC8FSgHz8Mwtw9g5L4gR/Sh9XhSP/0DEkQxfEFXOpiul5IiHgHan2VhYYb6agDSfp4KuvltmGApc8HMgUrIkA==}
|
||||
|
||||
normalize-wheel@1.0.1:
|
||||
resolution: {integrity: sha512-1OnlAPZ3zgrk8B91HyRj+eVv+kS5u+Z0SCsak6Xil/kmgEia50ga7zfkumayonZrImffAxPU/5WcyGhzetHNPA==}
|
||||
|
||||
object-assign@4.1.1:
|
||||
resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
|
||||
engines: {node: '>=0.10.0'}
|
||||
@@ -1701,6 +1707,12 @@ packages:
|
||||
peerDependencies:
|
||||
react: ^19.2.4
|
||||
|
||||
react-easy-crop@5.5.7:
|
||||
resolution: {integrity: sha512-kYo4NtMeXFQB7h1U+h5yhUkE46WQbQdq7if54uDlbMdZHdRgNehfvaFrXnFw5NR1PNoUOJIfTwLnWmEx/MaZnA==}
|
||||
peerDependencies:
|
||||
react: '>=16.4.0'
|
||||
react-dom: '>=16.4.0'
|
||||
|
||||
react-is@16.13.1:
|
||||
resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==}
|
||||
|
||||
@@ -3597,6 +3609,8 @@ snapshots:
|
||||
|
||||
node-releases@2.0.36: {}
|
||||
|
||||
normalize-wheel@1.0.1: {}
|
||||
|
||||
object-assign@4.1.1: {}
|
||||
|
||||
object-inspect@1.13.4: {}
|
||||
@@ -3709,6 +3723,13 @@ snapshots:
|
||||
react: 19.2.4
|
||||
scheduler: 0.27.0
|
||||
|
||||
react-easy-crop@5.5.7(react-dom@19.2.4(react@19.2.4))(react@19.2.4):
|
||||
dependencies:
|
||||
normalize-wheel: 1.0.1
|
||||
react: 19.2.4
|
||||
react-dom: 19.2.4(react@19.2.4)
|
||||
tslib: 2.8.1
|
||||
|
||||
react-is@16.13.1: {}
|
||||
|
||||
react@19.2.4: {}
|
||||
|
||||
Reference in New Issue
Block a user