| 
									
										
										
										
											2015-07-13 03:01:42 +08:00
										 |  |  | @extends('base') | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | @section('content') | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-08-31 00:53:30 +08:00
										 |  |  |     <div class="faded-small"> | 
					
						
							|  |  |  |         <div class="container"> | 
					
						
							|  |  |  |             <div class="row"> | 
					
						
							|  |  |  |                 <div class="col-md-12"> | 
					
						
							|  |  |  |                     <div class="action-buttons faded"> | 
					
						
							|  |  |  |                         @if($currentUser->can('page-create')) | 
					
						
							| 
									
										
										
										
											2015-09-03 01:26:33 +08:00
										 |  |  |                             <a href="{{$book->getUrl() . '/page/create'}}" class="text-pos text-button"><i class="zmdi zmdi-plus"></i> New Page</a> | 
					
						
							| 
									
										
										
										
											2015-08-31 00:53:30 +08:00
										 |  |  |                         @endif | 
					
						
							|  |  |  |                         @if($currentUser->can('chapter-create')) | 
					
						
							| 
									
										
										
										
											2015-09-03 01:26:33 +08:00
										 |  |  |                             <a href="{{$book->getUrl() . '/chapter/create'}}" class="text-pos text-button"><i class="zmdi zmdi-plus"></i> New Chapter</a> | 
					
						
							| 
									
										
										
										
											2015-08-31 00:53:30 +08:00
										 |  |  |                         @endif | 
					
						
							|  |  |  |                         @if($currentUser->can('book-update')) | 
					
						
							| 
									
										
										
										
											2015-09-03 01:26:33 +08:00
										 |  |  |                             <a href="{{$book->getEditUrl()}}" class="text-primary text-button"><i class="zmdi zmdi-edit"></i>Edit</a> | 
					
						
							|  |  |  |                             <a href="{{ $book->getUrl() }}/sort" class="text-primary text-button"><i class="zmdi zmdi-sort"></i>Sort</a> | 
					
						
							| 
									
										
										
										
											2015-08-31 00:53:30 +08:00
										 |  |  |                         @endif | 
					
						
							|  |  |  |                         @if($currentUser->can('book-delete')) | 
					
						
							| 
									
										
										
										
											2015-09-03 01:26:33 +08:00
										 |  |  |                             <a href="{{ $book->getUrl() }}/delete" class="text-neg text-button"><i class="zmdi zmdi-delete"></i>Delete</a> | 
					
						
							| 
									
										
										
										
											2015-08-31 00:53:30 +08:00
										 |  |  |                         @endif | 
					
						
							|  |  |  |                     </div> | 
					
						
							|  |  |  |                 </div> | 
					
						
							| 
									
										
										
										
											2015-07-16 05:55:49 +08:00
										 |  |  |             </div> | 
					
						
							|  |  |  |         </div> | 
					
						
							| 
									
										
										
										
											2015-07-24 04:55:46 +08:00
										 |  |  |     </div> | 
					
						
							| 
									
										
										
										
											2015-07-16 05:55:49 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-08-17 01:59:23 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-31 02:38:18 +08:00
										 |  |  |     <div class="container" id="book-dashboard" ng-controller="BookShowController" book-id="{{ $book->id }}"> | 
					
						
							| 
									
										
										
										
											2015-08-31 00:53:30 +08:00
										 |  |  |         <div class="row"> | 
					
						
							|  |  |  |             <div class="col-md-7"> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-08-17 01:59:23 +08:00
										 |  |  |                 <h1>{{$book->name}}</h1> | 
					
						
							| 
									
										
										
										
											2015-12-31 02:38:18 +08:00
										 |  |  |                 <div class="book-content" ng-show="!searching"> | 
					
						
							|  |  |  |                     <p class="text-muted" ng-non-bindable>{{$book->description}}</p> | 
					
						
							| 
									
										
										
										
											2015-09-01 22:35:11 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-31 02:38:18 +08:00
										 |  |  |                     <div class="page-list" ng-non-bindable> | 
					
						
							| 
									
										
										
										
											2015-09-01 22:35:11 +08:00
										 |  |  |                         <hr> | 
					
						
							| 
									
										
										
										
											2015-11-27 07:45:04 +08:00
										 |  |  |                         @if(count($bookChildren) > 0) | 
					
						
							|  |  |  |                             @foreach($bookChildren as $childElement) | 
					
						
							| 
									
										
										
										
											2015-09-04 02:05:45 +08:00
										 |  |  |                                 @if($childElement->isA('chapter')) | 
					
						
							|  |  |  |                                     @include('chapters/list-item', ['chapter' => $childElement]) | 
					
						
							|  |  |  |                                 @else | 
					
						
							|  |  |  |                                     @include('pages/list-item', ['page' => $childElement]) | 
					
						
							|  |  |  |                                 @endif | 
					
						
							| 
									
										
										
										
											2015-09-01 22:35:11 +08:00
										 |  |  |                                 <hr> | 
					
						
							|  |  |  |                             @endforeach | 
					
						
							|  |  |  |                         @else | 
					
						
							|  |  |  |                             <p class="text-muted">No pages or chapters have been created for this book.</p> | 
					
						
							|  |  |  |                             <p> | 
					
						
							|  |  |  |                                 <a href="{{$book->getUrl() . '/page/create'}}" class="text-page"><i class="zmdi zmdi-file-text"></i>Create a new page</a> | 
					
						
							|  |  |  |                                   <em class="text-muted">-or-</em>    | 
					
						
							|  |  |  |                                 <a href="{{$book->getUrl() . '/chapter/create'}}" class="text-chapter"><i class="zmdi zmdi-collection-bookmark"></i>Add a chapter</a> | 
					
						
							|  |  |  |                             </p> | 
					
						
							| 
									
										
										
										
											2015-09-01 00:59:45 +08:00
										 |  |  |                             <hr> | 
					
						
							| 
									
										
										
										
											2015-09-01 22:35:11 +08:00
										 |  |  |                         @endif | 
					
						
							|  |  |  |                         <p class="text-muted small"> | 
					
						
							|  |  |  |                             Created {{$book->created_at->diffForHumans()}} @if($book->createdBy) by {{$book->createdBy->name}} @endif | 
					
						
							|  |  |  |                             <br> | 
					
						
							| 
									
										
										
										
											2015-12-16 03:27:36 +08:00
										 |  |  |                             Last Updated {{$book->updated_at->diffForHumans()}} @if($book->updatedBy) by {{$book->updatedBy->name}} @endif | 
					
						
							| 
									
										
										
										
											2015-09-01 00:59:45 +08:00
										 |  |  |                         </p> | 
					
						
							| 
									
										
										
										
											2015-09-01 22:35:11 +08:00
										 |  |  |                     </div> | 
					
						
							|  |  |  |                 </div> | 
					
						
							| 
									
										
										
										
											2015-12-31 02:38:18 +08:00
										 |  |  |                 <div class="search-results" ng-cloak ng-show="searching"> | 
					
						
							|  |  |  |                     <h3 class="text-muted">Search Results <a ng-if="searching" ng-click="clearSearch()" class="text-small"><i class="zmdi zmdi-close"></i>Clear Search</a></h3> | 
					
						
							|  |  |  |                     <div ng-if="!searchResults"> | 
					
						
							| 
									
										
										
										
											2015-09-04 02:05:45 +08:00
										 |  |  |                         @include('partials/loading-icon') | 
					
						
							|  |  |  |                     </div> | 
					
						
							| 
									
										
										
										
											2015-12-31 02:38:18 +08:00
										 |  |  |                     <div ng-bind-html="searchResults"></div> | 
					
						
							| 
									
										
										
										
											2015-07-28 03:17:08 +08:00
										 |  |  |                 </div> | 
					
						
							| 
									
										
										
										
											2015-08-17 01:59:23 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-08-09 04:28:50 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-08-31 00:53:30 +08:00
										 |  |  |             </div> | 
					
						
							| 
									
										
										
										
											2015-08-17 01:59:23 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-08-31 00:53:30 +08:00
										 |  |  |             <div class="col-md-4 col-md-offset-1"> | 
					
						
							| 
									
										
										
										
											2015-09-01 22:35:11 +08:00
										 |  |  |                 <div class="margin-top large"></div> | 
					
						
							|  |  |  |                 <div class="search-box"> | 
					
						
							| 
									
										
										
										
											2015-12-31 02:38:18 +08:00
										 |  |  |                     <form ng-submit="searchBook($event)"> | 
					
						
							|  |  |  |                         <input ng-model="searchTerm" ng-change="checkSearchForm()" type="text" name="term" placeholder="Search This Book"> | 
					
						
							| 
									
										
										
										
											2015-09-01 22:35:11 +08:00
										 |  |  |                         <button type="submit"><i class="zmdi zmdi-search"></i></button> | 
					
						
							| 
									
										
										
										
											2015-12-31 02:38:18 +08:00
										 |  |  |                         <button ng-if="searching" ng-click="clearSearch()" type="button"><i class="zmdi zmdi-close"></i></button> | 
					
						
							| 
									
										
										
										
											2015-09-01 22:35:11 +08:00
										 |  |  |                     </form> | 
					
						
							|  |  |  |                 </div> | 
					
						
							|  |  |  |                 <div class="activity anim fadeIn"> | 
					
						
							|  |  |  |                     <h3>Recent Activity</h3> | 
					
						
							|  |  |  |                     @include('partials/activity-list', ['activity' => Activity::entityActivity($book, 20, 0)]) | 
					
						
							|  |  |  |                 </div> | 
					
						
							| 
									
										
										
										
											2015-08-31 00:53:30 +08:00
										 |  |  |             </div> | 
					
						
							| 
									
										
										
										
											2015-08-17 01:59:23 +08:00
										 |  |  |         </div> | 
					
						
							| 
									
										
										
										
											2015-07-16 05:55:49 +08:00
										 |  |  |     </div> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-13 03:01:42 +08:00
										 |  |  | @stop |