BookStack/app/Entities/BreadcrumbsViewComposer.php

33 lines
751 B
PHP
Raw Normal View History

2021-06-26 11:23:15 -04:00
<?php
namespace BookStack\Entities;
use BookStack\Entities\Models\Book;
use BookStack\Entities\Tools\ShelfContext;
use Illuminate\View\View;
class BreadcrumbsViewComposer
{
public function __construct(
protected ShelfContext $shelfContext
) {
}
/**
* Modify data when the view is composed.
*/
public function compose(View $view): void
{
$crumbs = $view->getData()['crumbs'];
2019-09-13 18:58:40 -04:00
$firstCrumb = $crumbs[0] ?? null;
2019-09-13 18:58:40 -04:00
if ($firstCrumb instanceof Book) {
$shelf = $this->shelfContext->getContextualShelfForBook($firstCrumb);
if ($shelf) {
array_unshift($crumbs, $shelf);
$view->with('crumbs', $crumbs);
}
}
}
2019-05-05 09:54:37 -04:00
}