【问题标题】:How to make pagination for reviews/comments section of a post in a livewire component如何在 livewire 组件中为帖子的评论/评论部分进行分页
【发布时间】:2021-03-29 22:55:58
【问题描述】:

以下代码将显示每个帖子的评论,并允许用户进行评论

我想要做的是在组件中循环出评论/cmets的地方分页

首先,这是我的 PostsController 显示函数以获取帖子

    public function show($id)
    {
        //defining out post object
        $post = Post::find($id);
        
        return view('posts.show')->with('post', $post);
    }

接下来,这是我的带有 livewire 组件的 show.blade 文件

  <!-- livewire posts component -->
  <livewire:cafe-review-section :post="$post" />
        

接下来,这是我的组件 - 该组件显示帖子的所有 cmets/评论,以及发布评论/评论的表单

<div>
    <!-- show comment form -->
    <form wire:submit.prevent="postReview" action=" " method="post">
        @csrf
        <textarea wire:model.defer="cafeReview" required name="cafeReview" id="" cols="30" rows="4"
                  placeholder="Type review here"
        ></textarea>

        @error('comment')
        <p>{{ $message }}</p>
        @enderror

        <button type="submit" class="btn btn-primary">
            <div  wire:loading wire:target="postReview" class="spinner-border" role="status">
                <span class="visually-hidden">Loading...</span>
            </div>
            <span>post comment</span>
        </button>
    </form>

    <!-- here is where we will display a list of comments for the post-->
    @if(count($post->cafeReviews) > 0)
        @foreach($post->cafeReviews->sortDesc() as $comm)
            <div class="d-flex bd-highlight" style="background-color: #FAF0E6; margin-bottom: 1%; border-radius: 20px; padding-top: 1%; padding-bottom: 2%;">
                <div class="p-2 flex-shrink-1 bd-highlight">
                    <img style="width: 60px; height: 60px; vertical-align: middle" src="/css/img/user.png" alt="avatar">
                </div>
                <div class="p-2 w-100 bd-highlight">
                    <div class="flex items-center">
                        <div>Posted by: <b>{{ $comm->username }}</b></div>
                        <hr>
                        <div class="text-gray-700 mt-2">{{ $comm->content }}</div>
                    </div>
                    <div class="d-flex" style="margin-top: 3%; padding-right: 1%;">
                        <div class="ms-auto">
                            {{ $comm->created_at->diffForHumans() }}
                        </div>
                    </div>
                </div>
            </div>
        @endforeach
    @else
        <p>no reviews</p>
    @endif
</div>

接下来,这是我的直播课

<?php

namespace App\Http\Livewire;

use App\Models\CafeReview;
use App\Models\Post;
use Livewire\Component;
use RealRashid\SweetAlert\Facades\Alert;

class CafeReviewSection extends Component
{

    public $post;

    //keeping track of review with sate
    public $cafeReview;

    //defining our validation rules
    protected $rules = ([
        'cafeReview' => 'required|min:4'
    ]);

    //we dont actually need this as livewire knows already
    public function mount(Post $post)
    {
        $this->post = $post;

    }

    public function postReview()
    {
        //validating our comment state when we submit
        sleep(1);
        $this->validate();
        
        CafeReview::create([
            'post_id' => $this->post->id,
            'user_id' => auth()->user()->id,
            'username' => auth()->user()->username,
            'content' => $this->cafeReview,
        ]);

        $this->post->refresh();

        $this->cafeReview = '';

    }

    public function render()
    {
        return view('livewire.cafe-review-section');

    }
}

【问题讨论】:

  • 嘿,感谢您检查这不是我想要分页的实际帖子,而是基于它们的评论。我似乎无法从文档中找到如何做到这一点,这就是我目前循环对组件 @foreach($post->cafeReviews->sortDesc() as $comm) 上的帖子的评论的方式,我是 livewire 的新手,所以道歉因为没有完全理解这一点

标签: php laravel laravel-livewire


【解决方案1】:

如果您按照 livewire 文档进行分页,应该很容易将其添加到您的视图中。

<!-- here is where we will display a list of comments for the post-->
@forelse ($reviews as $review)
  <div class="d-flex bd-highlight" style="background-color: #FAF0E6; margin-bottom: 1%; border-radius: 20px; padding-top: 1%; padding-bottom: 2%;">
    <div class="p-2 flex-shrink-1 bd-highlight">
      <img style="width: 60px; height: 60px; vertical-align: middle" src="/css/img/user.png" alt="avatar">
    </div>
    <div class="p-2 w-100 bd-highlight">
      <div class="flex items-center">
        <div>Posted by: <b>{{ $comm->username }}</b></div>
        <hr>
        <div class="text-gray-700 mt-2">{{ $comm->content }}</div>
      </div>
      <div class="d-flex" style="margin-top: 3%; padding-right: 1%;">
        <div class="ms-auto">
          {{ $comm->created_at->diffForHumans() }}
        </div>
      </div>
    </div>
  </div>
@empty
  <p>no reviews</p>
@endforelse
<!-- pagination links -->
{!! $reviews->links() !!}
<?php

namespace App\Http\Livewire;

use App\Models\CafeReview;
use App\Models\Post;
use Livewire\Component;
// WithPagination Trait
use Livewire\WithPagination;
use RealRashid\SweetAlert\Facades\Alert;

class CafeReviewSection extends Component
{
    // withPagination Trait
    use WithPagination;

    public $post;

    //keeping track of review with sate
    public $cafeReview;

    //defining our validation rules
    protected $rules = ([
        'cafeReview' => 'required|min:4'
    ]);

    //we dont actually need this as livewire knows already
    public function mount(Post $post)
    {
        $this->post = $post;
    }

    public function postReview()
    {
        //validating our comment state when we submit
        sleep(1);
        $this->validate();

        // create review through post->cafeReviews relationship
        $this->post->cafeReviews()->create([
            'user_id' => auth()->user()->id,
            'username' => auth()->user()->username,
            'content' => $this->cafeReview,
        ]);

        // Reset pagination after creating new review
        $this->resetPage();

        $this->cafeReview = '';
    }

    public function render()
    {
        // Append paginated reviews to view
        $reviews = $this->post->cafeReviews()->latest()->paginate(10);

        return view('livewire.cafe-review-section', compact('reviews'));
    }
}

【讨论】:

    猜你喜欢
    • 2020-07-07
    • 2019-12-06
    • 1970-01-01
    • 2018-03-24
    • 2022-01-10
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多