2023-08-29 12:36:17 +00:00
|
|
|
<?php
|
|
|
|
|
|
2023-12-07 18:06:32 +00:00
|
|
|
namespace App\Livewire;
|
2023-08-29 12:36:17 +00:00
|
|
|
|
2024-03-21 13:30:35 +00:00
|
|
|
use App\Models\PrivateKey;
|
2023-08-29 12:36:17 +00:00
|
|
|
use App\Models\Project;
|
|
|
|
|
use App\Models\Server;
|
2024-01-27 17:44:40 +00:00
|
|
|
use Illuminate\Support\Collection;
|
2023-08-29 12:36:17 +00:00
|
|
|
use Livewire\Component;
|
|
|
|
|
|
|
|
|
|
class Dashboard extends Component
|
|
|
|
|
{
|
2023-10-10 08:56:11 +00:00
|
|
|
public $projects = [];
|
2024-06-10 20:43:34 +00:00
|
|
|
|
2024-01-27 17:44:40 +00:00
|
|
|
public Collection $servers;
|
2024-06-10 20:43:34 +00:00
|
|
|
|
2024-11-03 20:11:35 +00:00
|
|
|
public Collection $privateKeys;
|
2024-06-10 20:43:34 +00:00
|
|
|
|
2023-08-29 12:36:17 +00:00
|
|
|
public function mount()
|
|
|
|
|
{
|
2024-11-03 20:11:35 +00:00
|
|
|
$this->privateKeys = PrivateKey::ownedByCurrentTeam()->get();
|
2023-10-10 08:56:11 +00:00
|
|
|
$this->servers = Server::ownedByCurrentTeam()->get();
|
2023-10-11 08:08:37 +00:00
|
|
|
$this->projects = Project::ownedByCurrentTeam()->get();
|
2023-08-29 12:36:17 +00:00
|
|
|
}
|
2024-06-10 20:43:34 +00:00
|
|
|
|
2024-11-22 14:28:06 +00:00
|
|
|
public function navigateToProject($projectUuid)
|
|
|
|
|
{
|
2025-04-29 07:04:24 +00:00
|
|
|
return $this->redirect(collect($this->projects)->firstWhere('uuid', $projectUuid)->navigateTo(), navigate: false);
|
2024-11-22 14:28:06 +00:00
|
|
|
}
|
|
|
|
|
|
2023-08-29 12:36:17 +00:00
|
|
|
public function render()
|
|
|
|
|
{
|
|
|
|
|
return view('livewire.dashboard');
|
|
|
|
|
}
|
|
|
|
|
}
|