2025-05-01 00:42:09 +08:00
|
|
|
<section components="page-comments tabs"
|
2020-07-29 01:19:18 +08:00
|
|
|
option:page-comments:page-id="{{ $page->id }}"
|
|
|
|
option:page-comments:created-text="{{ trans('entities.comment_created_success') }}"
|
2025-05-01 00:42:09 +08:00
|
|
|
option:page-comments:count-text="{{ trans('entities.comment_thread_count') }}"
|
|
|
|
option:page-comments:archived-count-text="{{ trans('entities.comment_archived_count') }}"
|
2024-01-30 22:27:09 +08:00
|
|
|
option:page-comments:wysiwyg-language="{{ $locale->htmlLang() }}"
|
|
|
|
option:page-comments:wysiwyg-text-direction="{{ $locale->htmlDirection() }}"
|
2025-05-01 00:42:09 +08:00
|
|
|
class="comments-list tab-container"
|
2020-07-29 01:19:18 +08:00
|
|
|
aria-label="{{ trans('entities.comments') }}">
|
2019-07-06 21:52:25 +08:00
|
|
|
|
2025-05-01 00:42:09 +08:00
|
|
|
<div refs="page-comments@comment-count-bar" class="flex-container-row items-center">
|
|
|
|
<div role="tablist" class="flex">
|
|
|
|
<button type="button"
|
|
|
|
role="tab"
|
|
|
|
id="comment-tab-active"
|
|
|
|
aria-controls="comment-tab-panel-active"
|
|
|
|
refs="page-comments@active-tab"
|
|
|
|
aria-selected="true">{{ trans_choice('entities.comment_thread_count', $commentTree->activeThreadCount()) }}</button>
|
|
|
|
<button type="button"
|
|
|
|
role="tab"
|
|
|
|
id="comment-tab-archived"
|
|
|
|
aria-controls="comment-tab-panel-archived"
|
|
|
|
refs="page-comments@archived-tab"
|
|
|
|
aria-selected="false">{{ trans_choice('entities.comment_archived_count', count($commentTree->getArchived())) }}</button>
|
|
|
|
</div>
|
2023-06-07 20:24:49 +08:00
|
|
|
@if ($commentTree->empty() && userCan('comment-create-all'))
|
2025-05-01 00:42:09 +08:00
|
|
|
<div class="ml-m" refs="page-comments@add-button-container">
|
2023-06-08 00:47:37 +08:00
|
|
|
<button type="button"
|
|
|
|
refs="page-comments@add-comment-button"
|
2025-05-01 00:42:09 +08:00
|
|
|
class="button outline mb-m">{{ trans('entities.comment_add') }}</button>
|
2019-04-13 19:58:57 +08:00
|
|
|
</div>
|
|
|
|
@endif
|
|
|
|
</div>
|
2017-09-03 23:37:51 +08:00
|
|
|
|
2025-05-01 00:42:09 +08:00
|
|
|
<div id="comment-tab-panel-active"
|
|
|
|
tabindex="0"
|
|
|
|
role="tabpanel"
|
|
|
|
aria-labelledby="comment-tab-active"
|
2025-05-02 00:22:12 +08:00
|
|
|
class="comment-container no-outline">
|
2025-05-01 00:42:09 +08:00
|
|
|
<div refs="page-comments@comment-container">
|
|
|
|
@foreach($commentTree->getActive() as $branch)
|
|
|
|
@include('comments.comment-branch', ['branch' => $branch, 'readOnly' => false])
|
|
|
|
@endforeach
|
|
|
|
</div>
|
2017-09-03 23:37:51 +08:00
|
|
|
|
2025-05-01 00:42:09 +08:00
|
|
|
<p class="text-center text-muted italic empty-state">{{ trans('entities.comment_none') }}</p>
|
2025-04-29 03:09:18 +08:00
|
|
|
|
2025-05-01 00:42:09 +08:00
|
|
|
@if(userCan('comment-create-all'))
|
|
|
|
@include('comments.create')
|
|
|
|
@if (!$commentTree->empty())
|
|
|
|
<div refs="page-comments@addButtonContainer" class="flex-container-row">
|
|
|
|
<button type="button"
|
|
|
|
refs="page-comments@add-comment-button"
|
|
|
|
class="button outline ml-auto">{{ trans('entities.comment_add') }}</button>
|
|
|
|
</div>
|
|
|
|
@endif
|
2019-08-25 18:02:58 +08:00
|
|
|
@endif
|
2025-05-01 00:42:09 +08:00
|
|
|
</div>
|
2019-04-13 19:58:57 +08:00
|
|
|
|
2025-05-01 00:42:09 +08:00
|
|
|
<div refs="page-comments@archive-container"
|
|
|
|
id="comment-tab-panel-archived"
|
|
|
|
tabindex="0"
|
|
|
|
role="tabpanel"
|
|
|
|
aria-labelledby="comment-tab-archived"
|
|
|
|
hidden="hidden"
|
2025-05-02 00:22:12 +08:00
|
|
|
class="comment-container no-outline">
|
2025-04-29 03:09:18 +08:00
|
|
|
@foreach($commentTree->getArchived() as $branch)
|
|
|
|
@include('comments.comment-branch', ['branch' => $branch, 'readOnly' => false])
|
|
|
|
@endforeach
|
2025-05-01 00:42:09 +08:00
|
|
|
<p class="text-center text-muted italic empty-state">{{ trans('entities.comment_none') }}</p>
|
2025-04-29 03:09:18 +08:00
|
|
|
</div>
|
|
|
|
|
2024-01-30 22:27:09 +08:00
|
|
|
@if(userCan('comment-create-all') || $commentTree->canUpdateAny())
|
2024-10-01 17:37:31 +08:00
|
|
|
@push('body-end')
|
|
|
|
<script src="{{ versioned_asset('libs/tinymce/tinymce.min.js') }}" nonce="{{ $cspNonce }}" defer></script>
|
2024-01-30 22:27:09 +08:00
|
|
|
@include('form.editor-translations')
|
2024-01-31 22:22:04 +08:00
|
|
|
@include('entities.selector-popup')
|
|
|
|
@endpush
|
2024-01-30 22:27:09 +08:00
|
|
|
@endif
|
|
|
|
|
2019-08-25 22:44:51 +08:00
|
|
|
</section>
|