2020-07-26 14:49:05 +01:00
|
|
|
<nav id="book-tree"
|
|
|
|
class="book-tree mb-xl"
|
|
|
|
aria-label="{{ trans('entities.books_navigation') }}">
|
|
|
|
|
2018-12-09 16:51:31 +00:00
|
|
|
<h5>{{ trans('entities.books_navigation') }}</h5>
|
2017-08-26 15:41:33 +01:00
|
|
|
|
2019-03-30 15:15:01 +00:00
|
|
|
<ul class="sidebar-page-list mt-xs menu entity-list">
|
|
|
|
@if (userCan('view', $book))
|
|
|
|
<li class="list-item-book book">
|
2021-08-22 13:15:58 +01:00
|
|
|
@include('entities.list-item-basic', ['entity' => $book, 'classes' => ($current->matches($book)? 'selected' : '')])
|
2019-03-30 15:15:01 +00:00
|
|
|
</li>
|
|
|
|
@endif
|
2017-08-26 15:41:33 +01:00
|
|
|
|
2018-11-11 13:11:36 +00:00
|
|
|
@foreach($sidebarTree as $bookChild)
|
2020-12-08 23:46:38 +00:00
|
|
|
<li class="list-item-{{ $bookChild->getType() }} {{ $bookChild->getType() }} {{ $bookChild->isA('page') && $bookChild->draft ? 'draft' : '' }}">
|
2021-08-22 13:15:58 +01:00
|
|
|
@include('entities.list-item-basic', ['entity' => $bookChild, 'classes' => $current->matches($bookChild)? 'selected' : ''])
|
2017-08-26 15:41:33 +01:00
|
|
|
|
2020-12-17 17:31:18 +00:00
|
|
|
@if($bookChild->isA('chapter') && count($bookChild->visible_pages) > 0)
|
2019-03-30 15:15:01 +00:00
|
|
|
<div class="entity-list-item no-hover">
|
2019-08-24 18:26:28 +01:00
|
|
|
<span role="presentation" class="icon text-chapter"></span>
|
2019-03-30 15:15:01 +00:00
|
|
|
<div class="content">
|
2021-08-22 13:15:58 +01:00
|
|
|
@include('chapters.parts.child-menu', [
|
2019-08-24 18:26:28 +01:00
|
|
|
'chapter' => $bookChild,
|
|
|
|
'current' => $current,
|
|
|
|
'isOpen' => $bookChild->matchesOrContains($current)
|
|
|
|
])
|
2019-03-30 15:15:01 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2018-11-11 13:11:36 +00:00
|
|
|
@endif
|
2017-08-26 15:41:33 +01:00
|
|
|
|
2018-11-11 13:11:36 +00:00
|
|
|
</li>
|
|
|
|
@endforeach
|
|
|
|
</ul>
|
2019-08-25 15:44:51 +01:00
|
|
|
</nav>
|