En este capítulo continuamos con la acción-vista View que lista los registros de la tabla alumnos, en el capítulo anterior ya vimos como integrar un formulario de búsqueda para filtrar los resultados, en esta ocasión mejoraremos el sistema incluyendo una paginación de resultados a través de la clase yii\data\Pagination y generaremos la consulta LIKE de un modo distinto a lo visto en el capítulo anterior, pero con los mismos resultados gracias a las herramientas que nos proporciona la clase yii\db\Query.
Clase Pagination: http://www.yiiframework.com/doc-2.0/yii-data-pagination.html
El código de este capítulo lo podéis ver a continuación:
Código de la vista view.php
<?php use yii\helpers\Url; use yii\helpers\Html; use yii\widgets\ActiveForm; use yii\data\Pagination; use yii\widgets\LinkPager; ?> <a href="<?= Url::toRoute("site/create") ?>">Crear un nuevo alumno</a> <?php $f = ActiveForm::begin([ "method" => "get", "action" => Url::toRoute("site/view"), "enableClientValidation" => true, ]); ?> <div class="form-group"> <?= $f->field($form, "q")->input("search") ?> </div> <?= Html::submitButton("Buscar", ["class" => "btn btn-primary"]) ?> <?php $f->end() ?> <h3><?= $search ?></h3> <h3>Lista de alumnos</h3> <table class="table table-bordered"> <tr> <th>Id Alumno</th> <th>Nombre</th> <th>Apellidos</th> <th>Clase</th> <th>Nota Final</th> <th></th> <th></th> </tr> <?php foreach($model as $row): ?> <tr> <td><?= $row->id_alumno ?></td> <td><?= $row->nombre ?></td> <td><?= $row->apellidos ?></td> <td><?= $row->clase ?></td> <td><?= $row->nota_final ?></td> <td><a href="#">Editar</a></td> <td><a href="#">Eliminar</a></td> </tr> <?php endforeach ?> </table> <?= LinkPager::widget([ "pagination" => $pages, ]);
Código del controlador SiteController.php donde se encuentra la acción View
<?php namespace app\controllers; use Yii; use yii\filters\AccessControl; use yii\web\Controller; use yii\filters\VerbFilter; use app\models\LoginForm; use app\models\ContactForm; use app\models\ValidarFormulario; use app\models\ValidarFormularioAjax; use yii\widgets\ActiveForm; use yii\web\Response; use app\models\FormAlumnos; use app\models\Alumnos; use app\models\FormSearch; use yii\helpers\Html; use yii\data\Pagination; class SiteController extends Controller { public function actionView() { $form = new FormSearch; $search = null; if($form->load(Yii::$app->request->get())) { if ($form->validate()) { $search = Html::encode($form->q); $table = Alumnos::find() ->where(["like", "id_alumno", $search]) ->orWhere(["like", "nombre", $search]) ->orWhere(["like", "apellidos", $search]); $count = clone $table; $pages = new Pagination([ "pageSize" => 1, "totalCount" => $count->count() ]); $model = $table ->offset($pages->offset) ->limit($pages->limit) ->all(); } else { $form->getErrors(); } } else { $table = Alumnos::find(); $count = clone $table; $pages = new Pagination([ "pageSize" => 1, "totalCount" => $count->count(), ]); $model = $table ->offset($pages->offset) ->limit($pages->limit) ->all(); } return $this->render("view", ["model" => $model, "form" => $form, "search" => $search, "pages" => $pages]); } public function actionCreate() { $model = new FormAlumnos; $msg = null; if($model->load(Yii::$app->request->post())) { if($model->validate()) { $table = new Alumnos; $table->nombre = $model->nombre; $table->apellidos = $model->apellidos; $table->clase = $model->clase; $table->nota_final = $model->nota_final; if ($table->insert()) { $msg = "Enhorabuena registro guardado correctamente"; $model->nombre = null; $model->apellidos = null; $model->clase = null; $model->nota_final = null; } else { $msg = "Ha ocurrido un error al insertar el registro"; } } else { $model->getErrors(); } } return $this->render("create", ['model' => $model, 'msg' => $msg]); } public function actionSaluda($get = "Tutorial Yii") { $mensaje = "Hola Mundo"; $numeros = [0, 1, 2, 3, 4, 5]; return $this->render("saluda", [ "saluda" => $mensaje, "numeros" => $numeros, "get" => $get, ]); } public function actionFormulario($mensaje = null) { return $this->render("formulario", ["mensaje" => $mensaje]); } public function actionRequest() { $mensaje = null; if (isset($_REQUEST["nombre"])) { $mensaje = "Bien, has enviando tu nombre correctamente: " . $_REQUEST["nombre"]; } $this->redirect(["site/formulario", "mensaje" => $mensaje]); } public function actionValidarformulario() { $model = new ValidarFormulario; if ($model->load(Yii::$app->request->post())) { if($model->validate()) { //Por ejemplo, consultar en una base de datos } else { $model->getErrors(); } } return $this->render("validarformulario", ["model" => $model]); } public function actionValidarformularioajax() { $model = new ValidarFormularioAjax; $msg = null; if ($model->load(Yii::$app->request->post()) && Yii::$app->request->isAjax) { Yii::$app->response->format = Response::FORMAT_JSON; return ActiveForm::validate($model); } if ($model->load(Yii::$app->request->post())) { if ($model->validate()) { //Por ejemplo hacer una consulta a una base de datos $msg = "Enhorabuena formulario enviado correctamente"; $model->nombre = null; $model->email = null; } else { $model->getErrors(); } } return $this->render("validarformularioajax", ['model' => $model, 'msg' => $msg]); } public function behaviors() { return [ 'access' => [ 'class' => AccessControl::className(), 'only' => ['logout'], 'rules' => [ [ 'actions' => ['logout'], 'allow' => true, 'roles' => ['@'], ], ], ], 'verbs' => [ 'class' => VerbFilter::className(), 'actions' => [ 'logout' => ['post'], ], ], ]; } public function actions() { return [ 'error' => [ 'class' => 'yii\web\ErrorAction', ], 'captcha' => [ 'class' => 'yii\captcha\CaptchaAction', 'fixedVerifyCode' => YII_ENV_TEST ? 'testme' : null, ], ]; } public function actionIndex() { return $this->render('index'); } public function actionLogin() { if (!\Yii::$app->user->isGuest) { return $this->goHome(); } $model = new LoginForm(); if ($model->load(Yii::$app->request->post()) && $model->login()) { return $this->goBack(); } else { return $this->render('login', [ 'model' => $model, ]); } } public function actionLogout() { Yii::$app->user->logout(); return $this->goHome(); } public function actionContact() { $model = new ContactForm(); if ($model->load(Yii::$app->request->post()) && $model->contact(Yii::$app->params['adminEmail'])) { Yii::$app->session->setFlash('contactFormSubmitted'); return $this->refresh(); } else { return $this->render('contact', [ 'model' => $model, ]); } } public function actionAbout() { return $this->render('about'); } }
Ver el vídeo tutorial de Yii Framework 2 en Youtube
No hay comentarios:
Publicar un comentario