| 
									
										
										
										
											2019-01-13 23:54:55 +08:00
										 |  |  | @extends('tri-layout') | 
					
						
							| 
									
										
										
										
											2015-07-13 03:01:42 +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="{{ $book->id }}" | 
					
						
							|  |  |  |     option:entity-search:entity-type="book" | 
					
						
							| 
									
										
										
										
											2019-01-13 23:54:55 +08:00
										 |  |  | @stop | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | @section('body') | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-24 23:57:35 +08:00
										 |  |  |     <div class="mb-s"> | 
					
						
							|  |  |  |         @include('partials.breadcrumbs', ['crumbs' => [ | 
					
						
							|  |  |  |             $book, | 
					
						
							|  |  |  |         ]]) | 
					
						
							|  |  |  |     </div> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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">{{$book->name}}</h1> | 
					
						
							|  |  |  |         <div refs="entity-search@contentView" class="book-content"> | 
					
						
							|  |  |  |             <p class="text-muted">{!! nl2br(e($book->description)) !!}</p> | 
					
						
							| 
									
										
										
										
											2019-01-13 23:54:55 +08:00
										 |  |  |             @if(count($bookChildren) > 0) | 
					
						
							| 
									
										
										
										
											2020-06-29 04:15:00 +08:00
										 |  |  |                 <div class="entity-list book-contents"> | 
					
						
							| 
									
										
										
										
											2019-01-13 23:54:55 +08:00
										 |  |  |                     @foreach($bookChildren as $childElement) | 
					
						
							|  |  |  |                         @if($childElement->isA('chapter')) | 
					
						
							|  |  |  |                             @include('chapters.list-item', ['chapter' => $childElement]) | 
					
						
							|  |  |  |                         @else | 
					
						
							|  |  |  |                             @include('pages.list-item', ['page' => $childElement]) | 
					
						
							|  |  |  |                         @endif | 
					
						
							|  |  |  |                     @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.books_empty_contents') }}</p> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                     <div class="icon-list block inline"> | 
					
						
							|  |  |  |                         @if(userCan('page-create', $book)) | 
					
						
							|  |  |  |                             <a href="{{ $book->getUrl('/create-page') }}" class="icon-list-item text-page"> | 
					
						
							|  |  |  |                                 <span class="icon">@icon('page')</span> | 
					
						
							|  |  |  |                                 <span>{{ trans('entities.books_empty_create_page') }}</span> | 
					
						
							|  |  |  |                             </a> | 
					
						
							|  |  |  |                         @endif | 
					
						
							|  |  |  |                         @if(userCan('chapter-create', $book)) | 
					
						
							|  |  |  |                             <a href="{{ $book->getUrl('/create-chapter') }}" class="icon-list-item text-chapter"> | 
					
						
							|  |  |  |                                 <span class="icon">@icon('chapter')</span> | 
					
						
							|  |  |  |                                 <span>{{ trans('entities.books_empty_add_chapter') }}</span> | 
					
						
							|  |  |  |                             </a> | 
					
						
							|  |  |  |                         @endif | 
					
						
							|  |  |  |                     </div> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-13 23:54:55 +08:00
										 |  |  |                 </div> | 
					
						
							|  |  |  |             @endif | 
					
						
							|  |  |  |         </div> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-06-29 04:15:00 +08:00
										 |  |  |         @include('partials.entity-search-results') | 
					
						
							| 
									
										
										
										
											2019-08-25 22:44:51 +08:00
										 |  |  |     </main> | 
					
						
							| 
									
										
										
										
											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> | 
					
						
							|  |  |  |         <div class="text-small text-muted blended-links"> | 
					
						
							|  |  |  |             @include('partials.entity-meta', ['entity' => $book]) | 
					
						
							|  |  |  |             @if($book->restricted) | 
					
						
							|  |  |  |                 <div class="active-restriction"> | 
					
						
							|  |  |  |                     @if(userCan('restrictions-manage', $book)) | 
					
						
							|  |  |  |                         <a href="{{ $book->getUrl('/permissions') }}">@icon('lock'){{ trans('entities.books_permissions_active') }}</a> | 
					
						
							|  |  |  |                     @else | 
					
						
							|  |  |  |                         @icon('lock'){{ trans('entities.books_permissions_active') }} | 
					
						
							|  |  |  |                     @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', $book)) | 
					
						
							| 
									
										
										
										
											2019-01-13 23:54:55 +08:00
										 |  |  |                 <a href="{{ $book->getUrl('/create-page') }}" 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 | 
					
						
							|  |  |  |             @if(userCan('chapter-create', $book)) | 
					
						
							| 
									
										
										
										
											2019-01-13 23:54:55 +08:00
										 |  |  |                 <a href="{{ $book->getUrl('/create-chapter') }}" 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.chapters_new') }}</span> | 
					
						
							|  |  |  |                 </a> | 
					
						
							| 
									
										
										
										
											2017-08-20 20:57:25 +08:00
										 |  |  |             @endif | 
					
						
							| 
									
										
										
										
											2019-04-13 19:46:15 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |             <hr class="primary-background"> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-13 23:54:55 +08:00
										 |  |  |             @if(userCan('book-update', $book)) | 
					
						
							|  |  |  |                 <a href="{{ $book->getUrl('/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> | 
					
						
							|  |  |  |                 <a href="{{ $book->getUrl('/sort') }}" class="icon-list-item"> | 
					
						
							| 
									
										
										
										
											2019-02-16 23:05:18 +08:00
										 |  |  |                     <span>@icon('sort')</span> | 
					
						
							| 
									
										
										
										
											2019-01-13 23:54:55 +08:00
										 |  |  |                     <span>{{ trans('common.sort') }}</span> | 
					
						
							|  |  |  |                 </a> | 
					
						
							|  |  |  |             @endif | 
					
						
							|  |  |  |             @if(userCan('restrictions-manage', $book)) | 
					
						
							|  |  |  |                 <a href="{{ $book->getUrl('/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> | 
					
						
							|  |  |  |             @endif | 
					
						
							|  |  |  |             @if(userCan('book-delete', $book)) | 
					
						
							|  |  |  |                 <a href="{{ $book->getUrl('/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> | 
					
						
							| 
									
										
										
										
											2017-08-20 20:57:25 +08:00
										 |  |  |             @endif | 
					
						
							| 
									
										
										
										
											2019-04-13 19:46:15 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |             <hr class="primary-background"> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-25 01:26:28 +08:00
										 |  |  |             @include('partials.entity-export-menu', ['entity' => $book]) | 
					
						
							| 
									
										
										
										
											2015-07-16 05:55:49 +08:00
										 |  |  |         </div> | 
					
						
							| 
									
										
										
										
											2015-07-24 04:55:46 +08:00
										 |  |  |     </div> | 
					
						
							| 
									
										
										
										
											2019-01-13 23:54:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-20 20:57:25 +08:00
										 |  |  | @stop | 
					
						
							| 
									
										
										
										
											2015-07-16 05:55:49 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-13 23:54:55 +08:00
										 |  |  | @section('left') | 
					
						
							| 
									
										
										
										
											2015-08-17 01:59:23 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-06-29 04:15:00 +08:00
										 |  |  |     @include('partials.entity-search-form', ['label' => trans('entities.books_search_this')]) | 
					
						
							| 
									
										
										
										
											2019-04-13 18:09:17 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-30 21:35:15 +08:00
										 |  |  |     @if($book->tags->count() > 0) | 
					
						
							| 
									
										
										
										
											2019-01-13 23:54:55 +08:00
										 |  |  |         <div class="mb-xl"> | 
					
						
							| 
									
										
										
										
											2018-04-30 21:35:15 +08:00
										 |  |  |             @include('components.tag-list', ['entity' => $book]) | 
					
						
							| 
									
										
										
										
											2019-01-13 23:54:55 +08:00
										 |  |  |         </div> | 
					
						
							| 
									
										
										
										
											2018-04-30 21:35:15 +08:00
										 |  |  |     @endif | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-10 00:29:22 +08:00
										 |  |  |     @if(count($bookParentShelves) > 0) | 
					
						
							|  |  |  |         <div class="actions mb-xl"> | 
					
						
							|  |  |  |             <h5>{{ trans('entities.shelves_long') }}</h5> | 
					
						
							|  |  |  |             @include('partials.entity-list', ['entities' => $bookParentShelves, 'style' => 'compact']) | 
					
						
							|  |  |  |         </div> | 
					
						
							|  |  |  |     @endif | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-30 21:09:51 +08:00
										 |  |  |     @if(count($activity) > 0) | 
					
						
							| 
									
										
										
										
											2019-01-13 23:54:55 +08:00
										 |  |  |         <div class="mb-xl"> | 
					
						
							|  |  |  |             <h5>{{ trans('entities.recent_activity') }}</h5> | 
					
						
							| 
									
										
										
										
											2019-02-03 21:45:45 +08:00
										 |  |  |             @include('partials.activity-list', ['activity' => $activity]) | 
					
						
							| 
									
										
										
										
											2018-03-30 21:09:51 +08:00
										 |  |  |         </div> | 
					
						
							|  |  |  |     @endif | 
					
						
							| 
									
										
										
										
											2017-08-20 20:57:25 +08:00
										 |  |  | @stop | 
					
						
							| 
									
										
										
										
											2015-08-17 01:59:23 +08:00
										 |  |  | 
 |