2018-08-27 09:18:09 -04:00
|
|
|
{{ csrf_field() }}
|
2019-02-02 06:41:41 -05:00
|
|
|
|
2018-08-27 09:18:09 -04:00
|
|
|
<div class="form-group title-input">
|
|
|
|
<label for="name">{{ trans('common.name') }}</label>
|
2021-05-26 10:25:23 -04:00
|
|
|
@include('form.text', ['name' => 'name', 'autofocus' => true])
|
2018-08-27 09:18:09 -04:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="form-group description-input">
|
|
|
|
<label for="description">{{ trans('common.description') }}</label>
|
2019-04-07 07:00:09 -04:00
|
|
|
@include('form.textarea', ['name' => 'description'])
|
2018-08-27 09:18:09 -04:00
|
|
|
</div>
|
|
|
|
|
2022-07-24 07:23:25 -04:00
|
|
|
<div component="shelf-sort" class="grid half gap-xl">
|
2019-04-07 04:57:48 -04:00
|
|
|
<div class="form-group">
|
2023-02-17 11:18:24 -05:00
|
|
|
<label for="books" id="shelf-sort-books-label">{{ trans('entities.shelves_books') }}</label>
|
2022-07-24 07:23:25 -04:00
|
|
|
<input refs="shelf-sort@input" type="hidden" name="books"
|
2019-10-05 07:55:01 -04:00
|
|
|
value="{{ isset($shelf) ? $shelf->visibleBooks->implode('id', ',') : '' }}">
|
2023-02-17 10:53:24 -05:00
|
|
|
<div class="scroll-box-header-item flex-container-row items-center py-xs">
|
|
|
|
<span class="px-m py-xs">{{ trans('entities.shelves_drag_books') }}</span>
|
|
|
|
<div class="dropdown-container ml-auto" component="dropdown">
|
|
|
|
<button refs="dropdown@toggle"
|
|
|
|
type="button"
|
|
|
|
title="{{ trans('common.more') }}"
|
|
|
|
class="icon-button px-xs py-xxs mx-xs text-bigger"
|
|
|
|
aria-haspopup="true"
|
|
|
|
aria-expanded="false">
|
|
|
|
@icon('more')
|
|
|
|
</button>
|
|
|
|
<div refs="dropdown@menu shelf-sort@sort-button-container" class="dropdown-menu" role="menu">
|
|
|
|
<button type="button" class="text-item" data-sort="name">{{ trans('entities.books_sort_name') }}</button>
|
|
|
|
<button type="button" class="text-item" data-sort="created">{{ trans('entities.books_sort_created') }}</button>
|
|
|
|
<button type="button" class="text-item" data-sort="updated">{{ trans('entities.books_sort_updated') }}</button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2023-02-17 11:18:24 -05:00
|
|
|
<ul refs="shelf-sort@shelf-book-list"
|
|
|
|
aria-labelledby="shelf-sort-books-label"
|
|
|
|
class="scroll-box">
|
2023-02-17 10:05:28 -05:00
|
|
|
@foreach (($shelf->visibleBooks ?? []) as $book)
|
|
|
|
@include('shelves.parts.shelf-sort-book-item', ['book' => $book])
|
|
|
|
@endforeach
|
|
|
|
</ul>
|
2019-04-07 04:57:48 -04:00
|
|
|
</div>
|
|
|
|
<div class="form-group">
|
2023-02-17 11:18:24 -05:00
|
|
|
<label for="books" id="shelf-sort-all-books-label">{{ trans('entities.shelves_add_books') }}</label>
|
2022-07-24 07:23:25 -04:00
|
|
|
<input type="text" refs="shelf-sort@book-search" class="scroll-box-search" placeholder="{{ trans('common.search') }}">
|
2023-02-17 11:18:24 -05:00
|
|
|
<ul refs="shelf-sort@all-book-list"
|
|
|
|
aria-labelledby="shelf-sort-all-books-label"
|
|
|
|
class="scroll-box">
|
2019-04-07 04:57:48 -04:00
|
|
|
@foreach ($books as $book)
|
2023-02-17 10:05:28 -05:00
|
|
|
@include('shelves.parts.shelf-sort-book-item', ['book' => $book])
|
2019-04-07 04:57:48 -04:00
|
|
|
@endforeach
|
2023-02-17 10:05:28 -05:00
|
|
|
</ul>
|
2018-08-27 09:18:09 -04:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
2022-11-15 11:04:46 -05:00
|
|
|
<div class="form-group collapsible" component="collapsible" id="logo-control">
|
2023-01-28 11:06:11 -05:00
|
|
|
<button refs="collapsible@trigger" type="button" class="collapse-title text-link" aria-expanded="false">
|
2019-08-25 10:44:51 -04:00
|
|
|
<label>{{ trans('common.cover_image') }}</label>
|
|
|
|
</button>
|
2022-11-15 11:04:46 -05:00
|
|
|
<div refs="collapsible@content" class="collapse-content">
|
2018-08-27 09:18:09 -04:00
|
|
|
<p class="small">{{ trans('common.cover_image_description') }}</p>
|
|
|
|
|
2021-08-22 08:15:58 -04:00
|
|
|
@include('form.image-picker', [
|
2019-08-04 09:26:39 -04:00
|
|
|
'defaultImage' => url('/book_default_cover.png'),
|
|
|
|
'currentImage' => (isset($shelf) && $shelf->cover) ? $shelf->getBookCover() : url('/book_default_cover.png') ,
|
2019-05-04 10:48:15 -04:00
|
|
|
'name' => 'image',
|
2018-08-27 09:18:09 -04:00
|
|
|
'imageClass' => 'cover'
|
|
|
|
])
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2022-11-15 11:04:46 -05:00
|
|
|
<div class="form-group collapsible" component="collapsible" id="tags-control">
|
2023-01-28 11:06:11 -05:00
|
|
|
<button refs="collapsible@trigger" type="button" class="collapse-title text-link" aria-expanded="false">
|
2018-08-27 09:18:09 -04:00
|
|
|
<label for="tag-manager">{{ trans('entities.shelf_tags') }}</label>
|
2019-08-25 10:44:51 -04:00
|
|
|
</button>
|
2022-11-15 11:04:46 -05:00
|
|
|
<div refs="collapsible@content" class="collapse-content">
|
2021-08-22 08:15:58 -04:00
|
|
|
@include('entities.tag-manager', ['entity' => $shelf ?? null])
|
2018-08-27 09:18:09 -04:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="form-group text-right">
|
2019-08-04 09:26:39 -04:00
|
|
|
<a href="{{ isset($shelf) ? $shelf->getUrl() : url('/shelves') }}" class="button outline">{{ trans('common.cancel') }}</a>
|
2019-08-25 07:40:04 -04:00
|
|
|
<button type="submit" class="button">{{ trans('entities.shelves_save') }}</button>
|
2018-08-27 09:18:09 -04:00
|
|
|
</div>
|