2021-08-22 13:15:58 +01:00
|
|
|
@extends('layouts.tri')
|
2015-07-12 20:01:42 +01:00
|
|
|
|
2019-01-13 15:54:55 +00:00
|
|
|
@section('container-attrs')
|
2020-06-28 21:15:00 +01:00
|
|
|
component="entity-search"
|
|
|
|
option:entity-search:entity-id="{{ $book->id }}"
|
|
|
|
option:entity-search:entity-type="book"
|
2019-01-13 15:54:55 +00:00
|
|
|
@stop
|
|
|
|
|
2020-12-21 23:20:13 -06:00
|
|
|
@push('social-meta')
|
2021-02-09 00:16:24 -06:00
|
|
|
<meta property="og:description" content="{{ Str::limit($book->description, 100, '...') }}">
|
2021-06-23 20:42:48 +01:00
|
|
|
@if($book->cover)
|
|
|
|
<meta property="og:image" content="{{ $book->getBookCover() }}">
|
|
|
|
@endif
|
2020-12-21 23:20:13 -06:00
|
|
|
@endpush
|
|
|
|
|
2022-07-23 18:29:04 +01:00
|
|
|
@include('entities.body-tag-classes', ['entity' => $book])
|
|
|
|
|
2019-01-13 15:54:55 +00:00
|
|
|
@section('body')
|
|
|
|
|
2023-10-03 14:59:35 +01:00
|
|
|
<div class="mb-s print-hidden">
|
2021-08-22 13:15:58 +01:00
|
|
|
@include('entities.breadcrumbs', ['crumbs' => [
|
2019-02-24 15:57:35 +00:00
|
|
|
$book,
|
|
|
|
]])
|
|
|
|
</div>
|
|
|
|
|
2019-08-25 15:44:51 +01:00
|
|
|
<main class="content-wrap card">
|
2020-06-28 21:15:00 +01:00
|
|
|
<h1 class="break-text">{{$book->name}}</h1>
|
|
|
|
<div refs="entity-search@contentView" class="book-content">
|
2023-12-20 17:40:58 +00:00
|
|
|
<div class="text-muted break-text">{!! $book->descriptionHtml() !!}</div>
|
2019-01-13 15:54:55 +00:00
|
|
|
@if(count($bookChildren) > 0)
|
2020-06-28 21:15:00 +01:00
|
|
|
<div class="entity-list book-contents">
|
2019-01-13 15:54:55 +00:00
|
|
|
@foreach($bookChildren as $childElement)
|
|
|
|
@if($childElement->isA('chapter'))
|
2021-08-22 13:15:58 +01:00
|
|
|
@include('chapters.parts.list-item', ['chapter' => $childElement])
|
2019-01-13 15:54:55 +00:00
|
|
|
@else
|
2021-08-22 13:15:58 +01:00
|
|
|
@include('pages.parts.list-item', ['page' => $childElement])
|
2019-01-13 15:54:55 +00:00
|
|
|
@endif
|
|
|
|
@endforeach
|
|
|
|
</div>
|
|
|
|
@else
|
2020-06-28 21:15:00 +01:00
|
|
|
<div class="mt-xl">
|
2019-04-13 11:24:41 +01:00
|
|
|
<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 15:54:55 +00:00
|
|
|
</div>
|
|
|
|
@endif
|
|
|
|
</div>
|
|
|
|
|
2021-08-22 13:15:58 +01:00
|
|
|
@include('entities.search-results')
|
2019-08-25 15:44:51 +01:00
|
|
|
</main>
|
2019-01-13 15:54:55 +00:00
|
|
|
|
|
|
|
@stop
|
|
|
|
|
|
|
|
@section('right')
|
2023-07-31 15:23:28 +01:00
|
|
|
<div class="mb-xl">
|
2019-03-30 15:15:01 +00:00
|
|
|
<h5>{{ trans('common.details') }}</h5>
|
2022-05-13 18:03:43 +01:00
|
|
|
<div class="blended-links">
|
2023-08-17 14:59:28 +01:00
|
|
|
@include('entities.meta', ['entity' => $book, 'watchOptions' => $watchOptions])
|
2022-10-10 16:22:51 +01:00
|
|
|
@if($book->hasPermissions())
|
2019-03-30 15:15:01 +00:00
|
|
|
<div class="active-restriction">
|
|
|
|
@if(userCan('restrictions-manage', $book))
|
2022-05-13 18:03:43 +01:00
|
|
|
<a href="{{ $book->getUrl('/permissions') }}" class="entity-meta-item">
|
|
|
|
@icon('lock')
|
|
|
|
<div>{{ trans('entities.books_permissions_active') }}</div>
|
|
|
|
</a>
|
2019-03-30 15:15:01 +00:00
|
|
|
@else
|
2022-05-13 18:03:43 +01:00
|
|
|
<div class="entity-meta-item">
|
|
|
|
@icon('lock')
|
|
|
|
<div>{{ trans('entities.books_permissions_active') }}</div>
|
|
|
|
</div>
|
2019-03-30 15:15:01 +00:00
|
|
|
@endif
|
|
|
|
</div>
|
|
|
|
@endif
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2019-01-13 15:54:55 +00:00
|
|
|
<div class="actions mb-xl">
|
|
|
|
<h5>{{ trans('common.actions') }}</h5>
|
2023-01-28 16:06:11 +00:00
|
|
|
<div class="icon-list text-link">
|
2019-01-13 15:54:55 +00:00
|
|
|
|
2017-08-20 13:57:25 +01:00
|
|
|
@if(userCan('page-create', $book))
|
2022-11-05 13:39:17 +00:00
|
|
|
<a href="{{ $book->getUrl('/create-page') }}" data-shortcut="new" class="icon-list-item">
|
2019-02-16 15:05:18 +00:00
|
|
|
<span>@icon('add')</span>
|
2019-01-13 15:54:55 +00:00
|
|
|
<span>{{ trans('entities.pages_new') }}</span>
|
|
|
|
</a>
|
2017-08-20 13:57:25 +01:00
|
|
|
@endif
|
|
|
|
@if(userCan('chapter-create', $book))
|
2022-11-05 13:39:17 +00:00
|
|
|
<a href="{{ $book->getUrl('/create-chapter') }}" data-shortcut="new" class="icon-list-item">
|
2019-02-16 15:05:18 +00:00
|
|
|
<span>@icon('add')</span>
|
2019-01-13 15:54:55 +00:00
|
|
|
<span>{{ trans('entities.chapters_new') }}</span>
|
|
|
|
</a>
|
2017-08-20 13:57:25 +01:00
|
|
|
@endif
|
2019-04-13 12:46:15 +01:00
|
|
|
|
|
|
|
<hr class="primary-background">
|
|
|
|
|
2019-01-13 15:54:55 +00:00
|
|
|
@if(userCan('book-update', $book))
|
2022-11-04 15:20:19 +00:00
|
|
|
<a href="{{ $book->getUrl('/edit') }}" data-shortcut="edit" class="icon-list-item">
|
2019-02-16 15:05:18 +00:00
|
|
|
<span>@icon('edit')</span>
|
2019-01-13 15:54:55 +00:00
|
|
|
<span>{{ trans('common.edit') }}</span>
|
|
|
|
</a>
|
2022-11-05 13:39:17 +00:00
|
|
|
<a href="{{ $book->getUrl('/sort') }}" data-shortcut="sort" class="icon-list-item">
|
2019-02-16 15:05:18 +00:00
|
|
|
<span>@icon('sort')</span>
|
2019-01-13 15:54:55 +00:00
|
|
|
<span>{{ trans('common.sort') }}</span>
|
|
|
|
</a>
|
|
|
|
@endif
|
2021-12-19 19:20:31 +00:00
|
|
|
@if(userCan('book-create-all'))
|
2022-11-05 13:39:17 +00:00
|
|
|
<a href="{{ $book->getUrl('/copy') }}" data-shortcut="copy" class="icon-list-item">
|
2021-12-19 19:20:31 +00:00
|
|
|
<span>@icon('copy')</span>
|
|
|
|
<span>{{ trans('common.copy') }}</span>
|
|
|
|
</a>
|
|
|
|
@endif
|
2019-01-13 15:54:55 +00:00
|
|
|
@if(userCan('restrictions-manage', $book))
|
2022-11-05 13:39:17 +00:00
|
|
|
<a href="{{ $book->getUrl('/permissions') }}" data-shortcut="permissions" class="icon-list-item">
|
2019-02-16 15:05:18 +00:00
|
|
|
<span>@icon('lock')</span>
|
2019-01-13 15:54:55 +00:00
|
|
|
<span>{{ trans('entities.permissions') }}</span>
|
|
|
|
</a>
|
|
|
|
@endif
|
|
|
|
@if(userCan('book-delete', $book))
|
2022-11-05 13:39:17 +00:00
|
|
|
<a href="{{ $book->getUrl('/delete') }}" data-shortcut="delete" class="icon-list-item">
|
2019-02-16 15:05:18 +00:00
|
|
|
<span>@icon('delete')</span>
|
2019-01-13 15:54:55 +00:00
|
|
|
<span>{{ trans('common.delete') }}</span>
|
|
|
|
</a>
|
2017-08-20 13:57:25 +01:00
|
|
|
@endif
|
2019-04-13 12:46:15 +01:00
|
|
|
|
|
|
|
<hr class="primary-background">
|
|
|
|
|
2023-08-09 14:53:31 +01:00
|
|
|
@if($watchOptions->canWatch() && !$watchOptions->isWatching())
|
2023-08-02 13:14:00 +01:00
|
|
|
@include('entities.watch-action', ['entity' => $book])
|
|
|
|
@endif
|
2023-09-16 13:18:35 +01:00
|
|
|
@if(!user()->isGuest())
|
2023-08-04 16:51:29 +01:00
|
|
|
@include('entities.favourite-action', ['entity' => $book])
|
|
|
|
@endif
|
2021-08-28 21:48:17 +01:00
|
|
|
@if(userCan('content-export'))
|
|
|
|
@include('entities.export-menu', ['entity' => $book])
|
|
|
|
@endif
|
2015-07-15 22:55:49 +01:00
|
|
|
</div>
|
2015-07-23 21:55:46 +01:00
|
|
|
</div>
|
2019-01-13 15:54:55 +00:00
|
|
|
|
2017-08-20 13:57:25 +01:00
|
|
|
@stop
|
2015-07-15 22:55:49 +01:00
|
|
|
|
2019-01-13 15:54:55 +00:00
|
|
|
@section('left')
|
2015-08-16 18:59:23 +01:00
|
|
|
|
2021-08-22 13:15:58 +01:00
|
|
|
@include('entities.search-form', ['label' => trans('entities.books_search_this')])
|
2019-04-13 11:09:17 +01:00
|
|
|
|
2018-04-30 14:35:15 +01:00
|
|
|
@if($book->tags->count() > 0)
|
2019-01-13 15:54:55 +00:00
|
|
|
<div class="mb-xl">
|
2021-08-22 13:15:58 +01:00
|
|
|
@include('entities.tag-list', ['entity' => $book])
|
2019-01-13 15:54:55 +00:00
|
|
|
</div>
|
2018-04-30 14:35:15 +01:00
|
|
|
@endif
|
|
|
|
|
2020-04-09 17:29:22 +01:00
|
|
|
@if(count($bookParentShelves) > 0)
|
|
|
|
<div class="actions mb-xl">
|
2022-09-01 14:55:35 +01:00
|
|
|
<h5>{{ trans('entities.shelves') }}</h5>
|
2021-08-22 13:15:58 +01:00
|
|
|
@include('entities.list', ['entities' => $bookParentShelves, 'style' => 'compact'])
|
2020-04-09 17:29:22 +01:00
|
|
|
</div>
|
|
|
|
@endif
|
|
|
|
|
2018-03-30 14:09:51 +01:00
|
|
|
@if(count($activity) > 0)
|
2023-09-11 18:50:39 +01:00
|
|
|
<div id="recent-activity" class="mb-xl">
|
2019-01-13 15:54:55 +00:00
|
|
|
<h5>{{ trans('entities.recent_activity') }}</h5>
|
2021-08-22 13:15:58 +01:00
|
|
|
@include('common.activity-list', ['activity' => $activity])
|
2018-03-30 14:09:51 +01:00
|
|
|
</div>
|
|
|
|
@endif
|
2017-08-20 13:57:25 +01:00
|
|
|
@stop
|
2015-08-16 18:59:23 +01:00
|
|
|
|