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