Files
construprogress/app/Livewire/ProjectCompanies.php
T

64 lines
1.8 KiB
PHP
Raw Normal View History

<?php
namespace App\Livewire;
use App\Models\Company;
use App\Models\Project;
use Illuminate\Support\Facades\Auth;
use Livewire\Attributes\On;
use Livewire\Component;
class ProjectCompanies extends Component
{
public Project $project;
public $allCompanies = [];
public $selectedCompanyId = '';
public $selectedRole = 'other';
public function mount(Project $project)
{
$this->project = $project;
$this->loadAvailable();
}
/** Companies not yet assigned to the project (for the dropdown). */
public function loadAvailable(): void
{
$assignedIds = $this->project->companies()->pluck('companies.id')->toArray();
$this->allCompanies = Company::whereNotIn('id', $assignedIds)->orderBy('name')->get();
}
/** Reload the dropdown when the embedded table changes assignments. */
#[On('project-companies-changed')]
public function onCompaniesChanged(): void
{
$this->loadAvailable();
}
public function assignCompany()
{
abort_unless(Auth::user()->can('assign companies'), 403);
$this->validate([
'selectedCompanyId' => 'required|exists:companies,id',
'selectedRole' => 'required|in:' . implode(',', array_keys(ProjectCompaniesTable::ROLES)),
]);
$this->project->companies()->attach($this->selectedCompanyId, [
'role_in_project' => $this->selectedRole,
]);
$this->reset(['selectedCompanyId', 'selectedRole']);
$this->loadAvailable();
$this->dispatch('project-companies-changed');
$this->dispatch('notify', 'Empresa asignada al proyecto.');
}
public function render()
{
return view('livewire.project-companies', [
'roles' => ProjectCompaniesTable::ROLES,
]);
}
}