承接 todstoychev/table-sorter 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

todstoychev/table-sorter

最新稳定版本:v0.1.0

Composer 安装命令:

composer require todstoychev/table-sorter

包简介

Table sorter module for Laravel 5

README 文档

README

Table sorter is simple Laravel 5 module. It can be used to sort table columns.

Instalation

Use the standart composer way to install the module:

composer require todstoychev/table-sorter

or add to the require clause of your composer.json:

"todstoychev/table-sorter": "dev-master"

Configuration

Open config/app.php and add to 'providers' the module service provider:

'providers' => [
    // ...
    Todstoychev\TableSorter\ServiceProvider::class,
    // ...
],

Then create an alias for the package main class:

'aliases' => [
    // ...
    'TableSorter' => Todstoychev\TableSorter\TableSorter::class,
    // ...
],

Run php artisan vendor/publish command to publish the views contained in the package.

Usage

The class contains 2 methods - sort() and sortSearch(). Both take different params. The methods return simple templates used to form the column name link with the necessary parameters. Since those parameters are presented in the Laravel request object, you can use them to construct you database query. For example you can use in your template

<th>
    {!! TableSorter::sort('Namespace\MyController@getMyAction', 'text.to.use.for.columnName', 'database.table.columnName', 'asc', 10) !!}
</th>

First argument is your get page controller method. Second argument is the text that should be shown as column name in the table. Third argument is the database table column name or alias from which the data is coming. Fourth one is the sorting direction. This can be provided as variable since it is determined by the module itself. Last argument is used to represent items per page number, in case you are using pagination.

The other method provided by the module can be used to sort search results.

<th>
    {!! TableSorter::sortSearch('Namespace\MyController@getMyAction', 'text.to.use.for.columnName', 'search.string', 'database.table.columnName', 'asc') !!}
</th>

This one works almost in the same way. The difference is that it not provides value for items per page and has search string parameter.

To make this will work you will need to create something similar in your controller:

class MyController
{
    public function getMyAction(Request $request)
    {
        // Get parameters 
        $limit = $request->input('limit') ? $request->input('limit') : null;
        $order = $request->input('order') ? $request->input('order') : null;
        // Database column name or alias
        $param = $request->input('param') ? $request->input('param') : null;
        
        $query = MyModel::orderBy($param, $order);
        $results = $query->paginate($limit);
        
        return view('my.view', [
            'limit' => $limit,
            'order' => $order,
            'param' => $parm,
            'results' => $results
        ]);
    }
}

统计信息

  • 总下载量: 963
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 1
  • 点击次数: 5
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 1
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2015-11-12