first commit
Some checks failed
Build / run (push) Has been cancelled

This commit is contained in:
maher
2025-10-29 11:42:25 +01:00
commit 703f50a09d
4595 changed files with 385164 additions and 0 deletions

View File

@@ -0,0 +1,43 @@
<?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;
}
}