* - added some test * - cr fix * wip * wip * Update resources/js/Shared/MainMenu.vue Co-authored-by: Ewelina Lasowy <56546832+EwelinaLasowy@users.noreply.github.com> * fix Co-authored-by: EwelinaLasowy <ewelina.lasowy@blumilk.pl> Co-authored-by: Ewelina Lasowy <56546832+EwelinaLasowy@users.noreply.github.com>
		
			
				
	
	
		
			63 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			63 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
declare(strict_types=1);
 | 
						|
 | 
						|
namespace Toby\Domain;
 | 
						|
 | 
						|
use Carbon\CarbonPeriod;
 | 
						|
use Illuminate\Support\Carbon;
 | 
						|
use Illuminate\Support\Collection;
 | 
						|
use Toby\Eloquent\Helpers\YearPeriodRetriever;
 | 
						|
use Toby\Eloquent\Models\Vacation;
 | 
						|
use Toby\Eloquent\Models\YearPeriod;
 | 
						|
 | 
						|
class CalendarGenerator
 | 
						|
{
 | 
						|
    public function __construct(
 | 
						|
        protected YearPeriodRetriever $yearPeriodRetriever,
 | 
						|
    ) {}
 | 
						|
 | 
						|
    public function generate(Carbon $month): array
 | 
						|
    {
 | 
						|
        $period = CarbonPeriod::create($month->copy()->startOfMonth(), $month->copy()->endOfMonth());
 | 
						|
        $yearPeriod = YearPeriod::findByYear($month->year);
 | 
						|
 | 
						|
        $holidays = $yearPeriod->holidays()->pluck("date");
 | 
						|
 | 
						|
        return $this->generateCalendar($period, $holidays);
 | 
						|
    }
 | 
						|
 | 
						|
    protected function generateCalendar(CarbonPeriod $period, Collection $holidays): array
 | 
						|
    {
 | 
						|
        $calendar = [];
 | 
						|
        $vacations = $this->getVacationsForPeriod($period);
 | 
						|
 | 
						|
        foreach ($period as $day) {
 | 
						|
            $vacationsForDay = $vacations[$day->toDateString()] ?? new Collection();
 | 
						|
 | 
						|
            $calendar[] = [
 | 
						|
                "date" => $day->toDateString(),
 | 
						|
                "dayOfMonth" => $day->translatedFormat("j"),
 | 
						|
                "dayOfWeek" => $day->translatedFormat("D"),
 | 
						|
                "isToday" => $day->isToday(),
 | 
						|
                "isWeekend" => $day->isWeekend(),
 | 
						|
                "isHoliday" => $holidays->contains($day),
 | 
						|
                "vacations" => $vacationsForDay->pluck("user_id"),
 | 
						|
                "vacationTypes" => $vacationsForDay->pluck("vacationRequest.type", "user_id"),
 | 
						|
            ];
 | 
						|
        }
 | 
						|
 | 
						|
        return $calendar;
 | 
						|
    }
 | 
						|
 | 
						|
    protected function getVacationsForPeriod(CarbonPeriod $period): Collection
 | 
						|
    {
 | 
						|
        return Vacation::query()
 | 
						|
            ->whereBetween("date", [$period->start, $period->end])
 | 
						|
            ->approved()
 | 
						|
            ->with("vacationRequest")
 | 
						|
            ->get()
 | 
						|
            ->groupBy(fn(Vacation $vacation) => $vacation->date->toDateString());
 | 
						|
    }
 | 
						|
}
 |