generated from kir-dev/next-nest-template
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
162 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,162 @@ | ||
'use client'; | ||
|
||
import { useState } from 'react'; | ||
|
||
// Mock data for drinks | ||
const mockDrinks = [ | ||
{ id: 1, name: 'Gösser' }, | ||
{ id: 2, name: 'Heineken' }, | ||
{ id: 3, name: 'Soproni' }, | ||
]; | ||
|
||
export default function NewEventPage() { | ||
// States for event fields | ||
const [eventName, setEventName] = useState(''); | ||
const [location, setLocation] = useState(''); | ||
const [startDate, setStartDate] = useState(''); | ||
const [endDate, setEndDate] = useState(''); | ||
const [description, setDescription] = useState(''); | ||
const [consumedDrinks, setConsumedDrinks] = useState<{ id: number; name: string }[]>([]); | ||
const [isDialogOpen, setIsDialogOpen] = useState(false); | ||
|
||
const addDrink = (drink: { id: number; name: string }) => { | ||
setConsumedDrinks([...consumedDrinks, drink]); | ||
}; | ||
const removeDrink = (drink: { id: number; name: string }) => { | ||
setConsumedDrinks(consumedDrinks.filter((d) => d.id !== drink.id)); | ||
if (consumedDrinks.length > 0) { | ||
setIsDialogOpen(false); | ||
} | ||
}; | ||
|
||
return ( | ||
<div className='container mx-auto p-4'> | ||
<h1 className='text-3xl font-bold mb-4'>Új esemény</h1> | ||
|
||
<div className='grid grid-cols-1 gap-4 md:grid-cols-2'> | ||
<div> | ||
<label className='block mb-2'>Esemény neve</label> | ||
<input | ||
type='text' | ||
className='w-full p-2 border border-gray-300 rounded' | ||
placeholder='Placeholder' | ||
value={eventName} | ||
onChange={(e) => setEventName(e.target.value)} | ||
/> | ||
</div> | ||
|
||
<div> | ||
<label className='block mb-2'>Helyszín</label> | ||
<input | ||
type='text' | ||
className='w-full p-2 border border-gray-300 rounded' | ||
placeholder='Placeholder' | ||
value={location} | ||
onChange={(e) => setLocation(e.target.value)} | ||
/> | ||
</div> | ||
|
||
<div> | ||
<label className='block mb-2'>Kezdő dátum</label> | ||
<input | ||
type='datetime-local' | ||
className='w-full p-2 border border-gray-300 rounded' | ||
placeholder='Placeholder' | ||
value={startDate} | ||
onChange={(e) => setStartDate(e.target.value)} | ||
/> | ||
</div> | ||
|
||
<div> | ||
<label className='block mb-2'>Vége dátum</label> | ||
<input | ||
type='datetime-local' | ||
className='w-full p-2 border border-gray-300 rounded' | ||
placeholder='Placeholder' | ||
value={endDate} | ||
onChange={(e) => setEndDate(e.target.value)} | ||
/> | ||
</div> | ||
</div> | ||
|
||
{/* Grid for Description and Consumed Drinks */} | ||
<div className='grid grid-cols-1 md:grid-cols-2 gap-4 mt-8'> | ||
{/* Description on the left */} | ||
<div> | ||
<label className='block mb-2'>Leírás</label> | ||
<textarea | ||
className='w-full p-2 border border-gray-300 rounded' | ||
placeholder='Placeholder' | ||
rows={6} | ||
value={description} | ||
onChange={(e) => setDescription(e.target.value)} | ||
/> | ||
</div> | ||
|
||
{/* Consumed Drinks on the right */} | ||
<div> | ||
<label className='block font-bold mb-2'>Eddig elfogyasztott italok</label> | ||
<ul className='mb-4'> | ||
{consumedDrinks.length > 0 ? ( | ||
consumedDrinks.map((drink) => ( | ||
<li key={drink.id} className='mb-2'> | ||
{drink.name}{' '} | ||
<button | ||
className='bg-gray-600 hover:bg-gray-500 text-white font-bold py-0.25 px-2 rounded-full ' | ||
onClick={() => { | ||
removeDrink(drink); | ||
}} | ||
> | ||
- | ||
</button> | ||
</li> | ||
)) | ||
) : ( | ||
<li className='text-gray-500'>Nincs hozzáadott ital</li> | ||
)} | ||
</ul> | ||
<button | ||
className='bg-gray-500 hover:bg-gray-700 text-white font-bold py-2 px-4 rounded-full' | ||
onClick={() => setIsDialogOpen(true)} | ||
> | ||
Ital hozzáadása | ||
</button> | ||
</div> | ||
</div> | ||
|
||
<div className='mt-8'> | ||
<button className='bg-gray-500 hover:bg-gray-700 text-white font-bold py-2 px-4 rounded'>Mentés</button> | ||
</div> | ||
|
||
{/* Drink Selection Dialog */} | ||
{isDialogOpen && ( | ||
<div className='fixed inset-0 bg-black bg-opacity-50 flex items-center justify-center'> | ||
<div className='bg-white p-4 rounded shadow-lg w-1/3'> | ||
<h2 className='text-xl font-bold mb-4'>Válassz egy italt</h2> | ||
<ul> | ||
{mockDrinks.map((drink) => ( | ||
<li key={drink.id} className='mb-2'> | ||
<button | ||
className='text-black hover:text-gray-500' | ||
onClick={() => { | ||
addDrink(drink); | ||
setIsDialogOpen(false); | ||
}} | ||
> | ||
{drink.name} | ||
</button> | ||
</li> | ||
))} | ||
</ul> | ||
<button | ||
className='mt-4 bg-gray-500 hover:bg-gray-700 text-white font-bold py-2 px-4 rounded' | ||
onClick={() => setIsDialogOpen(false)} | ||
> | ||
Mégse | ||
</button> | ||
</div> | ||
</div> | ||
)} | ||
</div> | ||
); | ||
} |