7d390872c3
- app/Livewire: 34 componentes agrupados en Issues/, Projects/, Phases/, Companies/, Users/, Admin/, Inspections/, Layers/, Media/, Common/ (Client/, Reports/, Forms/, Actions/ ya estaban). Namespaces actualizados. - resources/views/livewire: vistas sueltas movidas a subcarpetas espejo (companies/, users/, phases/, roles/, inspections/, media/, common/); render() actualizado. - Referencias actualizadas sin romper nada: rutas (FQN, nombres de ruta intactos), tags <livewire:...>/@livewire() a alias con punto, y use de los tests. - No tocado: Volt de Breeze (auth/profile/navigation), y el portal cliente (user-nav/client-projects) que ya tenía referencias inconsistentes. Verificado: 69 rutas OK, vistas compilan, suite 69 passing (solo 2 pre-existentes sqlite). autoload regenerado con --ignore-platform-reqs (PHP 8.2). Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
64 lines
1.8 KiB
PHP
64 lines
1.8 KiB
PHP
<?php
|
|
|
|
namespace App\Livewire\Projects;
|
|
|
|
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.projects.project-companies', [
|
|
'roles' => ProjectCompaniesTable::ROLES,
|
|
]);
|
|
}
|
|
}
|