2023-03-24 13:54:17 +00:00
|
|
|
<?php
|
|
|
|
|
2023-12-07 18:06:32 +00:00
|
|
|
namespace App\Livewire;
|
2023-03-24 13:54:17 +00:00
|
|
|
|
|
|
|
use App\Models\Team;
|
|
|
|
use Livewire\Component;
|
|
|
|
|
|
|
|
class SwitchTeam extends Component
|
|
|
|
{
|
2023-06-02 10:34:45 +00:00
|
|
|
public string $selectedTeamId = 'default';
|
2024-03-21 13:30:35 +00:00
|
|
|
public function mount() {
|
|
|
|
$this->selectedTeamId = auth()->user()->currentTeam()->id;
|
|
|
|
}
|
2023-06-02 10:34:45 +00:00
|
|
|
public function updatedSelectedTeamId()
|
|
|
|
{
|
|
|
|
$this->switch_to($this->selectedTeamId);
|
|
|
|
}
|
2023-08-08 09:51:36 +00:00
|
|
|
|
2023-03-24 13:54:17 +00:00
|
|
|
public function switch_to($team_id)
|
|
|
|
{
|
|
|
|
if (!auth()->user()->teams->contains($team_id)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
$team_to_switch_to = Team::find($team_id);
|
|
|
|
if (!$team_to_switch_to) {
|
|
|
|
return;
|
|
|
|
}
|
2023-09-08 16:33:26 +00:00
|
|
|
refreshSession($team_to_switch_to);
|
2023-03-24 13:54:17 +00:00
|
|
|
return redirect(request()->header('Referer'));
|
|
|
|
}
|
|
|
|
}
|