Files
mtdb_movie/common/Comments/PaginateModelComments.php
maher 703f50a09d
Some checks failed
Build / run (push) Has been cancelled
first commit
2025-10-29 11:42:25 +01:00

44 lines
1.1 KiB
PHP
Executable File

<?php
namespace Common\Comments;
use Illuminate\Database\Eloquent\Collection;
use Illuminate\Database\Eloquent\Model;
class PaginateModelComments
{
public function execute(Model $commentable): array
{
$pagination = $commentable
->comments()
->rootOnly()
->with([
'user' => fn($builder) => $builder->compact(),
])
->paginate(request('perPage') ?? 25);
$comments = app(LoadChildComments::class)->execute(
$commentable,
Collection::make($pagination->items()),
);
$comments->load([
'votes' => fn($builder) => $builder->withCurrentUserVotes(),
]);
$comments->transform(function (Comment $comment) {
if ($comment->deleted) {
$comment->content = null;
}
$comment->current_vote = $comment->votes->first()?->vote_type;
$comment->unsetRelation('votes');
return $comment;
});
$pagination = $pagination->toArray();
$pagination['data'] = $comments;
return $pagination;
}
}