1
0
cms11/app/Services/BundleRenderers/Renderers/BaseRenderer.php

225 lines
6.5 KiB
PHP
Raw Normal View History

<?php
namespace App\Services\BundleRenderers\Renderers;
use App\Classes\AttachmentsManager;
use App\Classes\Bundle;
2024-04-24 13:55:08 +02:00
use App\Classes\Link;
use App\Services\BundleRenderers\Contracts\RendersBundle;
use Carbon\Carbon;
use Exception;
abstract class BaseRenderer implements RendersBundle
{
protected array $viewData = [];
2024-04-26 16:09:33 +02:00
protected ?array $subBundles;
public function __construct(protected Bundle $bundle)
{
$bundle->load();
$this->shareCommonDataWithView();
}
2024-04-26 16:09:33 +02:00
public function getSubBundles()
{
if (!isset($this->subBundles)) {
$this->subBundles = $this->collectSubBundles();
}
return $this->subBundles;
}
2024-04-25 15:44:29 +02:00
/**
* Renders a complete HTML view of the bundle
*/
public function render()
{
2024-04-26 16:09:33 +02:00
$result = [];
$totalPages = count(array_chunk($this->getSubBundles(), config('pagination.itemsPerPage')));
if ($totalPages > 1) {
for ($currentPage = 1; $currentPage <= $totalPages; $currentPage++) {
$this->prepareRender($currentPage);
if ($currentPage === 1) {
2024-05-08 17:40:24 +02:00
$result[$this->bundle->getPath()] = $this->renderView();
2024-04-26 16:09:33 +02:00
}
$page = sprintf('%spage/%s/', $this->bundle->getPath(), $currentPage);
2024-05-08 17:40:24 +02:00
$result[$page] = $this->renderView();
2024-04-26 16:09:33 +02:00
}
} else {
$this->prepareRender(1);
2024-05-08 17:40:24 +02:00
$result[$this->bundle->getPath()] = $this->renderView();
2024-04-26 16:09:33 +02:00
}
2024-04-25 15:44:29 +02:00
2024-04-26 16:09:33 +02:00
return $result;
2024-04-25 15:44:29 +02:00
}
/**
* Renders a card HTML view of the bundle, suitable to display in lists
*/
public function renderCard()
{
$this->prepareRenderCard();
2024-05-08 17:40:24 +02:00
return $this->renderView('article-card');
}
/**
* Return an instance of the creator, using specified data as input
*/
public static function make(Bundle $bundle): RendersBundle
{
return new static($bundle);
}
/**
* Renders a complete HTML view of the bundle
*/
2024-04-26 16:09:33 +02:00
protected function prepareRender(int $currentPage = 1)
{
$this->bundle->markdown()->lint();
$coverRef = $this->bundle->metadata()->get('cover');
$cover = null;
if (!empty($coverRef)) {
$cover = $this->bundle->attachments(AttachmentsManager::Images)->getComponentByRef($coverRef, 'article');
}
$date = $this->bundle->metadata()->get('date');
if (!empty($date)) {
data_set($this->viewData, 'date', Carbon::parse($date));
}
data_set($this->viewData, 'cover', $cover ? $cover->render() : null);
data_set($this->viewData, 'body', $this->bundle->markdown()->render());
2024-04-26 16:09:33 +02:00
$this->handlePagination($currentPage);
}
/**
* Renders a HTML card view of the bundle
*/
protected function prepareRenderCard()
{
$coverRef = $this->bundle->metadata()->get('cover');
$cover = null;
if (!empty($coverRef)) {
$cover = $this->bundle->attachments(AttachmentsManager::Images)->getComponentByRef($coverRef, 'listitem', ['nolink' => true]);
}
$date = $this->bundle->metadata()->get('date');
if (!empty($date)) {
data_set($this->viewData, 'date', Carbon::parse($date));
}
data_set($this->viewData, 'cover', $cover ? $cover->render() : null);
data_set($this->viewData, 'section', $this->bundle->getSection());
}
/**
* Pre-fill view with data used by all renderers
*/
protected function shareCommonDataWithView(): void
{
data_set($this->viewData, 'siteTitle', $this->bundle->getSiteTitle());
data_set($this->viewData, 'articleTitle', $this->bundle->getArticleTitle());
data_set($this->viewData, 'bundle', $this->bundle);
2024-04-24 13:55:08 +02:00
2024-04-26 22:12:00 +02:00
if (!empty($this->bundle->metadata('metadata')->get('Liens.Page originale'))) {
$url = $this->bundle->metadata('metadata')->get('Liens.Page originale')[0];
2024-04-24 13:55:08 +02:00
$link = (new Link($url, null, $this->bundle))->toArray();
$link['url'] = $url;
data_set($this->viewData, 'mainLink', $link);
}
}
2024-04-26 16:09:33 +02:00
protected function handlePagination(int $currentPage = 1)
{
$itemsPerPage = config('pagination.itemsPerPage');
2024-04-26 16:09:33 +02:00
$subBundles = $this->getSubBundles();
if (!$this->bundle->exists() && empty($subBundles)) {
throw new Exception(sprintf(
'Page %s does not exist in bundle %s',
$this->bundle->getCurrentPage(),
$this->bundle->getPath()
));
}
$totalPages = 1;
if (!empty($subBundles)) {
$chunks = array_chunk($subBundles, $itemsPerPage);
if (!array_key_exists($currentPage - 1, $chunks) && $currentPage > 1) {
throw new Exception(sprintf(
'Page %s does not exist in bundle %s',
$currentPage - 1,
$this->bundle->getPath()
));
}
$currentChunk = $chunks[$currentPage - 1];
$totalPages = count($chunks);
} else {
$currentChunk = [];
}
$bundles = [];
if (!empty($currentChunk)) {
$bundles = array_map(fn (string $path) => new Bundle($path, $this->bundle->getDisk()), $currentChunk);
}
$data = [
'root' => $this->bundle->getPath(),
'itemsPerPage' => $itemsPerPage,
'currentPage' => $currentPage,
'totalPages' => $totalPages,
'items' => $bundles,
];
data_set($this->viewData, 'pagination', $data);
2024-04-25 15:44:29 +02:00
$this->handleFilters($subBundles);
}
protected function handleFilters($subBundles)
{
}
protected function collectSubBundles()
{
$subBundles = Bundle::findBundles($this->bundle->getDisk(), $this->bundle->getPath(), true);
$subBundles = collect($subBundles)
->filter(fn (Bundle $bundle) => !empty($bundle->metadata()->get('date')) && $bundle->getPath() !== $this->bundle->getPath())
->sort(function (Bundle $bundleA, Bundle $bundleB) {
return Carbon::parse($bundleA->metadata()->get('date'))->lt(Carbon::parse($bundleB->metadata()->get('date')));
})
->map(fn (Bundle $bundle) => $bundle->getPath())
->toArray();
return $subBundles;
}
2024-05-08 17:40:24 +02:00
protected function renderView(?string $view = 'article')
{
$html = (string) view($view, $this->viewData);
return $html;
}
}