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