2015-07-12 15:01:42 -04:00
|
|
|
@extends('base')
|
|
|
|
|
|
|
|
@section('content')
|
|
|
|
|
2015-08-30 12:53:30 -04: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'))
|
|
|
|
<a href="{{$book->getUrl() . '/page/create'}}" class="text-pos"><i class="zmdi zmdi-plus"></i> New Page</a>
|
|
|
|
@endif
|
|
|
|
@if($currentUser->can('chapter-create'))
|
|
|
|
<a href="{{$book->getUrl() . '/chapter/create'}}" class="text-pos"><i class="zmdi zmdi-plus"></i> New Chapter</a>
|
|
|
|
@endif
|
|
|
|
@if($currentUser->can('book-update'))
|
|
|
|
<a href="{{$book->getEditUrl()}}" class="text-primary"><i class="zmdi zmdi-edit"></i>Edit</a>
|
|
|
|
<a href="{{ $book->getUrl() }}/sort" class="text-primary"><i class="zmdi zmdi-sort"></i>Sort</a>
|
|
|
|
@endif
|
|
|
|
@if($currentUser->can('book-delete'))
|
|
|
|
<a href="{{ $book->getUrl() }}/delete" class="text-neg"><i class="zmdi zmdi-delete"></i>Delete</a>
|
|
|
|
@endif
|
|
|
|
</div>
|
|
|
|
</div>
|
2015-07-15 17:55:49 -04:00
|
|
|
</div>
|
|
|
|
</div>
|
2015-07-23 16:55:46 -04:00
|
|
|
</div>
|
2015-07-15 17:55:49 -04:00
|
|
|
|
2015-08-16 13:59:23 -04:00
|
|
|
|
2015-09-01 10:35:11 -04:00
|
|
|
<div class="container" id="book-dashboard">
|
2015-08-30 12:53:30 -04:00
|
|
|
<div class="row">
|
|
|
|
<div class="col-md-7">
|
|
|
|
|
2015-08-16 13:59:23 -04:00
|
|
|
<h1>{{$book->name}}</h1>
|
2015-09-01 10:35:11 -04:00
|
|
|
<div class="book-content anim fadeIn" v-if="!searching">
|
|
|
|
<p class="text-muted">{{$book->description}}</p>
|
|
|
|
|
|
|
|
<div class="page-list">
|
|
|
|
<hr>
|
|
|
|
@if(count($book->children()) > 0)
|
|
|
|
@foreach($book->children() as $childElement)
|
|
|
|
<div class="book-child">
|
|
|
|
<h3>
|
|
|
|
<a href="{{ $childElement->getUrl() }}" class="{{ $childElement->getName() }}">
|
|
|
|
<i class="zmdi {{ $childElement->isA('chapter') ? 'zmdi-collection-bookmark chapter-toggle':'zmdi-file-text'}}"></i>{{ $childElement->name }}
|
|
|
|
</a>
|
|
|
|
</h3>
|
|
|
|
<p class="text-muted">
|
|
|
|
{{$childElement->getExcerpt()}}
|
|
|
|
</p>
|
|
|
|
|
|
|
|
@if($childElement->isA('chapter') && count($childElement->pages) > 0)
|
|
|
|
<div class="inset-list">
|
|
|
|
@foreach($childElement->pages as $page)
|
|
|
|
<h4><a href="{{$page->getUrl()}}"><i class="zmdi zmdi-file-text"></i>{{$page->name}}</a></h4>
|
|
|
|
@endforeach
|
|
|
|
</div>
|
|
|
|
@endif
|
|
|
|
</div>
|
|
|
|
<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-08-31 12:59:45 -04:00
|
|
|
<hr>
|
2015-09-01 10:35:11 -04:00
|
|
|
@endif
|
|
|
|
<p class="text-muted small">
|
|
|
|
Created {{$book->created_at->diffForHumans()}} @if($book->createdBy) by {{$book->createdBy->name}} @endif
|
|
|
|
<br>
|
|
|
|
Last Updated {{$book->updated_at->diffForHumans()}} @if($book->createdBy) by {{$book->updatedBy->name}} @endif
|
2015-08-31 12:59:45 -04:00
|
|
|
</p>
|
2015-09-01 10:35:11 -04:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="search-results" v-if="searching">
|
|
|
|
<h3 class="text-muted">Search Results <a v-if="searching" v-on="click: clearSearch" class="text-small"><i class="zmdi zmdi-close"></i>Clear Search</a></h3>
|
|
|
|
<div v-html="searchResults"></div>
|
2015-07-27 15:17:08 -04:00
|
|
|
</div>
|
2015-08-16 13:59:23 -04:00
|
|
|
|
2015-08-08 16:28:50 -04:00
|
|
|
|
2015-08-30 12:53:30 -04:00
|
|
|
</div>
|
2015-08-16 13:59:23 -04:00
|
|
|
|
2015-08-30 12:53:30 -04:00
|
|
|
<div class="col-md-4 col-md-offset-1">
|
2015-09-01 10:35:11 -04:00
|
|
|
<div class="margin-top large"></div>
|
|
|
|
{{--<h3>Search This Book</h3>--}}
|
|
|
|
<div class="search-box">
|
|
|
|
<form v-on="submit: searchBook, input: checkSearchForm" v-el="form" action="/search/book/{{ $book->id }}">
|
|
|
|
{!! csrf_field() !!}
|
|
|
|
<input v-model="searchTerm" type="text" name="term" placeholder="Search This Book">
|
|
|
|
<button type="submit"><i class="zmdi zmdi-search"></i></button>
|
|
|
|
<button v-if="searching" v-on="click: clearSearch" type="button primary"><i class="zmdi zmdi-close"></i></button>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
<div class="activity anim fadeIn">
|
|
|
|
<h3>Recent Activity</h3>
|
|
|
|
@include('partials/activity-list', ['activity' => Activity::entityActivity($book, 20, 0)])
|
|
|
|
</div>
|
2015-08-30 12:53:30 -04:00
|
|
|
</div>
|
2015-08-16 13:59:23 -04:00
|
|
|
</div>
|
2015-07-15 17:55:49 -04:00
|
|
|
</div>
|
|
|
|
|
2015-07-23 16:55:46 -04:00
|
|
|
|
2015-08-30 12:53:30 -04:00
|
|
|
|
2015-07-20 17:05:26 -04:00
|
|
|
<script>
|
|
|
|
$(function() {
|
|
|
|
|
2015-07-30 17:27:35 -04:00
|
|
|
$('.chapter-toggle').click(function(e) {
|
|
|
|
e.preventDefault();
|
|
|
|
$(this).closest('.book-child').find('.inset-list').slideToggle(180);
|
2015-07-20 17:05:26 -04:00
|
|
|
});
|
|
|
|
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
2015-09-01 10:35:11 -04:00
|
|
|
<script src="/js/book-sidebar.js"></script>
|
|
|
|
|
2015-07-12 15:01:42 -04:00
|
|
|
@stop
|