2017-08-20 08:57:25 -04:00
|
|
|
@extends('sidebar-layout')
|
2015-07-12 15:01:42 -04:00
|
|
|
|
2017-08-20 08:57:25 -04:00
|
|
|
@section('toolbar')
|
|
|
|
<div class="col-sm-6 col-xs-1 faded">
|
|
|
|
@include('books._breadcrumbs', ['book' => $book])
|
|
|
|
</div>
|
|
|
|
<div class="col-sm-6 col-xs-11">
|
|
|
|
<div class="action-buttons faded">
|
|
|
|
<span dropdown class="dropdown-container">
|
2018-02-17 14:49:00 -05:00
|
|
|
<div dropdown-toggle class="text-button text-primary">@icon('export'){{ trans('entities.export') }}</div>
|
2017-08-20 08:57:25 -04:00
|
|
|
<ul class="wide">
|
|
|
|
<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>
|
|
|
|
</span>
|
|
|
|
@if(userCan('page-create', $book))
|
2018-03-25 06:34:42 -04:00
|
|
|
<a href="{{ $book->getUrl('/create-page') }}" class="text-pos text-button">@icon('add'){{ trans('entities.pages_new') }}</a>
|
2017-08-20 08:57:25 -04:00
|
|
|
@endif
|
|
|
|
@if(userCan('chapter-create', $book))
|
2018-03-25 06:34:42 -04:00
|
|
|
<a href="{{ $book->getUrl('/create-chapter') }}" class="text-pos text-button">@icon('add'){{ trans('entities.chapters_new') }}</a>
|
2017-08-20 08:57:25 -04:00
|
|
|
@endif
|
|
|
|
@if(userCan('book-update', $book) || userCan('restrictions-manage', $book) || userCan('book-delete', $book))
|
|
|
|
<div dropdown class="dropdown-container">
|
2018-02-17 14:49:00 -05:00
|
|
|
<a dropdown-toggle class="text-primary text-button">@icon('more'){{ trans('common.more') }}</a>
|
2017-08-20 08:57:25 -04:00
|
|
|
<ul>
|
2016-02-27 14:24:42 -05:00
|
|
|
@if(userCan('book-update', $book))
|
2018-02-17 08:30:52 -05:00
|
|
|
<li><a href="{{$book->getEditUrl()}}" class="text-primary">@icon('edit'){{ trans('common.edit') }}</a></li>
|
2018-02-17 14:49:00 -05:00
|
|
|
<li><a href="{{ $book->getUrl('/sort') }}" class="text-primary">@icon('sort'){{ trans('common.sort') }}</a></li>
|
2015-08-30 12:53:30 -04:00
|
|
|
@endif
|
2017-08-20 08:57:25 -04:00
|
|
|
@if(userCan('restrictions-manage', $book))
|
2018-02-17 14:49:00 -05:00
|
|
|
<li><a href="{{ $book->getUrl('/permissions') }}" class="text-primary">@icon('lock'){{ trans('entities.permissions') }}</a></li>
|
2015-08-30 12:53:30 -04:00
|
|
|
@endif
|
2017-08-20 08:57:25 -04:00
|
|
|
@if(userCan('book-delete', $book))
|
2018-02-17 08:30:52 -05:00
|
|
|
<li><a href="{{ $book->getUrl('/delete') }}" class="text-neg">@icon('delete'){{ trans('common.delete') }}</a></li>
|
2017-08-20 08:57:25 -04:00
|
|
|
@endif
|
|
|
|
</ul>
|
2015-08-30 12:53:30 -04:00
|
|
|
</div>
|
2017-08-20 08:57:25 -04:00
|
|
|
@endif
|
2015-07-15 17:55:49 -04:00
|
|
|
</div>
|
2015-07-23 16:55:46 -04:00
|
|
|
</div>
|
2017-08-20 08:57:25 -04:00
|
|
|
@stop
|
2015-07-15 17:55:49 -04:00
|
|
|
|
2017-08-20 08:57:25 -04:00
|
|
|
@section('sidebar')
|
2015-08-16 13:59:23 -04:00
|
|
|
|
2018-04-30 09:35:15 -04:00
|
|
|
@if($book->tags->count() > 0)
|
|
|
|
<section>
|
|
|
|
@include('components.tag-list', ['entity' => $book])
|
|
|
|
</section>
|
|
|
|
@endif
|
|
|
|
|
2017-08-20 08:57:25 -04:00
|
|
|
<div class="card">
|
|
|
|
<div class="body">
|
|
|
|
<form v-on:submit.prevent="searchBook" class="search-box">
|
|
|
|
<input v-model="searchTerm" v-on:change="checkSearchForm()" type="text" name="term" placeholder="{{ trans('entities.books_search_this') }}">
|
2018-02-17 08:30:52 -05:00
|
|
|
<button type="submit">@icon('search')</button>
|
2018-02-17 14:49:00 -05:00
|
|
|
<button v-if="searching" v-cloak class="text-neg" v-on:click="clearSearch()" type="button">@icon('close')</button>
|
2017-08-20 08:57:25 -04:00
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
2015-08-30 12:53:30 -04:00
|
|
|
|
2018-04-30 08:53:04 -04:00
|
|
|
<div class="card entity-details">
|
2018-04-14 11:23:16 -04:00
|
|
|
<h3>@icon('info') {{ trans('common.details') }}</h3>
|
2018-04-30 08:53:04 -04:00
|
|
|
<div class="body text-small text-muted blended-links">
|
2018-04-14 11:23:16 -04:00
|
|
|
@include('partials.entity-meta', ['entity' => $book])
|
2018-04-30 08:53:04 -04:00
|
|
|
@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
|
2018-04-14 11:23:16 -04:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2018-03-30 09:09:51 -04:00
|
|
|
@if(count($activity) > 0)
|
|
|
|
<div class="activity card">
|
|
|
|
<h3>@icon('time') {{ trans('entities.recent_activity') }}</h3>
|
|
|
|
@include('partials/activity-list', ['activity' => $activity])
|
|
|
|
</div>
|
|
|
|
@endif
|
2017-08-20 08:57:25 -04:00
|
|
|
@stop
|
2015-08-16 13:59:23 -04:00
|
|
|
|
2017-08-20 08:57:25 -04:00
|
|
|
@section('container-attrs')
|
|
|
|
id="entity-dashboard"
|
|
|
|
entity-id="{{ $book->id }}"
|
|
|
|
entity-type="book"
|
|
|
|
@stop
|
2015-08-08 16:28:50 -04:00
|
|
|
|
2017-08-20 08:57:25 -04:00
|
|
|
@section('body')
|
2015-08-16 13:59:23 -04:00
|
|
|
|
2018-03-18 08:23:48 -04:00
|
|
|
<div class="container small nopad">
|
|
|
|
<h1 class="break-text" v-pre>{{$book->name}}</h1>
|
2017-08-20 08:57:25 -04:00
|
|
|
<div class="book-content" v-show="!searching">
|
|
|
|
<p class="text-muted" v-pre>{!! nl2br(e($book->description)) !!}</p>
|
2017-08-26 08:24:55 -04:00
|
|
|
@if(count($bookChildren) > 0)
|
2017-08-20 08:57:25 -04:00
|
|
|
<div class="page-list" v-pre>
|
|
|
|
<hr>
|
2017-08-26 08:24:55 -04:00
|
|
|
@foreach($bookChildren as $childElement)
|
|
|
|
@if($childElement->isA('chapter'))
|
|
|
|
@include('chapters/list-item', ['chapter' => $childElement])
|
|
|
|
@else
|
|
|
|
@include('pages/list-item', ['page' => $childElement])
|
|
|
|
@endif
|
|
|
|
<hr>
|
|
|
|
@endforeach
|
|
|
|
</div>
|
|
|
|
@else
|
|
|
|
<div class="well">
|
|
|
|
<p class="text-muted italic">{{ trans('entities.books_empty_contents') }}</p>
|
2017-08-20 08:57:25 -04:00
|
|
|
@if(userCan('page-create', $book))
|
2018-03-25 06:34:42 -04:00
|
|
|
<a href="{{ $book->getUrl('/create-page') }}" class="button outline page">@icon('page'){{ trans('entities.books_empty_create_page') }}</a>
|
2017-08-20 08:57:25 -04:00
|
|
|
@endif
|
|
|
|
@if(userCan('page-create', $book) && userCan('chapter-create', $book))
|
2017-08-26 08:24:55 -04:00
|
|
|
<em class="text-muted">-{{ trans('entities.books_empty_or') }}-</em>
|
2017-08-20 08:57:25 -04:00
|
|
|
@endif
|
|
|
|
@if(userCan('chapter-create', $book))
|
2018-03-25 06:34:42 -04:00
|
|
|
<a href="{{ $book->getUrl('/create-chapter') }}" class="button outline chapter">@icon('chapter'){{ trans('entities.books_empty_add_chapter') }}</a>
|
2016-03-05 13:09:21 -05:00
|
|
|
@endif
|
2017-08-26 08:24:55 -04:00
|
|
|
</div>
|
|
|
|
@endif
|
|
|
|
|
2015-08-16 13:59:23 -04:00
|
|
|
</div>
|
2017-08-20 08:57:25 -04:00
|
|
|
<div class="search-results" v-cloak v-show="searching">
|
2018-02-17 14:49:00 -05:00
|
|
|
<h3 class="text-muted">{{ trans('entities.search_results') }} <a v-if="searching" v-on:click="clearSearch()" class="text-small">@icon('close'){{ trans('entities.search_clear') }}</a></h3>
|
2017-08-20 08:57:25 -04:00
|
|
|
<div v-if="!searchResults">
|
|
|
|
@include('partials/loading-icon')
|
|
|
|
</div>
|
|
|
|
<div v-html="searchResults"></div>
|
|
|
|
</div>
|
2015-07-15 17:55:49 -04:00
|
|
|
</div>
|
|
|
|
|
2017-07-14 11:05:46 -04:00
|
|
|
@stop
|