7

我正在建立一个基本论坛(受 laracasts.com/discuss启发)。当用户发布对主题的回复时:

  • 我想用他们的回复锚将他们引导到分页回复列表的末尾(与 Laracasts 的行为相同)。
  • 我还想在用户编辑其中一个回复时将其返回到正确的页面。

如何确定新回复将发布在哪个页面 ( ?page=x) 以及在回复编辑后如何返回正确页面?或者,从主帖子列表中,最新回复在哪个页面上?

这是我当前的ForumPost模型(减去一些不相关的东西)-

<?php namespace App;

use Illuminate\Database\Eloquent\Model;

/**
 * Class ForumPost
 *
 * Forum Posts table
 *
 * @package App
 */
class ForumPost extends Model {
    /**
     * Post has many Replies
     * @return \Illuminate\Database\Eloquent\Relations\HasMany
     */
    public function replies()
    {
        return $this->hasMany('App\ForumReply');
    }

    /**
     * Get the latest reply for a post
     * @return null
     */
    public function latestReply()
    {
        return $this->replies()->orderBy('created_at', 'desc')->first();
    }

}

更新

看看这个,让我知道你的想法。它的工作方式有点奇怪,但它为给定的回复 ID 返回正确的页面,这只是一种方法:

public function getReplyPage($replyId = null, $paginate = 2)
    {
        $id = $replyId ? $replyId : $this->latestReply()->id;
        $count = $this->replies()->where('id', '<', $id)->count();

        $page = 1; // Starting with one page

        // Counter - when we reach the number provided in $paginate, we start a new page
        $offset = 0;

        for ($i = 0; $i < $count; $i++) {

            $offset++;
            if ($offset == $paginate) {
                $page++;
                $offset = 0;
            }
        }


        return $page;
    }
4

2 回答 2

9

从根本上讲,您使用的是两个值:首先,回复的索引与帖子的所有回复相关,其次是页面上的回复数量。

例如,您可能有一个 id 为 301 的回复。但是,它是特定帖子的第 21 条回复。您需要通过某种方式来确定这是第 21 次回复。这实际上相对简单:您只需计算与该帖子相关但 ID 较小的回复的数量。

//get the number of replies before the one you're looking for
public function getReplyIndex($replyId)
{
    $count = $this->replies()->where('id', '<', $replyId)->count();
    return $count;
}

该方法应该返回您正在寻找的回复的索引 - 当然,假设您的回复使用的是自动增量 ID。

第二个难题是确定您需要哪个页面。这是使用整数除法完成的。基本上你只是正常除数,但不要使用余数。如果您正在查看第 21 条回复,并且您对一页有 10 条回复,那么您知道它应该在第三页(第 1 页:1-10、第 2 页:11-20、第 3 页:21-30)。这意味着您需要将您的回复索引除以您的每页回复数,然后加 1。这将给我们 21/10+1,使用整数除法,给我们 3。耶!

//divides where we are by the number of replies on a page and adds 1
public function getPageNumber($index, $repliesPerPage)
{
    $pageNumber = (int) ($index/$repliesPerPage+1);
    return $pageNumber;
}

好的,所以现在你只需要拉那个页面。这只需要一种方法,您可以在其中指定所需的页码以及对页面的回复数。然后该方法可以计算偏移量和限制,并检索您需要的记录。

public function getPageOfReplies($pageNumber, $repliesPerPage)
{
    $pageOfReplies = $this->replies()->offset($pageNumber*$repliesPerPage)->limit($repliesPerPage)->get();
    return $pageOfReplies;
}

不过,为了更好地衡量,我们可以构建一个方法来获取最终回复的索引。

public function getLastReplyIndex()
{
    $count = $this->replies()->count();
    return $count;
}

伟大的!现在我们拥有了我们需要的所有构建块。我们可以构建一些简单的方法,使用我们更通用的方法来轻松检索我们需要的数据。

让我们从一个获取单个回复所在的整个回复页面的方法开始(随意更改名称(我假设每页有 10 个回复)):

public function getPageThatReplyIsOn($replyId)
{
    $repliesPerPage = 10;
    $index = $this->getReplyIndex($replyId);
    $pageNumber = $this->getPageNumber($index, $repliesPerPage);
    return $this->getPageOfReplies($pageNumber, $repliesPerPage);
}

为了更好地衡量,我们可以制作一个获取最终回复页面的方法。

public function getFinalReplyPage()
{
    $repliesPerPage = 10;
    $index = $this->getLastReplyIndex();
    $pageNumber = $this->getPageNumber($index, $repliesPerPage);
    return $this->getPageOfReplies($pageNumber, $repliesPerPage);
}

您可以构建各种其他方法来使用我们的构建块方法并跳转页面、在回复之后或之前获取页面等。

一对夫妇的笔记

这些都在您的ForumPost模型中,它应该与您的回复具有一对多的关系。

这些是旨在提供广泛功能的各种方法。不要害怕通读它们并单独测试它们以确切了解它们在做什么。它们都不是很长,所以这样做应该不难。

于 2015-03-19T21:53:17.100 回答
2

这是我想出的。如果有人对此有任何改进建议,请告诉我。我真的想知道是否有更多的 Laravel 方法可以做到这一点,我非常感谢 Jeffrey Way 分享他的秘密,因为他正在 Laracasts 做这件事。

/**
     * Get Reply Page
     * 
     * Returns the page number where a reply resides as it relates to pagination
     * 
     * @param null $replyId Optional ID for specific reply
     * @param bool $pageLink If True, return a GET parameter ?page=x
     * @param int $paginate Number of posts per page
     * @return int|null|string // Int for only the page number, null if no replies, String if $pageLink == true
     */
    public function getReplyPage($replyId = null, $pageLink = false, $paginate = 20)
    {
        // Find the page for a specific reply if provided, otherwise find the most 
        // recent post's ID. If there are no replies, return null and exit.
        if (!$replyId) {
            $latestReply = $this->latestReply();
            if ($latestReply) {
                $replyId = $latestReply->id;
            } else {
                return null;
            }
        }

        // Find the number of replies to this Post prior to the one in question
        $count = $this->replies()->where('id', '<', $replyId)->count();

        $page = CEIL($count / $paginate +1);

        // Return either the integer or URL parameter
        return $pageLink ? "?page=$page" : $page;
    }
于 2015-03-20T16:17:40.897 回答