| 
									
										
										
										
											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') | 
					
						
							|  |  |  |     id="entity-dashboard" | 
					
						
							|  |  |  |     entity-id="{{ $book->id }}" | 
					
						
							|  |  |  |     entity-type="book" | 
					
						
							|  |  |  | @stop | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | @section('body') | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-24 23:57:35 +08:00
										 |  |  |     <div class="mb-s"> | 
					
						
							|  |  |  |         @include('partials.breadcrumbs', ['crumbs' => [ | 
					
						
							|  |  |  |             $book, | 
					
						
							|  |  |  |         ]]) | 
					
						
							|  |  |  |     </div> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-13 23:54:55 +08:00
										 |  |  |     <div class="content-wrap card"> | 
					
						
							|  |  |  |         <h1 class="break-text" v-pre>{{$book->name}}</h1> | 
					
						
							|  |  |  |         <div class="book-content" v-show="!searching"> | 
					
						
							|  |  |  |             <p class="text-muted" v-pre>{!! nl2br(e($book->description)) !!}</p> | 
					
						
							|  |  |  |             @if(count($bookChildren) > 0) | 
					
						
							|  |  |  |                 <div class="entity-list book-contents" v-pre> | 
					
						
							|  |  |  |                     @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 | 
					
						
							| 
									
										
										
										
											2019-04-13 18:24:41 +08:00
										 |  |  |                 <div class="mt-xl" v-pre> | 
					
						
							|  |  |  |                     <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> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-13 18:09:17 +08:00
										 |  |  |         @include('partials.entity-dashboard-search-results') | 
					
						
							| 
									
										
										
										
											2017-08-20 20:57:25 +08:00
										 |  |  |     </div> | 
					
						
							| 
									
										
										
										
											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"> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             <div dropdown class="dropdown-container"> | 
					
						
							|  |  |  |                 <div dropdown-toggle class="icon-list-item"> | 
					
						
							|  |  |  |                     <span>@icon('export')</span> | 
					
						
							|  |  |  |                     <span>{{ trans('entities.export') }}</span> | 
					
						
							|  |  |  |                 </div> | 
					
						
							| 
									
										
										
										
											2019-05-05 21:43:26 +08:00
										 |  |  |                 <ul class="wide dropdown-menu"> | 
					
						
							| 
									
										
										
										
											2019-04-13 19:46:15 +08:00
										 |  |  |                     <li><a href="{{ $book->getUrl('/export/html') }}" target="_blank">{{ trans('entities.export_html') }} <span class="text-muted float right">.html</span></a></li> | 
					
						
							|  |  |  |                     <li><a href="{{ $book->getUrl('/export/pdf') }}" target="_blank">{{ trans('entities.export_pdf') }} <span class="text-muted float right">.pdf</span></a></li> | 
					
						
							|  |  |  |                     <li><a href="{{ $book->getUrl('/export/plaintext') }}" target="_blank">{{ trans('entities.export_text') }} <span class="text-muted float right">.txt</span></a></li> | 
					
						
							|  |  |  |                 </ul> | 
					
						
							|  |  |  |             </div> | 
					
						
							| 
									
										
										
										
											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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-13 18:09:17 +08:00
										 |  |  |     @include('partials.entity-dashboard-search-box') | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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
										 |  |  | 
 |