Migración completa a Clean Architecture con componentes funcionales

- Reorganización de estructura: Admin/, Public/, Shared/, Schemas/
- 12 componentes migrados: TopNotificationBar, Navbar, CtaLetsTalk, Hero,
  FeaturedImage, TableOfContents, CtaBoxSidebar, SocialShare, CtaPost,
  RelatedPost, ContactForm, Footer
- Panel de administración con tabs Bootstrap 5 funcionales
- Schemas JSON para configuración de componentes
- Renderers dinámicos con CSSGeneratorService (cero CSS hardcodeado)
- FormBuilders para UI admin con Design System consistente
- Fix: Bootstrap JS cargado en header para tabs funcionales
- Fix: buildTextInput maneja valores mixed (bool/string)
- Eliminación de estructura legacy (src/, admin/, assets/css/componente-*)

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
FrankZamora
2025-11-25 21:20:06 -06:00
parent 90de6df77c
commit 0846a3bf03
224 changed files with 21670 additions and 17816 deletions

View File

@@ -0,0 +1,85 @@
<?php
declare(strict_types=1);
namespace ROITheme\Admin\Domain\ValueObjects;
/**
* Value Object para representar un item del menú
*
* Domain - Objeto inmutable sin WordPress
*/
final class MenuItem
{
/**
* @param string $pageTitle Título de la página
* @param string $menuTitle Título del menú
* @param string $capability Capacidad requerida
* @param string $menuSlug Slug del menú
* @param string $icon Ícono del menú
* @param int $position Posición en el menú
*/
public function __construct(
private readonly string $pageTitle,
private readonly string $menuTitle,
private readonly string $capability,
private readonly string $menuSlug,
private readonly string $icon,
private readonly int $position
) {
$this->validate();
}
private function validate(): void
{
if (empty($this->pageTitle)) {
throw new \InvalidArgumentException('Page title cannot be empty');
}
if (empty($this->menuTitle)) {
throw new \InvalidArgumentException('Menu title cannot be empty');
}
if (empty($this->capability)) {
throw new \InvalidArgumentException('Capability cannot be empty');
}
if (empty($this->menuSlug)) {
throw new \InvalidArgumentException('Menu slug cannot be empty');
}
if ($this->position < 0) {
throw new \InvalidArgumentException('Position must be >= 0');
}
}
public function getPageTitle(): string
{
return $this->pageTitle;
}
public function getMenuTitle(): string
{
return $this->menuTitle;
}
public function getCapability(): string
{
return $this->capability;
}
public function getMenuSlug(): string
{
return $this->menuSlug;
}
public function getIcon(): string
{
return $this->icon;
}
public function getPosition(): int
{
return $this->position;
}
}