mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
31f5786e01
* Started mass-refactoring of the current entity repos * Rewrote book tree logic - Now does two simple queries instead of one really complex one. - Extracted logic into its own class. - Remove model-level akward union field listing. - Logic now more readable than being large separate query and compilation functions. * Extracted and split book sort logic * Finished up Book controller/repo organisation * Refactored bookshelves controllers and repo parts * Fixed issues found via phpunit * Refactored Chapter controller * Updated Chapter export controller * Started Page controller/repo refactor * Refactored another chunk of PageController * Completed initial pagecontroller refactor pass * Fixed tests and continued reduction of old repos * Removed old page remove and further reduced entity repo * Removed old entity repo, split out page controller * Ran phpcbf and split out some page content methods * Tidied up some EntityProvider elements * Fixed issued caused by viewservice change
120 lines
4.3 KiB
PHP
120 lines
4.3 KiB
PHP
@extends('tri-layout')
|
|
|
|
@section('body')
|
|
|
|
<div class="mb-s">
|
|
@include('partials.breadcrumbs', ['crumbs' => [
|
|
$shelf,
|
|
]])
|
|
</div>
|
|
|
|
<main class="card content-wrap">
|
|
<h1 class="break-text">{{$shelf->name}}</h1>
|
|
<div class="book-content">
|
|
<p class="text-muted">{!! nl2br(e($shelf->description)) !!}</p>
|
|
@if(count($shelf->visibleBooks) > 0)
|
|
<div class="entity-list">
|
|
@foreach($shelf->visibleBooks as $book)
|
|
@include('books.list-item', ['book' => $book])
|
|
@endforeach
|
|
</div>
|
|
@else
|
|
<div class="mt-xl">
|
|
<hr>
|
|
<p class="text-muted italic mt-xl mb-m">{{ trans('entities.shelves_empty_contents') }}</p>
|
|
<div class="icon-list inline block">
|
|
@if(userCan('book-create-all') && userCan('bookshelf-update', $shelf))
|
|
<a href="{{ $shelf->getUrl('/create-book') }}" class="icon-list-item text-book">
|
|
<span class="icon">@icon('add')</span>
|
|
<span>{{ trans('entities.books_create') }}</span>
|
|
</a>
|
|
@endif
|
|
@if(userCan('bookshelf-update', $shelf))
|
|
<a href="{{ $shelf->getUrl('/edit') }}" class="icon-list-item text-bookshelf">
|
|
<span class="icon">@icon('edit')</span>
|
|
<span>{{ trans('entities.shelves_edit_and_assign') }}</span>
|
|
</a>
|
|
@endif
|
|
</div>
|
|
</div>
|
|
@endif
|
|
</div>
|
|
</main>
|
|
|
|
@stop
|
|
|
|
@section('left')
|
|
|
|
@if($shelf->tags->count() > 0)
|
|
<div id="tags" class="mb-xl">
|
|
@include('components.tag-list', ['entity' => $shelf])
|
|
</div>
|
|
@endif
|
|
|
|
<div id="details" class="mb-xl">
|
|
<h5>{{ trans('common.details') }}</h5>
|
|
<div class="text-small text-muted blended-links">
|
|
@include('partials.entity-meta', ['entity' => $shelf])
|
|
@if($shelf->restricted)
|
|
<div class="active-restriction">
|
|
@if(userCan('restrictions-manage', $shelf))
|
|
<a href="{{ $shelf->getUrl('/permissions') }}">@icon('lock'){{ trans('entities.shelves_permissions_active') }}</a>
|
|
@else
|
|
@icon('lock'){{ trans('entities.shelves_permissions_active') }}
|
|
@endif
|
|
</div>
|
|
@endif
|
|
</div>
|
|
</div>
|
|
|
|
@if(count($activity) > 0)
|
|
<div class="mb-xl">
|
|
<h5>{{ trans('entities.recent_activity') }}</h5>
|
|
@include('partials.activity-list', ['activity' => $activity])
|
|
</div>
|
|
@endif
|
|
@stop
|
|
|
|
@section('right')
|
|
<div class="actions mb-xl">
|
|
<h5>{{ trans('common.actions') }}</h5>
|
|
<div class="icon-list text-primary">
|
|
|
|
@if(userCan('book-create-all') && userCan('bookshelf-update', $shelf))
|
|
<a href="{{ $shelf->getUrl('/create-book') }}" class="icon-list-item">
|
|
<span class="icon">@icon('add')</span>
|
|
<span>{{ trans('entities.books_new_action') }}</span>
|
|
</a>
|
|
@endif
|
|
|
|
<hr class="primary-background">
|
|
|
|
@if(userCan('bookshelf-update', $shelf))
|
|
<a href="{{ $shelf->getUrl('/edit') }}" class="icon-list-item">
|
|
<span>@icon('edit')</span>
|
|
<span>{{ trans('common.edit') }}</span>
|
|
</a>
|
|
@endif
|
|
|
|
@if(userCan('restrictions-manage', $shelf))
|
|
<a href="{{ $shelf->getUrl('/permissions') }}" class="icon-list-item">
|
|
<span>@icon('lock')</span>
|
|
<span>{{ trans('entities.permissions') }}</span>
|
|
</a>
|
|
@endif
|
|
|
|
@if(userCan('bookshelf-delete', $shelf))
|
|
<a href="{{ $shelf->getUrl('/delete') }}" class="icon-list-item">
|
|
<span>@icon('delete')</span>
|
|
<span>{{ trans('common.delete') }}</span>
|
|
</a>
|
|
@endif
|
|
|
|
</div>
|
|
</div>
|
|
@stop
|
|
|
|
|
|
|
|
|