315 lines
No EOL
17 KiB
PHP
315 lines
No EOL
17 KiB
PHP
<div>
|
|
<h1 class="text-2xl font-syncopate text-accent-blue mb-6">SCHEDULE</h1>
|
|
|
|
<!-- Schedule Generator Component -->
|
|
<livewire:schedule.schedule-generator />
|
|
|
|
<!-- Flash Messages -->
|
|
@if (session()->has('success'))
|
|
<div class="border-2 border-success text-success rounded p-4 mb-6">
|
|
{{ session('success') }}
|
|
</div>
|
|
@endif
|
|
|
|
@if (session()->has('error'))
|
|
<div class="border-2 border-danger text-danger rounded p-4 mb-6">
|
|
{{ session('error') }}
|
|
</div>
|
|
@endif
|
|
|
|
<!-- Month Navigation -->
|
|
<div class="flex justify-between items-center mb-6">
|
|
<button wire:click="previousMonth"
|
|
class="px-4 py-2 bg-gray-700 text-accent-blue rounded hover:bg-gray-600 transition-colors duration-200">
|
|
← Previous
|
|
</button>
|
|
|
|
<h2 class="text-xl font-bold text-gray-100">{{ $this->monthName }}</h2>
|
|
|
|
<button wire:click="nextMonth"
|
|
class="px-4 py-2 bg-gray-700 text-accent-blue rounded hover:bg-gray-600 transition-colors duration-200">
|
|
Next →
|
|
</button>
|
|
</div>
|
|
|
|
<!-- Calendar Grid - Desktop -->
|
|
<div class="hidden md:block">
|
|
<div class="grid grid-cols-7 gap-2 mb-4">
|
|
<!-- Days of week headers -->
|
|
@foreach(['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun'] as $day)
|
|
<div class="text-center text-accent-blue font-bold p-2">{{ $day }}</div>
|
|
@endforeach
|
|
</div>
|
|
|
|
<div class="grid grid-cols-7 gap-2">
|
|
@foreach($calendarDays as $dayData)
|
|
<div class="min-h-[120px] border rounded-lg p-2
|
|
{{ $dayData['day'] ? 'bg-gray-500' : 'bg-gray-800' }}
|
|
{{ $dayData['isToday'] ? 'border-2 border-accent-blue' : 'border-gray-600' }}">
|
|
|
|
@if($dayData['day'])
|
|
<!-- Day number and add button -->
|
|
<div class="flex justify-between items-center mb-2">
|
|
<span class="font-bold {{ $dayData['isToday'] ? 'text-accent-blue' : 'text-gray-100' }}">
|
|
{{ $dayData['day'] }}
|
|
</span>
|
|
<button wire:click="openAddDishModal('{{ $dayData['date']->format('Y-m-d') }}')"
|
|
class="w-5 h-5 bg-gray-600 hover:bg-primary text-gray-300 hover:text-white rounded flex items-center justify-center text-sm transition-colors duration-200">
|
|
+
|
|
</button>
|
|
</div>
|
|
|
|
<!-- Scheduled dishes -->
|
|
@if($dayData['scheduledDishes']->isNotEmpty())
|
|
<div class="space-y-1">
|
|
@foreach($dayData['scheduledDishes'] as $scheduled)
|
|
<div class="bg-primary rounded p-1 text-xs text-white flex items-center justify-between">
|
|
<div class="flex items-center">
|
|
<div class="w-4 h-4 bg-white text-primary rounded-full flex items-center justify-center text-xs font-bold mr-1">
|
|
{{ strtoupper(substr($scheduled->user->name, 0, 1)) }}
|
|
</div>
|
|
<span class="truncate">{{ $scheduled->userDish?->dish?->name ?? 'Skipped' }}</span>
|
|
</div>
|
|
|
|
<!-- Action buttons -->
|
|
<div class="flex space-x-1" x-data="{ showActions: false }">
|
|
<button @click="showActions = !showActions"
|
|
class="text-white hover:text-gray-300">
|
|
⋮
|
|
</button>
|
|
|
|
<div x-show="showActions"
|
|
@click.away="showActions = false"
|
|
x-cloak
|
|
class="absolute bg-gray-700 border border-secondary rounded mt-4 ml-4 shadow-lg z-10">
|
|
<button wire:click="editDish('{{ $dayData['date']->format('Y-m-d') }}', {{ $scheduled->user->id }})"
|
|
class="block w-full text-left px-3 py-1 text-xs hover:bg-gray-600 text-white">
|
|
Edit
|
|
</button>
|
|
<button wire:click="regenerateForUserDate('{{ $dayData['date']->format('Y-m-d') }}', {{ $scheduled->user->id }})"
|
|
class="block w-full text-left px-3 py-1 text-xs hover:bg-gray-600 text-accent-blue">
|
|
Regenerate
|
|
</button>
|
|
<button wire:click="skipDay('{{ $dayData['date']->format('Y-m-d') }}', {{ $scheduled->user->id }})"
|
|
class="block w-full text-left px-3 py-1 text-xs hover:bg-gray-600 text-warning">
|
|
Skip
|
|
</button>
|
|
<button wire:click="removeDish('{{ $dayData['date']->format('Y-m-d') }}', {{ $scheduled->user->id }})"
|
|
class="block w-full text-left px-3 py-1 text-xs hover:bg-gray-600 text-danger">
|
|
Remove
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@endforeach
|
|
</div>
|
|
@else
|
|
<div class="text-gray-400 text-xs">No dishes scheduled</div>
|
|
@endif
|
|
@endif
|
|
</div>
|
|
@endforeach
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Calendar List - Mobile -->
|
|
<div class="md:hidden space-y-2">
|
|
@foreach($calendarDays as $dayData)
|
|
@if($dayData['day'])
|
|
<div class="border rounded-lg p-3
|
|
{{ $dayData['isToday'] ? 'border-2 border-accent-blue bg-gray-600' : 'border-gray-600 bg-gray-500' }}">
|
|
|
|
<!-- Day header -->
|
|
<div class="flex items-center justify-between mb-2">
|
|
<div class="font-bold {{ $dayData['isToday'] ? 'text-accent-blue' : 'text-gray-100' }}">
|
|
{{ $dayData['date']->format('D, M j') }}
|
|
@if($dayData['isToday'])
|
|
<span class="text-xs ml-2">(Today)</span>
|
|
@endif
|
|
</div>
|
|
<button wire:click="openAddDishModal('{{ $dayData['date']->format('Y-m-d') }}')"
|
|
class="w-7 h-7 bg-gray-600 hover:bg-primary text-gray-300 hover:text-white rounded flex items-center justify-center text-lg transition-colors duration-200">
|
|
+
|
|
</button>
|
|
</div>
|
|
|
|
<!-- Scheduled dishes -->
|
|
@if($dayData['scheduledDishes']->isNotEmpty())
|
|
<div class="space-y-2">
|
|
@foreach($dayData['scheduledDishes'] as $scheduled)
|
|
<div class="bg-primary rounded p-2 text-sm text-white flex items-center justify-between">
|
|
<div class="flex items-center">
|
|
<div class="w-6 h-6 bg-white text-primary rounded-full flex items-center justify-center text-sm font-bold mr-2">
|
|
{{ strtoupper(substr($scheduled->user->name, 0, 1)) }}
|
|
</div>
|
|
<div>
|
|
<div class="font-medium">{{ $scheduled->userDish?->dish?->name ?? 'Skipped' }}</div>
|
|
<div class="text-xs opacity-75">{{ $scheduled->user->name }}</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Action buttons -->
|
|
<div class="flex space-x-2" x-data="{ showActions: false }">
|
|
<button @click="showActions = !showActions"
|
|
class="text-white hover:text-gray-300 p-1">
|
|
⋮
|
|
</button>
|
|
|
|
<div x-show="showActions"
|
|
@click.away="showActions = false"
|
|
x-cloak
|
|
class="absolute right-4 bg-gray-700 border border-secondary rounded shadow-lg z-10">
|
|
<button wire:click="editDish('{{ $dayData['date']->format('Y-m-d') }}', {{ $scheduled->user->id }})"
|
|
class="block w-full text-left px-4 py-2 text-sm hover:bg-gray-600 text-white">
|
|
Edit
|
|
</button>
|
|
<button wire:click="regenerateForUserDate('{{ $dayData['date']->format('Y-m-d') }}', {{ $scheduled->user->id }})"
|
|
class="block w-full text-left px-4 py-2 text-sm hover:bg-gray-600 text-accent-blue">
|
|
Regenerate
|
|
</button>
|
|
<button wire:click="skipDay('{{ $dayData['date']->format('Y-m-d') }}', {{ $scheduled->user->id }})"
|
|
class="block w-full text-left px-4 py-2 text-sm hover:bg-gray-600 text-warning">
|
|
Skip
|
|
</button>
|
|
<button wire:click="removeDish('{{ $dayData['date']->format('Y-m-d') }}', {{ $scheduled->user->id }})"
|
|
class="block w-full text-left px-4 py-2 text-sm hover:bg-gray-600 text-danger">
|
|
Remove
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@endforeach
|
|
</div>
|
|
@else
|
|
<div class="text-gray-400 text-sm">No dishes scheduled</div>
|
|
@endif
|
|
</div>
|
|
@endif
|
|
@endforeach
|
|
</div>
|
|
|
|
|
|
<!-- Regenerate Modal -->
|
|
@if($showRegenerateModal)
|
|
<div class="fixed inset-0 bg-black bg-opacity-50 flex items-center justify-center z-50">
|
|
<div class="bg-gray-600 border-2 border-secondary rounded-lg p-6 w-full max-w-md mx-4">
|
|
<h2 class="text-xl text-accent-blue mb-4">Regenerate Day</h2>
|
|
<p class="text-gray-100 mb-6">
|
|
This will clear the selected day and allow for regeneration. Continue?
|
|
</p>
|
|
|
|
<div class="flex justify-end space-x-3">
|
|
<button wire:click="cancel"
|
|
class="px-4 py-2 border-2 border-secondary text-gray-100 rounded hover:bg-gray-700 transition-colors duration-200">
|
|
Cancel
|
|
</button>
|
|
<button wire:click="confirmRegenerate"
|
|
class="px-4 py-2 bg-warning text-white rounded hover:bg-yellow-600 transition-colors duration-200">
|
|
Regenerate
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@endif
|
|
|
|
<!-- Edit Dish Modal -->
|
|
@if($showEditDishModal)
|
|
<div class="fixed inset-0 bg-black bg-opacity-50 flex items-center justify-center z-50">
|
|
<div class="bg-gray-600 border-2 border-secondary rounded-lg p-6 w-full max-w-md mx-4">
|
|
<h2 class="text-xl text-accent-blue mb-4">Edit Dish</h2>
|
|
<p class="text-gray-300 text-sm mb-4">
|
|
Choose a dish for <strong>{{ \App\Models\User::find($editUserId)?->name }}</strong> on {{ \Carbon\Carbon::parse($editDate)->format('M j, Y') }}
|
|
</p>
|
|
|
|
@if(count($availableDishes) > 0)
|
|
<div class="mb-6">
|
|
<label class="block text-sm font-medium mb-2">Dish</label>
|
|
<select wire:model="selectedDishId"
|
|
class="w-full p-2 border rounded bg-gray-700 border-secondary text-gray-100 focus:bg-gray-900 focus:outline-none focus:border-accent-blue">
|
|
<option value="">Select a dish...</option>
|
|
@foreach($availableDishes as $dish)
|
|
<option value="{{ $dish->id }}">{{ $dish->name }}</option>
|
|
@endforeach
|
|
</select>
|
|
</div>
|
|
@else
|
|
<div class="mb-6">
|
|
<p class="text-gray-400 text-sm italic">
|
|
No dishes available for this user.
|
|
<a href="{{ route('dishes.index') }}" class="text-accent-blue hover:underline">Add dishes</a> first.
|
|
</p>
|
|
</div>
|
|
@endif
|
|
|
|
<div class="flex justify-end space-x-3">
|
|
<button wire:click="cancel"
|
|
class="px-4 py-2 border-2 border-secondary text-gray-100 rounded hover:bg-gray-700 transition-colors duration-200">
|
|
Cancel
|
|
</button>
|
|
@if(count($availableDishes) > 0)
|
|
<button wire:click="saveDish"
|
|
class="px-4 py-2 bg-primary text-white rounded hover:bg-secondary transition-colors duration-200">
|
|
Save
|
|
</button>
|
|
@endif
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@endif
|
|
|
|
<!-- Add Dish Modal -->
|
|
@if($showAddDishModal)
|
|
<div class="fixed inset-0 bg-black bg-opacity-50 flex items-center justify-center z-50">
|
|
<div class="bg-gray-600 border-2 border-secondary rounded-lg p-6 w-full max-w-md mx-4">
|
|
<h2 class="text-xl text-accent-blue mb-4">Add Dish</h2>
|
|
<p class="text-gray-300 text-sm mb-4">
|
|
Add a dish for {{ \Carbon\Carbon::parse($addDate)->format('M j, Y') }}
|
|
</p>
|
|
|
|
<x-user-multi-select
|
|
:users="$addAvailableUsers"
|
|
:selectedIds="$addUserIds"
|
|
wireModel="addUserIds"
|
|
toggleAllMethod="toggleAllUsers"
|
|
/>
|
|
|
|
@if(count($addUserIds) > 0)
|
|
<div class="mb-6">
|
|
<label class="block text-sm font-medium mb-2">Dish</label>
|
|
@if(count($addAvailableDishes) > 0)
|
|
<select wire:model="addSelectedDishId"
|
|
class="w-full p-2 border rounded bg-gray-700 border-secondary text-gray-100 focus:bg-gray-900 focus:outline-none focus:border-accent-blue">
|
|
<option value="">Select a dish...</option>
|
|
@foreach($addAvailableDishes as $dish)
|
|
<option value="{{ $dish->id }}">{{ $dish->name }}</option>
|
|
@endforeach
|
|
</select>
|
|
@else
|
|
<p class="text-gray-400 text-sm italic">
|
|
No dishes in common for selected users.
|
|
<a href="{{ route('dishes.index') }}" class="text-accent-blue hover:underline">Add dishes</a> first.
|
|
</p>
|
|
@endif
|
|
</div>
|
|
@endif
|
|
|
|
<div class="flex justify-end space-x-3">
|
|
<button wire:click="cancel"
|
|
class="px-4 py-2 border-2 border-secondary text-gray-100 rounded hover:bg-gray-700 transition-colors duration-200">
|
|
Cancel
|
|
</button>
|
|
@if(count($addAvailableUsers) > 0 && count($addAvailableDishes) > 0)
|
|
<button wire:click="saveAddDish"
|
|
class="px-4 py-2 bg-primary text-white rounded hover:bg-secondary transition-colors duration-200">
|
|
Add
|
|
</button>
|
|
@endif
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@endif
|
|
|
|
<style>
|
|
[x-cloak] { display: none !important; }
|
|
</style>
|
|
</div> |