rutorika/sortable
Composer 安装命令:
composer require rutorika/sortable
包简介
Adds sortable behavior and ordering to Laravel Eloquent models. Grouping and many to many supported.
README 文档
README
Laravel 5 - Demo
https://github.com/boxfrommars/rutorika-sortable-demo5
Install
Install package through Composer
composer require rutorika/sortable
Version Compatibility
| Laravel | Rutorika Sortable |
|---|---|
| 4 | 1.2.x (branch laravel4) |
| <=5.3 | 3.2.x |
| 5.4 | 3.4.x |
| 5.5 | 4.2.x |
| 5.7 | 4.7.x |
| 6.0 | 6.0.x |
| 7.x, 8.x | 8.x.x |
| 9.x, 10.x, 11.x, 12.x, 13.x | 9.x.x |
Sortable Trait
Adds sortable behavior to Eloquent (Laravel) models
Usage
Add position field to your model (see below how to change this name):
// schema builder example public function up() { Schema::create('articles', function (Blueprint $table) { // ... other fields ... $table->integer('position'); // Your model must have position field: }); }
Add \Rutorika\Sortable\SortableTrait to your Eloquent model.
class Article extends Model { use \Rutorika\Sortable\SortableTrait; }
if you want to use custom column name for position, set $sortableField:
class Article extends Model { use \Rutorika\Sortable\SortableTrait; protected static $sortableField = 'somefield'; }
Now you can move your entities with methods moveBefore($entity) and moveAfter($entity) (you dont need to save
model after that, it has saved already):
$entity = Article::find(1); $positionEntity = Article::find(10) $entity->moveAfter($positionEntity); // if $positionEntity->position is 14, then $entity->position is 15 now
Also this trait automatically defines entity position on the create event, so you do not need to add position manually, just create entities as usual:
$article = new Article(); $article->title = $faker->sentence(2); $article->description = $faker->paragraph(); $article->save();
This entity will be at position entitiesMaximumPosition + 1
To get ordered entities use the sorted scope:
$articles = Article::sorted()->get();
** Note **: Resorting does not take place after a record is deleted. Gaps in positional values do not affect the ordering of your lists. However, if you prefer to prevent gaps you can reposition your models using the
deletingevent. Something like:
// YourAppServiceProvider YourModel::deleting(function ($model) { $model->next()->decrement('position'); });
You need rutorika-sortable >=2.3 to use
->next()
Sortable groups
if you want group entity ordering by field, add to your model
protected static $sortableGroupField = 'fieldName';
now moving and ordering will be encapsulated by this field.
If you want group entity ordering by many fields, use as an array:
protected static $sortableGroupField = ['fieldName1','fieldName2'];
Sortable many to many
Let's assume your database structure is
posts
id
title
tags
id
title
post_tag
post_id
tag_id
and you want to order tags for each post
Add position column to the pivot table (you can use any name you want, but position is used by default)
post_tag
post_id
tag_id
position
Add \Rutorika\Sortable\BelongsToSortedManyTrait to your Post model and define belongsToSortedMany relation provided by this trait:
class Post extends Model { use BelongsToSortedManyTrait; public function tags() { return $this->belongsToSortedMany('\App\Tag'); } }
Note:
$this->belongsToSortedManyhas different signature then$this->belongsToMany-- the second argument for this method is$orderColumn('position'by default), next arguments are the same
Attaching tags to post with save/sync/attach methods will set proper position
$post->tags()->save($tag) // or $post->tags()->attach($tag->id) // or $post->tags()->sync([$tagId1, $tagId2, /* ...tagIds */])
Getting related model is sorted by position
$post->tags; // ordered by position by default
You can reorder tags for given post
$post->tags()->moveBefore($entityToMove, $whereToMoveEntity); // or $post->tags()->moveAfter($entityToMove, $whereToMoveEntity);
Many to many demo: http://sortable5.boxfrommars.ru/posts (code)
You can also use polymorphic many to many relation with sortable behavour by using the MorphsToSortedManyTrait trait and returning $this->morphToSortedMany() from relation method.
By following the Laravel polymorphic many to many table relation your tables should look like
posts
id
title
tags
id
title
taggables
tag_id
position
taggable_id
taggable_type
And your model like
class Post extends Model { use MorphToSortedManyTrait; public function tags() { return $this->morphToSortedMany('\App\Tag', 'taggable'); } }
Sortable Controller
Also this package provides \Rutorika\Sortable\SortableController, which handle requests to sort entities
Usage
Add the service provider to config/app.php
'providers' => array( // providers... 'Rutorika\Sortable\SortableServiceProvider', )
publish the config:
php artisan vendor:publish
Add models you need to sort in the config config/sortable.php:
'entities' => array( 'articles' => '\App\Article', // entityNameForUseInRequest => ModelName // or 'articles' => ['entity' => '\App\Article'], // or for many to many 'posts' => [ 'entity' => '\App\Post', 'relation' => 'tags' // relation name (method name which returns $this->belongsToSortedMany) ] ),
Add route to the sort method of the controller:
Route::post('sort', '\Rutorika\Sortable\SortableController@sort');
Now if you post to this route valid data:
$validator = \Validator::make(\Input::all(), array( 'type' => array('required', 'in:moveAfter,moveBefore'), // type of move, moveAfter or moveBefore 'entityName' => array('required', 'in:' . implode(',', array_keys($sortableEntities))), // entity name, 'articles' in this example 'positionEntityId' => 'required|numeric', // id of relative entity 'id' => 'required|numeric', // entity id )); // or for many to many $validator = \Validator::make(\Input::all(), array( 'type' => array('required', 'in:moveAfter,moveBefore'), // type of move, moveAfter or moveBefore 'entityName' => array('required', 'in:' . implode(',', array_keys($sortableEntities))), // entity name, 'articles' in this example 'positionEntityId' => 'required|numeric', // id of relative entity 'id' => 'required|numeric', // entity id 'parentId' => 'required|numeric', // parent entity id ));
Then entity with \Input::get('id') id will be moved relative by entity with \Input::get('positionEntityId') id.
For example, if request data is:
type:moveAfter
entityName:articles
id:3
positionEntityId:14
then the article with id 3 will be moved after the article with id 14.
jQuery UI sortable example
Note: Laravel 5 has csrf middleware enabled by default, so you should setup ajax requests: http://laravel.com/docs/5.0/routing#csrf-protection
Template
<table class="table table-striped table-hover"> <tbody class="sortable" data-entityname="articles"> @foreach ($articles as $article) <tr data-itemId="{{{ $article->id }}}"> <td class="sortable-handle"> <span class="glyphicon glyphicon-sort"></span> </td> <td class="id-column">{{{ $article->id }}}</td> <td>{{{ $article->title }}}</td> </tr> @endforeach </tbody> </table>
Template for many to many ordering
<table class="table table-striped table-hover"> <tbody class="sortable" data-entityname="posts"> @foreach ($post->tags as $tag) <tr data-itemId="{{ $tag->id }}" data-parentId="{{ $post->id }}"> <td class="sortable-handle"> <span class="glyphicon glyphicon-sort"></span> </td> <td class="id-column">{{ $tag->id }}</td> <td>{{ $tag->title }}</td> </tr> @endforeach </tbody> </table>
/** * * @param type string 'insertAfter' or 'insertBefore' * @param entityName * @param id * @param positionId */ var changePosition = function (requestData) { $.ajax({ url: "/sort", type: "POST", data: requestData, success: function (data) { if (data.success) { console.log("Saved!"); } else { console.error(data.errors); } }, error: function () { console.error("Something wrong!"); }, }); }; $(document).ready(function () { var $sortableTable = $(".sortable"); if ($sortableTable.length > 0) { $sortableTable.sortable({ handle: ".sortable-handle", axis: "y", update: function (a, b) { var entityName = $(this).data("entityname"); var $sorted = b.item; var $previous = $sorted.prev(); var $next = $sorted.next(); if ($previous.length > 0) { changePosition({ parentId: $sorted.data("parentid"), type: "moveAfter", entityName: entityName, id: $sorted.data("itemid"), positionEntityId: $previous.data("itemid"), }); } else if ($next.length > 0) { changePosition({ parentId: $sorted.data("parentid"), type: "moveBefore", entityName: entityName, id: $sorted.data("itemid"), positionEntityId: $next.data("itemid"), }); } else { console.error("Something wrong!"); } }, cursor: "move", }); } });
Development
sudo docker build -t rutorika-sortable .
sudo docker run --volume $PWD:/project --rm --interactive --tty --user $(id -u):$(id -g) rutorika-sortable vendor/bin/phpunit
rutorika/sortable 适用场景与选型建议
rutorika/sortable 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 1.05M 次下载、GitHub Stars 达 289, 最近一次更新时间为 2014 年 06 月 28 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「order」 「sortable」 「sort」 「laravel」 「eloquent」 「laravel4」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 rutorika/sortable 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 rutorika/sortable 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 rutorika/sortable 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
DataTables is a plug-in for the jQuery Javascript library. It is a highly flexible tool, based upon the foundations of progressive enhancement, which will add advanced interaction controls to any HTML table.
Syntactic sugar for PHP's sorting
Easily provide front-end sorting controls for SilverStripe lists
Plug-ins for DataTables
Symfony DataGridBundle
Sortable models for Laravel Eloquent ORM.
统计信息
- 总下载量: 1.05M
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 298
- 点击次数: 35
- 依赖项目数: 14
- 推荐数: 2
其他信息
- 授权协议: MIT
- 更新时间: 2014-06-28