OctoberCMS中的自定义分页

时间:2018-05-24 12:38:31

标签: laravel pagination octobercms

我有一个代码可以从表单中进行查询:

Painting::where('type',input("type"))->where('material',input("material"))->whereHas('artist', function($q)
{
     $q->where('artist_slug', '=', $this->param('slug'));
})->paginate(15);

如何使用页码列表进行自定义分页?或者也许dinamicaly loading

1 个答案:

答案 0 :(得分:2)

查看RainLab Blog Plugin它有一个很好的例子,另见here

但是,如果您要添加网址友好的分页paintings/2,其中2是页码和/或处理网址参数paintings/2?type=something&material=something

,则这是一个更完整的示例

在您的绘画模型中添加用于在前端列出绘画的范围:

public function scopeListPaintings($query, $options)
    {
        extract(array_merge([
            'page'               =>  1,
            'perPage'            =>  30,
            'material'           =>  null,
            'type'               =>  null,
            'artistSlug'         =>  null,
        ], $options));


        if( !empty($artistSlug) ){
            $query->whereHas('artist', function($q)
            {
                $q->where('artist_slug', $artistSlug );
            });
        }

        if( !empty($material) ){
            $query->where( 'material' , $material)
        }

        if( !empty($type) ){
            $query->where( 'type' , $type)
        }


        return $query->paginate( $perPage, $page );

    }

然后在您的绘画组件中定义属性并调用前一个范围;

    public $paintings ;

    public $pageNumber;

    public $perPage; 

    public $urlParams;

    public function defineProperties()
    {
        return [
            'pageNumber' => [
                'title'       => 'Page #',
                'description' => 'Paintings Page #',
                'type'        => 'string',
                'default'     => '{{ :page }}',
            ],
            'perPage' => [
                'title'       => 'Paintings per page',
                'type'        => 'string',
                'default'     => '30',
            ]

            .. ect make sure to add it to your page markup
        ];

    }

    private function propertyOrParam($name, $default = null)
    {
        $value = $this->property($name, $default);
        if (substr($value, 0, 1) == ':')
            return $this->param($value, $default);

        return $value;
    }

    public function getPaintings()
    {
        /** Pagination */
        $this->pageNumber    = $this->propertyOrParam('pageNumber') ;
        $this->perPage       = $this->propertyOrParam('perPage'); 

        /** Url Params if exist */ 
        $params = Request::query()
        $this->page['urlParams']   =  $this->urlParams  =  !empty( $params ) ? http_build_query( $params ) : null ;

        return (new Painting)->ListPaintings([
                'page'          => $this->pageNumber, 
                'perPage'       => $this->perPage,
                'type'          => input('type'),
                'material'      => input('material'),
                'artistSlug'    => $this->propertyOrParam('slug')
            ]);
    }

    public function onRun()
    {

        $this->page['paintings'] = $this->paintings   = $this->getPaintings() ;

        // Redirect to Last page if page # not found in request
        if ($this->pageNumber >  $this->paintings->lastPage() && $this->pageNumber > 1){
            return Redirect::to($this->currentPageUrl([ $this->paramName('pageNumber') =>  $this->paintings->lastPage().$this->urlParams ]));
        }

    }

然后您可以在主题中创建全局部分来处理分页 - 您可以在整个网站上重复使用 - 添加以下代码段(借用Forum Plugin);

<强> Pagination.htm

    {% set paginationEnabled =
    records.currentPage > 1 or
    records.lastPage > 1 or
    records.lastPage > records.currentPage
    %}

    {% if paginationEnabled %}
    {# How many pages to display around the current page #}
    {% set n = 2 %}

    {% set currentPageZeroBased = records.currentPage-1 %}

    {% set pageLinks = [] %}
    {% set pageSet = [] %}

    {% set startOffset = max(currentPageZeroBased - n, 0) %}
    {% if (startOffset + 2*n+1) > (records.lastPage-1) %}
    {% set startOffset = max(records.lastPage - 2*n - 1, 0) %}
    {% endif %}

    {% for page in 1..records.lastPage %}
    {% set pageLinks = pageLinks|merge([page]) %}
    {% endfor %}

    {% set activeBlock = pageLinks|slice(startOffset, 2*n + 1) %}

    {% if startOffset > 0 %}
    {% set pageSet = pageSet|merge([1]) %}

    {% if startOffset > 1 %}
    {% set pageSet = pageSet|merge(['...']) %}
    {% endif %}
    {% endif %}

    {% set pageSet = pageSet|merge(activeBlock) %}

    {% set diffToEnd = (records.lastPage-1) - (startOffset + 2*n+1) + 1 %}

    {% if diffToEnd > 0 %}
    {% if diffToEnd > 1 %}
    {% set pageSet = pageSet|merge(['...']) %}
    {% endif %}

    {% set pageSet = pageSet|merge([records.lastPage]) %}
    {% endif %}


    <div>
        <div>
           <div>

               <div>
                   <span>Records&nbsp;&nbsp;<b>{{records.firstItem|trim}}&nbsp;-&nbsp;{{records.lastItem|trim}}</b>&nbsp;Of&nbsp;{{ records.total|number_format(0, '.', ',')}}</span>
                   <span>Page {{ records.currentPage }} of {{ records.lastPage }}</span>
               </div>

           </div>
        </div>
        <div>
            <ul>

                {% if records.currentPage > 1 %}
                <li>
                    <a href="{{ this.page.baseFileName|page( { page : (records.currentPage-1) ~ urlParams }) }}" title="Previous"><i class="fa fa-angle-left"></i></a>
                </li>
                {% endif %}

                {% for page in pageSet %}
                {% if page == '...' %}
                <li>
                    <a href="javascript:void(0)" type="button" class="disabled">{{ page }}</a>
                </li>
                {% else %}
                <li class="{{ page == records.currentPage ? 'active' }}">
                    <a href="{{ this.page.baseFileName|page({ page : page ~ urlParams })  }}">{{ page }}</a>
                </li>
                {% endif %}
                {% endfor %}

                {% if records.lastPage > records.currentPage %}
                <li>
                    <a href="{{ this.page.baseFileName|page({ page : (records.currentPage+1) ~ urlParams }) }}" title="Next"><i class="fa fa-angle-right"></i></a>
                </li>
                {% endif %}
            </ul>
        </div>
    </div>


    {% endif %}

然后在您的页面或组件中;

{% for painting in paintings %}
 ....
{% endfor %}

// Add the pagination

{% partial "pagination" records=paintings  %}