mirror of
https://github.com/yusufipk/OpenFrame.git
synced 2026-09-11 09:36:08 +00:00
183 lines
6.5 KiB
TypeScript
183 lines
6.5 KiB
TypeScript
'use client';
|
|
|
|
import { useState, use } from 'react';
|
|
import { useRouter } from 'next/navigation';
|
|
import Link from 'next/link';
|
|
import { ArrowLeft, Loader2, Globe, Lock, UserPlus, FolderPlus } from 'lucide-react';
|
|
import { Button } from '@/components/ui/button';
|
|
import { Card, CardContent, CardDescription, CardHeader, CardTitle } from '@/components/ui/card';
|
|
import { Input } from '@/components/ui/input';
|
|
import { Label } from '@/components/ui/label';
|
|
import { Textarea } from '@/components/ui/textarea';
|
|
|
|
type Visibility = 'PRIVATE' | 'INVITE' | 'PUBLIC';
|
|
|
|
const visibilityOptions: { value: Visibility; label: string; description: string; icon: React.ReactNode }[] = [
|
|
{
|
|
value: 'PRIVATE',
|
|
label: 'Private',
|
|
description: 'Only workspace members and project members can access',
|
|
icon: <Lock className="h-5 w-5" />,
|
|
},
|
|
{
|
|
value: 'INVITE',
|
|
label: 'Invite Only',
|
|
description: 'Share with specific people via email',
|
|
icon: <UserPlus className="h-5 w-5" />,
|
|
},
|
|
{
|
|
value: 'PUBLIC',
|
|
label: 'Public',
|
|
description: 'Anyone with the link can view',
|
|
icon: <Globe className="h-5 w-5" />,
|
|
},
|
|
];
|
|
|
|
export default function NewWorkspaceProjectPage({ params }: { params: Promise<{ workspaceId: string }> }) {
|
|
const { workspaceId } = use(params);
|
|
const router = useRouter();
|
|
const [isLoading, setIsLoading] = useState(false);
|
|
const [error, setError] = useState('');
|
|
const [formData, setFormData] = useState({
|
|
name: '',
|
|
description: '',
|
|
visibility: 'PRIVATE' as Visibility,
|
|
});
|
|
|
|
const handleSubmit = async (e: React.FormEvent) => {
|
|
e.preventDefault();
|
|
setIsLoading(true);
|
|
setError('');
|
|
|
|
try {
|
|
const response = await fetch('/api/projects', {
|
|
method: 'POST',
|
|
headers: { 'Content-Type': 'application/json' },
|
|
body: JSON.stringify({ ...formData, workspaceId }),
|
|
});
|
|
|
|
const data = await response.json();
|
|
|
|
if (!response.ok) {
|
|
setError(data.error || 'Failed to create project');
|
|
return;
|
|
}
|
|
|
|
router.push(`/projects/${data.data.id}`);
|
|
} catch {
|
|
setError('Something went wrong. Please try again.');
|
|
} finally {
|
|
setIsLoading(false);
|
|
}
|
|
};
|
|
|
|
return (
|
|
<div className="min-h-[calc(100vh-4rem)] flex items-start justify-center py-12 px-4">
|
|
<div className="w-full max-w-xl">
|
|
<div className="mb-8">
|
|
<Link
|
|
href={`/workspaces/${workspaceId}`}
|
|
className="inline-flex items-center text-sm text-muted-foreground hover:text-foreground transition-colors"
|
|
>
|
|
<ArrowLeft className="h-4 w-4 mr-1" />
|
|
Back to Workspace
|
|
</Link>
|
|
</div>
|
|
|
|
<Card className="border-border/50 shadow-lg">
|
|
<CardHeader className="text-center pb-2">
|
|
<div className="mx-auto w-14 h-14 rounded-full bg-primary/10 flex items-center justify-center mb-4">
|
|
<FolderPlus className="h-7 w-7 text-primary" />
|
|
</div>
|
|
<CardTitle className="text-2xl">Create Project in Workspace</CardTitle>
|
|
<CardDescription className="text-base">
|
|
This project will be accessible to all workspace members
|
|
</CardDescription>
|
|
</CardHeader>
|
|
<CardContent className="pt-6">
|
|
<form onSubmit={handleSubmit} className="space-y-6">
|
|
<div className="space-y-2">
|
|
<Label htmlFor="name" className="text-sm font-medium">
|
|
Project Name
|
|
</Label>
|
|
<Input
|
|
id="name"
|
|
placeholder="e.g., Product Launch Video"
|
|
value={formData.name}
|
|
onChange={(e) => setFormData({ ...formData, name: e.target.value })}
|
|
required
|
|
disabled={isLoading}
|
|
/>
|
|
</div>
|
|
|
|
<div className="space-y-2">
|
|
<Label htmlFor="description" className="text-sm font-medium">
|
|
Description{' '}
|
|
<span className="text-muted-foreground font-normal">(optional)</span>
|
|
</Label>
|
|
<Textarea
|
|
id="description"
|
|
placeholder="What is this project about?"
|
|
value={formData.description}
|
|
onChange={(e) => setFormData({ ...formData, description: e.target.value })}
|
|
rows={3}
|
|
disabled={isLoading}
|
|
/>
|
|
</div>
|
|
|
|
<div className="space-y-3">
|
|
<Label className="text-sm font-medium">Visibility</Label>
|
|
<div className="grid gap-2">
|
|
{visibilityOptions.map((option) => (
|
|
<label
|
|
key={option.value}
|
|
className={`flex items-start gap-3 rounded-lg border p-3 cursor-pointer transition-colors ${
|
|
formData.visibility === option.value
|
|
? 'border-primary bg-primary/5'
|
|
: 'hover:bg-accent/50'
|
|
}`}
|
|
>
|
|
<input
|
|
type="radio"
|
|
name="visibility"
|
|
value={option.value}
|
|
checked={formData.visibility === option.value}
|
|
onChange={(e) =>
|
|
setFormData({ ...formData, visibility: e.target.value as Visibility })
|
|
}
|
|
className="sr-only"
|
|
/>
|
|
<div className="mt-0.5 text-muted-foreground">{option.icon}</div>
|
|
<div>
|
|
<p className="text-sm font-medium">{option.label}</p>
|
|
<p className="text-xs text-muted-foreground">{option.description}</p>
|
|
</div>
|
|
</label>
|
|
))}
|
|
</div>
|
|
</div>
|
|
|
|
{error && (
|
|
<div className="rounded-md bg-destructive/10 p-3 text-sm text-destructive">
|
|
{error}
|
|
</div>
|
|
)}
|
|
|
|
<Button type="submit" className="w-full" disabled={isLoading}>
|
|
{isLoading ? (
|
|
<>
|
|
<Loader2 className="h-4 w-4 mr-2 animate-spin" />
|
|
Creating...
|
|
</>
|
|
) : (
|
|
'Create Project'
|
|
)}
|
|
</Button>
|
|
</form>
|
|
</CardContent>
|
|
</Card>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|