| 
									
										
										
										
											2021-08-22 20:15:58 +08:00
										 |  |  | @extends('layouts.tri') | 
					
						
							| 
									
										
										
										
											2015-07-29 03:57:13 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-13 23:54:55 +08:00
										 |  |  | @section('container-attrs') | 
					
						
							| 
									
										
										
										
											2020-06-29 04:15:00 +08:00
										 |  |  |     component="entity-search" | 
					
						
							|  |  |  |     option:entity-search:entity-id="{{ $chapter->id }}" | 
					
						
							|  |  |  |     option:entity-search:entity-type="chapter" | 
					
						
							| 
									
										
										
										
											2019-01-13 23:54:55 +08:00
										 |  |  | @stop | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-22 13:20:13 +08:00
										 |  |  | @push('social-meta') | 
					
						
							| 
									
										
										
										
											2021-06-24 03:42:48 +08:00
										 |  |  |     <meta property="og:description" content="{{ Str::limit($chapter->description, 100, '...') }}"> | 
					
						
							| 
									
										
										
										
											2020-12-22 13:20:13 +08:00
										 |  |  | @endpush | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-07-24 01:29:04 +08:00
										 |  |  | @include('entities.body-tag-classes', ['entity' => $chapter]) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-13 23:54:55 +08:00
										 |  |  | @section('body') | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-25 18:30:26 +08:00
										 |  |  |     <div class="mb-m print-hidden"> | 
					
						
							| 
									
										
										
										
											2021-08-22 20:15:58 +08:00
										 |  |  |         @include('entities.breadcrumbs', ['crumbs' => [ | 
					
						
							| 
									
										
										
										
											2019-02-18 01:52:42 +08:00
										 |  |  |             $chapter->book, | 
					
						
							|  |  |  |             $chapter, | 
					
						
							|  |  |  |         ]]) | 
					
						
							| 
									
										
										
										
											2017-08-20 20:57:25 +08:00
										 |  |  |     </div> | 
					
						
							| 
									
										
										
										
											2019-01-13 23:54:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-25 22:44:51 +08:00
										 |  |  |     <main class="content-wrap card"> | 
					
						
							| 
									
										
										
										
											2020-06-29 04:15:00 +08:00
										 |  |  |         <h1 class="break-text">{{ $chapter->name }}</h1> | 
					
						
							|  |  |  |         <div refs="entity-search@contentView" class="chapter-content"> | 
					
						
							|  |  |  |             <p class="text-muted break-text">{!! nl2br(e($chapter->description)) !!}</p> | 
					
						
							| 
									
										
										
										
											2019-01-13 23:54:55 +08:00
										 |  |  |             @if(count($pages) > 0) | 
					
						
							| 
									
										
										
										
											2020-06-29 04:15:00 +08:00
										 |  |  |                 <div class="entity-list book-contents"> | 
					
						
							| 
									
										
										
										
											2019-01-13 23:54:55 +08:00
										 |  |  |                     @foreach($pages as $page) | 
					
						
							| 
									
										
										
										
											2021-08-22 20:15:58 +08:00
										 |  |  |                         @include('pages.parts.list-item', ['page' => $page]) | 
					
						
							| 
									
										
										
										
											2019-01-13 23:54:55 +08:00
										 |  |  |                     @endforeach | 
					
						
							|  |  |  |                 </div> | 
					
						
							|  |  |  |             @else | 
					
						
							| 
									
										
										
										
											2020-06-29 04:15:00 +08:00
										 |  |  |                 <div class="mt-xl"> | 
					
						
							| 
									
										
										
										
											2019-04-13 18:24:41 +08:00
										 |  |  |                     <hr> | 
					
						
							|  |  |  |                     <p class="text-muted italic mb-m mt-xl">{{ trans('entities.chapters_empty') }}</p> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                     <div class="icon-list block inline"> | 
					
						
							| 
									
										
										
										
											2019-01-13 23:54:55 +08:00
										 |  |  |                         @if(userCan('page-create', $chapter)) | 
					
						
							| 
									
										
										
										
											2019-04-13 18:24:41 +08:00
										 |  |  |                             <a href="{{ $chapter->getUrl('/create-page') }}" class="icon-list-item text-page"> | 
					
						
							|  |  |  |                                 <span class="icon">@icon('page')</span> | 
					
						
							|  |  |  |                                 <span>{{ trans('entities.books_empty_create_page') }}</span> | 
					
						
							|  |  |  |                             </a> | 
					
						
							| 
									
										
										
										
											2019-01-13 23:54:55 +08:00
										 |  |  |                         @endif | 
					
						
							|  |  |  |                         @if(userCan('book-update', $book)) | 
					
						
							| 
									
										
										
										
											2019-04-13 18:24:41 +08:00
										 |  |  |                             <a href="{{ $book->getUrl('/sort') }}" class="icon-list-item text-book"> | 
					
						
							|  |  |  |                                 <span class="icon">@icon('book')</span> | 
					
						
							|  |  |  |                                 <span>{{ trans('entities.books_empty_sort_current_book') }}</span> | 
					
						
							|  |  |  |                             </a> | 
					
						
							| 
									
										
										
										
											2019-01-13 23:54:55 +08:00
										 |  |  |                         @endif | 
					
						
							| 
									
										
										
										
											2019-04-13 18:24:41 +08:00
										 |  |  |                     </div> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-13 23:54:55 +08:00
										 |  |  |                 </div> | 
					
						
							|  |  |  |             @endif | 
					
						
							|  |  |  |         </div> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-22 20:15:58 +08:00
										 |  |  |         @include('entities.search-results') | 
					
						
							| 
									
										
										
										
											2019-08-25 22:44:51 +08:00
										 |  |  |     </main> | 
					
						
							| 
									
										
										
										
											2019-01-13 23:54:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-22 20:15:58 +08:00
										 |  |  |     @include('entities.sibling-navigation', ['next' => $next, 'previous' => $previous]) | 
					
						
							| 
									
										
										
										
											2021-05-29 19:39:41 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-13 23:54:55 +08:00
										 |  |  | @stop | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | @section('right') | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-03-30 23:15:01 +08:00
										 |  |  |     <div class="mb-xl"> | 
					
						
							|  |  |  |         <h5>{{ trans('common.details') }}</h5> | 
					
						
							| 
									
										
										
										
											2022-05-14 01:03:43 +08:00
										 |  |  |         <div class="blended-links"> | 
					
						
							| 
									
										
										
										
											2021-08-22 20:15:58 +08:00
										 |  |  |             @include('entities.meta', ['entity' => $chapter]) | 
					
						
							| 
									
										
										
										
											2019-03-30 23:15:01 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-10-10 23:22:51 +08:00
										 |  |  |             @if($book->hasPermissions()) | 
					
						
							| 
									
										
										
										
											2019-03-30 23:15:01 +08:00
										 |  |  |                 <div class="active-restriction"> | 
					
						
							|  |  |  |                     @if(userCan('restrictions-manage', $book)) | 
					
						
							| 
									
										
										
										
											2022-05-14 01:03:43 +08:00
										 |  |  |                         <a href="{{ $book->getUrl('/permissions') }}" class="entity-meta-item"> | 
					
						
							|  |  |  |                             @icon('lock') | 
					
						
							|  |  |  |                             <div>{{ trans('entities.books_permissions_active') }}</div> | 
					
						
							|  |  |  |                         </a> | 
					
						
							| 
									
										
										
										
											2019-03-30 23:15:01 +08:00
										 |  |  |                     @else | 
					
						
							| 
									
										
										
										
											2022-05-14 01:03:43 +08:00
										 |  |  |                         <div class="entity-meta-item"> | 
					
						
							|  |  |  |                             @icon('lock') | 
					
						
							|  |  |  |                             <div>{{ trans('entities.books_permissions_active') }}</div> | 
					
						
							|  |  |  |                         </div> | 
					
						
							| 
									
										
										
										
											2019-03-30 23:15:01 +08:00
										 |  |  |                     @endif | 
					
						
							|  |  |  |                 </div> | 
					
						
							|  |  |  |             @endif | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-10-10 23:22:51 +08:00
										 |  |  |             @if($chapter->hasPermissions()) | 
					
						
							| 
									
										
										
										
											2019-03-30 23:15:01 +08:00
										 |  |  |                 <div class="active-restriction"> | 
					
						
							|  |  |  |                     @if(userCan('restrictions-manage', $chapter)) | 
					
						
							| 
									
										
										
										
											2022-05-14 01:03:43 +08:00
										 |  |  |                         <a href="{{ $chapter->getUrl('/permissions') }}" class="entity-meta-item"> | 
					
						
							|  |  |  |                             @icon('lock') | 
					
						
							|  |  |  |                             <div>{{ trans('entities.chapters_permissions_active') }}</div> | 
					
						
							|  |  |  |                         </a> | 
					
						
							| 
									
										
										
										
											2019-03-30 23:15:01 +08:00
										 |  |  |                     @else | 
					
						
							| 
									
										
										
										
											2022-05-14 01:03:43 +08:00
										 |  |  |                         <div class="entity-meta-item"> | 
					
						
							|  |  |  |                             @icon('lock') | 
					
						
							|  |  |  |                             <div>{{ trans('entities.chapters_permissions_active') }}</div> | 
					
						
							|  |  |  |                         </div> | 
					
						
							| 
									
										
										
										
											2019-03-30 23:15:01 +08:00
										 |  |  |                     @endif | 
					
						
							|  |  |  |                 </div> | 
					
						
							|  |  |  |             @endif | 
					
						
							|  |  |  |         </div> | 
					
						
							|  |  |  |     </div> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-13 23:54:55 +08:00
										 |  |  |     <div class="actions mb-xl"> | 
					
						
							|  |  |  |         <h5>{{ trans('common.actions') }}</h5> | 
					
						
							|  |  |  |         <div class="icon-list text-primary"> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-20 20:57:25 +08:00
										 |  |  |             @if(userCan('page-create', $chapter)) | 
					
						
							| 
									
										
										
										
											2022-11-05 21:39:17 +08:00
										 |  |  |                 <a href="{{ $chapter->getUrl('/create-page') }}" data-shortcut="new" class="icon-list-item"> | 
					
						
							| 
									
										
										
										
											2019-02-16 23:05:18 +08:00
										 |  |  |                     <span>@icon('add')</span> | 
					
						
							| 
									
										
										
										
											2019-01-13 23:54:55 +08:00
										 |  |  |                     <span>{{ trans('entities.pages_new') }}</span> | 
					
						
							|  |  |  |                 </a> | 
					
						
							| 
									
										
										
										
											2017-08-20 20:57:25 +08:00
										 |  |  |             @endif | 
					
						
							| 
									
										
										
										
											2019-04-13 19:46:15 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |             <hr class="primary-background"/> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-20 20:57:25 +08:00
										 |  |  |             @if(userCan('chapter-update', $chapter)) | 
					
						
							| 
									
										
										
										
											2022-11-05 21:39:17 +08:00
										 |  |  |                 <a href="{{ $chapter->getUrl('/edit') }}" data-shortcut="edit" class="icon-list-item"> | 
					
						
							| 
									
										
										
										
											2019-02-16 23:05:18 +08:00
										 |  |  |                     <span>@icon('edit')</span> | 
					
						
							| 
									
										
										
										
											2019-01-13 23:54:55 +08:00
										 |  |  |                     <span>{{ trans('common.edit') }}</span> | 
					
						
							|  |  |  |                 </a> | 
					
						
							| 
									
										
										
										
											2017-08-20 20:57:25 +08:00
										 |  |  |             @endif | 
					
						
							| 
									
										
										
										
											2022-07-16 20:17:08 +08:00
										 |  |  |             @if(userCanOnAny('create', \BookStack\Entities\Models\Book::class) || userCan('chapter-create-all') || userCan('chapter-create-own')) | 
					
						
							| 
									
										
										
										
											2022-11-05 21:39:17 +08:00
										 |  |  |                 <a href="{{ $chapter->getUrl('/copy') }}" data-shortcut="copy" class="icon-list-item"> | 
					
						
							| 
									
										
										
										
											2021-12-19 23:40:52 +08:00
										 |  |  |                     <span>@icon('copy')</span> | 
					
						
							|  |  |  |                     <span>{{ trans('common.copy') }}</span> | 
					
						
							|  |  |  |                 </a> | 
					
						
							|  |  |  |             @endif | 
					
						
							| 
									
										
										
										
											2019-01-13 23:54:55 +08:00
										 |  |  |             @if(userCan('chapter-update', $chapter) && userCan('chapter-delete', $chapter)) | 
					
						
							| 
									
										
										
										
											2022-11-05 21:39:17 +08:00
										 |  |  |                 <a href="{{ $chapter->getUrl('/move') }}" data-shortcut="move" class="icon-list-item"> | 
					
						
							| 
									
										
										
										
											2019-02-16 23:05:18 +08:00
										 |  |  |                     <span>@icon('folder')</span> | 
					
						
							| 
									
										
										
										
											2019-01-13 23:54:55 +08:00
										 |  |  |                     <span>{{ trans('common.move') }}</span> | 
					
						
							|  |  |  |                 </a> | 
					
						
							|  |  |  |             @endif | 
					
						
							|  |  |  |             @if(userCan('restrictions-manage', $chapter)) | 
					
						
							| 
									
										
										
										
											2022-11-05 21:39:17 +08:00
										 |  |  |                 <a href="{{ $chapter->getUrl('/permissions') }}" data-shortcut="permissions" class="icon-list-item"> | 
					
						
							| 
									
										
										
										
											2019-02-16 23:05:18 +08:00
										 |  |  |                     <span>@icon('lock')</span> | 
					
						
							| 
									
										
										
										
											2019-01-13 23:54:55 +08:00
										 |  |  |                     <span>{{ trans('entities.permissions') }}</span> | 
					
						
							|  |  |  |                 </a> | 
					
						
							| 
									
										
										
										
											2017-08-20 20:57:25 +08:00
										 |  |  |             @endif | 
					
						
							| 
									
										
										
										
											2019-01-13 23:54:55 +08:00
										 |  |  |             @if(userCan('chapter-delete', $chapter)) | 
					
						
							| 
									
										
										
										
											2022-11-05 21:39:17 +08:00
										 |  |  |                 <a href="{{ $chapter->getUrl('/delete') }}" data-shortcut="delete" class="icon-list-item"> | 
					
						
							| 
									
										
										
										
											2019-02-16 23:05:18 +08:00
										 |  |  |                     <span>@icon('delete')</span> | 
					
						
							| 
									
										
										
										
											2019-01-13 23:54:55 +08:00
										 |  |  |                     <span>{{ trans('common.delete') }}</span> | 
					
						
							|  |  |  |                 </a> | 
					
						
							|  |  |  |             @endif | 
					
						
							| 
									
										
										
										
											2019-04-13 19:46:15 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-07-26 19:35:50 +08:00
										 |  |  |             @if($chapter->book && userCan('book-update', $chapter->book)) | 
					
						
							|  |  |  |                 <hr class="primary-background"/> | 
					
						
							| 
									
										
										
										
											2022-11-05 21:39:17 +08:00
										 |  |  |                 <a href="{{ $chapter->book->getUrl('/sort') }}" data-shortcut="sort" class="icon-list-item"> | 
					
						
							| 
									
										
										
										
											2022-07-26 19:35:50 +08:00
										 |  |  |                     <span>@icon('sort')</span> | 
					
						
							|  |  |  |                     <span>{{ trans('entities.chapter_sort_book') }}</span> | 
					
						
							|  |  |  |                 </a> | 
					
						
							|  |  |  |             @endif | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-13 19:46:15 +08:00
										 |  |  |             <hr class="primary-background"/> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-16 17:26:28 +08:00
										 |  |  |             @if(signedInUser()) | 
					
						
							| 
									
										
										
										
											2021-08-22 20:15:58 +08:00
										 |  |  |                 @include('entities.favourite-action', ['entity' => $chapter]) | 
					
						
							| 
									
										
										
										
											2021-05-16 17:26:28 +08:00
										 |  |  |             @endif | 
					
						
							| 
									
										
										
										
											2021-08-29 04:48:17 +08:00
										 |  |  |             @if(userCan('content-export')) | 
					
						
							|  |  |  |                 @include('entities.export-menu', ['entity' => $chapter]) | 
					
						
							|  |  |  |             @endif | 
					
						
							| 
									
										
										
										
											2019-01-13 23:54:55 +08:00
										 |  |  |         </div> | 
					
						
							|  |  |  |     </div> | 
					
						
							| 
									
										
										
										
											2017-08-20 20:57:25 +08:00
										 |  |  | @stop | 
					
						
							| 
									
										
										
										
											2015-07-29 03:57:13 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-13 23:54:55 +08:00
										 |  |  | @section('left') | 
					
						
							| 
									
										
										
										
											2018-04-30 21:35:15 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-22 20:15:58 +08:00
										 |  |  |     @include('entities.search-form', ['label' => trans('entities.chapters_search_this')]) | 
					
						
							| 
									
										
										
										
											2019-04-13 18:09:17 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-30 21:35:15 +08:00
										 |  |  |     @if($chapter->tags->count() > 0) | 
					
						
							| 
									
										
										
										
											2019-01-13 23:54:55 +08:00
										 |  |  |         <div class="mb-xl"> | 
					
						
							| 
									
										
										
										
											2021-08-22 20:15:58 +08:00
										 |  |  |             @include('entities.tag-list', ['entity' => $chapter]) | 
					
						
							| 
									
										
										
										
											2019-01-13 23:54:55 +08:00
										 |  |  |         </div> | 
					
						
							| 
									
										
										
										
											2018-04-30 21:35:15 +08:00
										 |  |  |     @endif | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-22 20:15:58 +08:00
										 |  |  |     @include('entities.book-tree', ['book' => $book, 'sidebarTree' => $sidebarTree]) | 
					
						
							| 
									
										
										
										
											2017-08-20 20:57:25 +08:00
										 |  |  | @stop | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-29 03:57:13 +08:00
										 |  |  | 
 |