Files

100 lines
2.6 KiB
PHP

<?php
namespace App\View\Components;
use App\Models\Page;
use App\Services\TemplateService;
use Closure;
use Illuminate\Contracts\View\View;
use Illuminate\View\Component;
class PageRenderer extends Component
{
public Page $page;
/**
* Create a new component instance.
*/
public function __construct(Page $page)
{
$this->page = $page;
}
/**
* Get the view / contents that represent the component.
*/
public function render(): View|Closure|string
{
return view('components.page-renderer');
}
/**
* Render the header template with data
*/
public function renderHeader(): string
{
if (!$this->page->headerTemplate) {
return '';
}
// Merge template defaults with page data (page data overrides defaults)
$templateDefaults = $this->page->headerTemplate->default_data ?? [];
$pageData = $this->page->header_data ?? [];
$mergedData = array_merge($templateDefaults, $pageData);
return TemplateService::replacePlaceholders(
$this->page->headerTemplate->html_content,
$mergedData,
$this->page
);
}
/**
* Render all sections with their templates
*/
public function renderSections(): string
{
$output = '';
foreach ($this->page->templated_sections as $section) {
if (!$section['template']) {
continue;
}
// Merge template defaults with section data (section data overrides defaults)
$templateDefaults = $section['template']->default_data ?? [];
$sectionData = $section['data'] ?? [];
$mergedData = array_merge($templateDefaults, $sectionData);
$output .= TemplateService::replacePlaceholders(
$section['template']->html_content,
$mergedData,
$this->page
);
}
return $output;
}
/**
* Render the footer template with data
*/
public function renderFooter(): string
{
if (!$this->page->footerTemplate) {
return '';
}
// Merge template defaults with page data (page data overrides defaults)
$templateDefaults = $this->page->footerTemplate->default_data ?? [];
$pageData = $this->page->footer_data ?? [];
$mergedData = array_merge($templateDefaults, $pageData);
return TemplateService::replacePlaceholders(
$this->page->footerTemplate->html_content,
$mergedData,
$this->page
);
}
}