* #120 - wip * #120 - add icon to home office * #120 - wip * #120 - wip * #120 - wip * #120 - wip * #120 - wip * #120 - ui fixes * #120 - fix * #120 - fix * #120 - fix * #120 - fix * #120 - translation fix * #120 - fix Co-authored-by: EwelinaLasowy <ewelina.lasowy@blumilk.pl>
		
			
				
	
	
		
			94 lines
		
	
	
		
			3.5 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			94 lines
		
	
	
		
			3.5 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
declare(strict_types=1);
 | 
						|
 | 
						|
namespace Toby\Infrastructure\Http\Controllers;
 | 
						|
 | 
						|
use Illuminate\Http\Request;
 | 
						|
use Illuminate\Support\Carbon;
 | 
						|
use Inertia\Response;
 | 
						|
use Toby\Domain\Enums\VacationType;
 | 
						|
use Toby\Domain\UserVacationStatsRetriever;
 | 
						|
use Toby\Domain\VacationRequestStatesRetriever;
 | 
						|
use Toby\Domain\VacationTypeConfigRetriever;
 | 
						|
use Toby\Eloquent\Helpers\YearPeriodRetriever;
 | 
						|
use Toby\Eloquent\Models\Vacation;
 | 
						|
use Toby\Eloquent\Models\VacationRequest;
 | 
						|
use Toby\Infrastructure\Http\Resources\HolidayResource;
 | 
						|
use Toby\Infrastructure\Http\Resources\VacationRequestResource;
 | 
						|
use Toby\Infrastructure\Http\Resources\VacationResource;
 | 
						|
 | 
						|
class DashboardController extends Controller
 | 
						|
{
 | 
						|
    public function __invoke(
 | 
						|
        Request $request,
 | 
						|
        YearPeriodRetriever $yearPeriodRetriever,
 | 
						|
        UserVacationStatsRetriever $vacationStatsRetriever,
 | 
						|
        VacationTypeConfigRetriever $configRetriever,
 | 
						|
    ): Response {
 | 
						|
        $user = $request->user();
 | 
						|
        $now = Carbon::now();
 | 
						|
        $yearPeriod = $yearPeriodRetriever->selected();
 | 
						|
 | 
						|
        $absences = Vacation::query()
 | 
						|
            ->with(["user", "vacationRequest"])
 | 
						|
            ->whereDate("date", $now)
 | 
						|
            ->approved()
 | 
						|
            ->whereTypes(VacationType::all()->filter(fn(VacationType $type) => $configRetriever->isVacation($type)))
 | 
						|
            ->get();
 | 
						|
 | 
						|
        $remoteDays = Vacation::query()
 | 
						|
            ->with(["user", "vacationRequest"])
 | 
						|
            ->whereDate("date", $now)
 | 
						|
            ->approved()
 | 
						|
            ->whereTypes(VacationType::all()->filter(fn(VacationType $type) => !$configRetriever->isVacation($type)))
 | 
						|
            ->get();
 | 
						|
 | 
						|
        if ($user->can("listAll", VacationRequest::class)) {
 | 
						|
            $vacationRequests = $yearPeriod->vacationRequests()
 | 
						|
                ->states(VacationRequestStatesRetriever::waitingForUserActionStates($user))
 | 
						|
                ->latest("updated_at")
 | 
						|
                ->limit(3)
 | 
						|
                ->get();
 | 
						|
        } else {
 | 
						|
            $vacationRequests = $user->vacationRequests()
 | 
						|
                ->whereBelongsTo($yearPeriod)
 | 
						|
                ->latest("updated_at")
 | 
						|
                ->limit(3)
 | 
						|
                ->get();
 | 
						|
        }
 | 
						|
 | 
						|
        $holidays = $yearPeriod
 | 
						|
            ->holidays()
 | 
						|
            ->whereDate("date", ">=", $now)
 | 
						|
            ->orderBy("date")
 | 
						|
            ->limit(3)
 | 
						|
            ->get();
 | 
						|
 | 
						|
        $limit = $vacationStatsRetriever->getVacationDaysLimit($user, $yearPeriod);
 | 
						|
        $used = $vacationStatsRetriever->getUsedVacationDays($user, $yearPeriod);
 | 
						|
        $pending = $vacationStatsRetriever->getPendingVacationDays($user, $yearPeriod);
 | 
						|
        $homeOffice = $vacationStatsRetriever->getHomeOfficeDays($user, $yearPeriod);
 | 
						|
        $other = $vacationStatsRetriever->getOtherApprovedVacationDays($user, $yearPeriod);
 | 
						|
        $remaining = $limit - $used - $pending;
 | 
						|
 | 
						|
        return inertia("Dashboard", [
 | 
						|
            "absences" => VacationResource::collection($absences),
 | 
						|
            "remoteDays" => VacationResource::collection($remoteDays),
 | 
						|
            "vacationRequests" => VacationRequestResource::collection($vacationRequests),
 | 
						|
            "holidays" => HolidayResource::collection($holidays),
 | 
						|
            "stats" => [
 | 
						|
                "limit" => $limit,
 | 
						|
                "remaining" => $remaining,
 | 
						|
                "used" => $used,
 | 
						|
                "pending" => $pending,
 | 
						|
                "homeOffice" => $homeOffice,
 | 
						|
                "other" => $other,
 | 
						|
            ],
 | 
						|
            "can" => [
 | 
						|
                "listAllVacationRequests" => $user->can("listAll", VacationRequest::class),
 | 
						|
            ],
 | 
						|
        ]);
 | 
						|
    }
 | 
						|
}
 |