144 lines
4.8 KiB
TypeScript
144 lines
4.8 KiB
TypeScript
|
|
'use client';
|
|||
|
|
|
|||
|
|
import { useState } from 'react';
|
|||
|
|
import { X, Image } from 'lucide-react';
|
|||
|
|
|
|||
|
|
interface NewImageDialogProps {
|
|||
|
|
isOpen: boolean;
|
|||
|
|
onClose: () => void;
|
|||
|
|
onCreate: (width: number, height: number, backgroundColor: string) => void;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
const PRESETS = [
|
|||
|
|
{ name: 'Custom', width: 800, height: 600 },
|
|||
|
|
{ name: '1920×1080 (Full HD)', width: 1920, height: 1080 },
|
|||
|
|
{ name: '1280×720 (HD)', width: 1280, height: 720 },
|
|||
|
|
{ name: '800×600', width: 800, height: 600 },
|
|||
|
|
{ name: '640×480', width: 640, height: 480 },
|
|||
|
|
];
|
|||
|
|
|
|||
|
|
export function NewImageDialog({ isOpen, onClose, onCreate }: NewImageDialogProps) {
|
|||
|
|
const [width, setWidth] = useState(800);
|
|||
|
|
const [height, setHeight] = useState(600);
|
|||
|
|
const [backgroundColor, setBackgroundColor] = useState('#ffffff');
|
|||
|
|
|
|||
|
|
if (!isOpen) return null;
|
|||
|
|
|
|||
|
|
const handleCreate = () => {
|
|||
|
|
onCreate(width, height, backgroundColor);
|
|||
|
|
onClose();
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
return (
|
|||
|
|
<div className="fixed inset-0 z-50 flex items-center justify-center bg-black/50" onClick={onClose}>
|
|||
|
|
<div
|
|||
|
|
className="bg-card border border-border rounded-lg shadow-lg w-full max-w-md"
|
|||
|
|
onClick={(e) => e.stopPropagation()}
|
|||
|
|
>
|
|||
|
|
{/* Header */}
|
|||
|
|
<div className="flex items-center justify-between p-4 border-b border-border">
|
|||
|
|
<h2 className="text-lg font-semibold text-card-foreground">New Image</h2>
|
|||
|
|
<button
|
|||
|
|
onClick={onClose}
|
|||
|
|
className="p-1 hover:bg-accent rounded transition-colors"
|
|||
|
|
>
|
|||
|
|
<X className="h-5 w-5" />
|
|||
|
|
</button>
|
|||
|
|
</div>
|
|||
|
|
|
|||
|
|
{/* Content */}
|
|||
|
|
<div className="p-4 space-y-4">
|
|||
|
|
{/* Presets */}
|
|||
|
|
<div className="space-y-2">
|
|||
|
|
<label className="text-sm font-medium text-card-foreground">
|
|||
|
|
Presets
|
|||
|
|
</label>
|
|||
|
|
<select
|
|||
|
|
className="w-full px-3 py-2 rounded-md border border-border bg-background text-foreground"
|
|||
|
|
onChange={(e) => {
|
|||
|
|
const preset = PRESETS[Number(e.target.value)];
|
|||
|
|
setWidth(preset.width);
|
|||
|
|
setHeight(preset.height);
|
|||
|
|
}}
|
|||
|
|
>
|
|||
|
|
{PRESETS.map((preset, index) => (
|
|||
|
|
<option key={index} value={index}>
|
|||
|
|
{preset.name}
|
|||
|
|
</option>
|
|||
|
|
))}
|
|||
|
|
</select>
|
|||
|
|
</div>
|
|||
|
|
|
|||
|
|
{/* Dimensions */}
|
|||
|
|
<div className="grid grid-cols-2 gap-4">
|
|||
|
|
<div className="space-y-2">
|
|||
|
|
<label className="text-sm font-medium text-card-foreground">
|
|||
|
|
Width
|
|||
|
|
</label>
|
|||
|
|
<input
|
|||
|
|
type="number"
|
|||
|
|
min="1"
|
|||
|
|
max="4000"
|
|||
|
|
value={width}
|
|||
|
|
onChange={(e) => setWidth(Number(e.target.value))}
|
|||
|
|
className="w-full px-3 py-2 rounded-md border border-border bg-background text-foreground"
|
|||
|
|
/>
|
|||
|
|
</div>
|
|||
|
|
<div className="space-y-2">
|
|||
|
|
<label className="text-sm font-medium text-card-foreground">
|
|||
|
|
Height
|
|||
|
|
</label>
|
|||
|
|
<input
|
|||
|
|
type="number"
|
|||
|
|
min="1"
|
|||
|
|
max="4000"
|
|||
|
|
value={height}
|
|||
|
|
onChange={(e) => setHeight(Number(e.target.value))}
|
|||
|
|
className="w-full px-3 py-2 rounded-md border border-border bg-background text-foreground"
|
|||
|
|
/>
|
|||
|
|
</div>
|
|||
|
|
</div>
|
|||
|
|
|
|||
|
|
{/* Background Color */}
|
|||
|
|
<div className="space-y-2">
|
|||
|
|
<label className="text-sm font-medium text-card-foreground">
|
|||
|
|
Background Color
|
|||
|
|
</label>
|
|||
|
|
<div className="flex gap-2">
|
|||
|
|
<input
|
|||
|
|
type="color"
|
|||
|
|
value={backgroundColor}
|
|||
|
|
onChange={(e) => setBackgroundColor(e.target.value)}
|
|||
|
|
className="w-20 h-10 rounded-md border border-border cursor-pointer"
|
|||
|
|
/>
|
|||
|
|
<input
|
|||
|
|
type="text"
|
|||
|
|
value={backgroundColor}
|
|||
|
|
onChange={(e) => setBackgroundColor(e.target.value)}
|
|||
|
|
className="flex-1 px-3 py-2 rounded-md border border-border bg-background text-foreground font-mono uppercase"
|
|||
|
|
/>
|
|||
|
|
</div>
|
|||
|
|
</div>
|
|||
|
|
</div>
|
|||
|
|
|
|||
|
|
{/* Footer */}
|
|||
|
|
<div className="flex justify-end gap-2 p-4 border-t border-border">
|
|||
|
|
<button
|
|||
|
|
onClick={onClose}
|
|||
|
|
className="px-4 py-2 rounded-md hover:bg-accent transition-colors"
|
|||
|
|
>
|
|||
|
|
Cancel
|
|||
|
|
</button>
|
|||
|
|
<button
|
|||
|
|
onClick={handleCreate}
|
|||
|
|
className="flex items-center gap-2 px-4 py-2 rounded-md bg-primary text-primary-foreground hover:bg-primary/90 transition-colors"
|
|||
|
|
>
|
|||
|
|
<Image className="h-4 w-4" />
|
|||
|
|
Create
|
|||
|
|
</button>
|
|||
|
|
</div>
|
|||
|
|
</div>
|
|||
|
|
</div>
|
|||
|
|
);
|
|||
|
|
}
|