X-Git-Url: http://source.bookstackapp.com/bookstack/blobdiff_plain/3286f29a61833327b5701b28db626d0a480b07f9..refs/pull/3406/head:/resources/views/books/show.blade.php diff --git a/resources/views/books/show.blade.php b/resources/views/books/show.blade.php index ba07ade0a..5263bc810 100644 --- a/resources/views/books/show.blade.php +++ b/resources/views/books/show.blade.php @@ -1,108 +1,142 @@ -@extends('tri-layout') +@extends('layouts.tri') @section('container-attrs') - id="entity-dashboard" - entity-id="{{ $book->id }}" - entity-type="book" + component="entity-search" + option:entity-search:entity-id="{{ $book->id }}" + option:entity-search:entity-type="book" @stop +@push('social-meta') + + @if($book->cover) + + @endif +@endpush + @section('body') -
-

{{$book->name}}

-
-

{!! nl2br(e($book->description)) !!}

+
+ @include('entities.breadcrumbs', ['crumbs' => [ + $book, + ]]) +
+ +
+

{{$book->name}}

+
+

{!! nl2br(e($book->description)) !!}

@if(count($bookChildren) > 0) -
+
@foreach($bookChildren as $childElement) @if($childElement->isA('chapter')) - @include('chapters.list-item', ['chapter' => $childElement]) + @include('chapters.parts.list-item', ['chapter' => $childElement]) @else - @include('pages.list-item', ['page' => $childElement]) + @include('pages.parts.list-item', ['page' => $childElement]) @endif @endforeach
@else -
- {{--TODO--}} -

{{ trans('entities.books_empty_contents') }}

- @if(userCan('page-create', $book)) - @icon('page'){{ trans('entities.books_empty_create_page') }} - @endif - @if(userCan('page-create', $book) && userCan('chapter-create', $book)) -   -{{ trans('entities.books_empty_or') }}-    - @endif - @if(userCan('chapter-create', $book)) - @icon('chapter'){{ trans('entities.books_empty_add_chapter') }} - @endif +
+
+

{{ trans('entities.books_empty_contents') }}

+ +
+ @if(userCan('page-create', $book)) + + @icon('page') + {{ trans('entities.books_empty_create_page') }} + + @endif + @if(userCan('chapter-create', $book)) + + @icon('chapter') + {{ trans('entities.books_empty_add_chapter') }} + + @endif +
+
@endif
-
- {{--TODO--}} -

{{ trans('entities.search_results') }} @icon('close'){{ trans('entities.search_clear') }}

-
- @include('partials/loading-icon') -
-
-
-
+ @include('entities.search-results') +
@stop - @section('right') +
+
{{ trans('common.details') }}
+ +
{{ trans('common.actions') }}
- @if(userCan('page-create', $book)) - @icon('add') + @icon('add') {{ trans('entities.pages_new') }} @endif @if(userCan('chapter-create', $book)) - @icon('add') + @icon('add') {{ trans('entities.chapters_new') }} @endif + +
+ @if(userCan('book-update', $book)) - @icon('edit') + @icon('edit') {{ trans('common.edit') }} - @icon('sort') + @icon('sort') {{ trans('common.sort') }} @endif + @if(userCan('book-create-all')) + + @icon('copy') + {{ trans('common.copy') }} + + @endif @if(userCan('restrictions-manage', $book)) - @icon('lock') + @icon('lock') {{ trans('entities.permissions') }} @endif @if(userCan('book-delete', $book)) - @icon('delete') + @icon('delete') {{ trans('common.delete') }} @endif + +
+ + @if(signedInUser()) + @include('entities.favourite-action', ['entity' => $book]) + @endif + @if(userCan('content-export')) + @include('entities.export-menu', ['entity' => $book]) + @endif
@@ -110,40 +144,25 @@ @section('left') + @include('entities.search-form', ['label' => trans('entities.books_search_this')]) + @if($book->tags->count() > 0)
- @include('components.tag-list', ['entity' => $book]) + @include('entities.tag-list', ['entity' => $book])
@endif -
- -
- -
-
{{ trans('common.details') }}
- + @endif @if(count($activity) > 0)
{{ trans('entities.recent_activity') }}
- @include('partials.activity-list', ['activity' => $activity]) + @include('common.activity-list', ['activity' => $activity])
@endif @stop