diiimonn/yii2-widget-next-button

There is no license information available for the latest version (v1.0.0) of this package.

Widget render wrap container for a list with next button

v1.0.0 2015-02-23 12:26 UTC

This package is not auto-updated.

Last update: 2024-04-13 14:13:16 UTC


README

Widget render wrap container for a list with next button.

Installation

To install with composer:

$ php composer.phar require diiimonn/yii2-widget-next-button "dev-master"

or add

"diiimonn/yii2-widget-next-button": "dev-master"

to the require section of your composer.json file.

Usage

controller:

...
use yii\data\Pagination;
...

class SiteController extends Controller
{
    ...
    public function actionIndex($id)
    {
        ...
        $query = MyModel::find();

        $queryCount = clone $query;

        $pagination = new Pagination([
            'totalCount' => $queryCount->count(),
            'pageSize' => 10,
            'page' => 0,
        ]);

        $isNext = $pagination->getPageCount() > 1;

        $query->offset($pagination->offset);
        $query->limit($pagination->limit);
        $models = $query->all();

        ...

        return $this->render('index', [
            ...
            'models' => $models,
            'isNext' => $isNext,
        ]);
    }

    ...

    public function actionNext($id, $page = 0)
    {
        Yii::$app->response->format = 'json';

        $json = new \stdClass();

        $query = MyModel::find();

        $queryCount = clone $query;

        $pagination = new Pagination([
            'totalCount' => $queryCount->count(),
            'pageSize' => 10,
            'page' => $page,
        ]);

        $nextPage = $page + 1;

        $json->page = $pagination->getPageCount() > $nextPage ? $nextPage : 0;

        $query->offset($pagination->offset);
        $query->limit($pagination->limit);
        $models = $query->all();

        ...

        $json->html = $this->renderPartial('_items', [
            ...
            'models' => $models,
        ]);

        return $json;
    }

    ...
}

structure views:

├── site
│   ├── index.php
│   ├── _items.php
│   ├── ...

view index.php

...
use diiimonn\widgets\NextButton;
use yii\helpers\Url;

...

<?php $nextButton = NextButton::begin([
    'buttonContent' => Yii::t('app', 'Show next ...'),
    'buttonOptions' => [/* button tag options */],
    'isNext' => $isNext,
    'scriptOptions' => [
        'ajax' => [
            'url' => Url::toRoute(['next', /* other params */]), // Url for ajax request to actionNext in SiteController. Required parameter
        ],
    ],
    'options' => [/* widget tag options */],
    'containerOptions' => [/* container tag for items options */],
    'buttonContainerOptions' => [],
    'buttonBlockOptions' => [], // for example ['class' => 'row']
    'buttonWrapOptions' => [], // for example ['class' => 'col-md-6 col-md-offset-3']
]) ?>

<?= $this->render('_items', [
    ...
    'models' => $models,
]) ?>

<?php $nextButton::end() ?>
...