forked from kartik-v/yii2-sortable
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSortable.php
More file actions
161 lines (145 loc) · 4.78 KB
/
Sortable.php
File metadata and controls
161 lines (145 loc) · 4.78 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
<?php
/**
* @copyright Copyright © Kartik Visweswaran, Krajee.com, 2014 - 2015
* @package yii2-sortable
* @version 1.2.0
*/
namespace kartik\sortable;
use yii\helpers\Html;
use yii\helpers\ArrayHelper;
/**
* Create sortable lists and grids using HTML5 drag and drop API for Yii 2.0.
* Based on html5sortable plugin.
*
* @see http://farhadi.ir/projects/html5sortable/
* @author Kartik Visweswaran <kartikv2@gmail.com>
* @since 1.0
*/
class Sortable extends \kartik\base\Widget
{
const TYPE_LIST = 'list';
const TYPE_GRID = 'grid';
/**
* @var string the type of the sortable widget
* Should be one of [[Sortable::TYPE]] constants.
* Defaults to Sortable::TYPE_LIST
*/
public $type = self::TYPE_LIST;
/**
* @var boolean|string, whether this widget is connected to another Sortable widget. Defaults to `false`.
* - if set to `false` or null/empty this widget will not be connected to any other sortable widget.
* - if set to `true`, this widget will be connected to all other sortable widgets on the page with
* `connected` property set to `true`.
* - if set to a string - this widget will be connected with other sortable widgets matching
* the same connected string value.
*/
public $connected = false;
/**
* @var boolean, whether this widget is disabled
*/
public $disabled = false;
/**
* @var boolean, whether to show handle for each sortable item
*/
public $showHandle = false;
/**
* @var string, the handle label, this is not HTML encoded
*/
public $handleLabel = '<i class="glyphicon glyphicon-move"></i> ';
/**
* @var array the HTML attributes to be applied to all items.
* This will be overridden by the [[options]] property within [[$items]].
*/
public $itemOptions = [];
/**
* @var array the sortable items configuration for rendering elements within the sortable
* list / grid. You can set the following properties:
* - content: string, the list item content (this is not HTML encoded)
* - disabled: bool, whether the list item is disabled
* - options: array, the HTML attributes for the list item.
*/
public $items = [];
/**
* Initializes the widget
*/
public function init()
{
parent::init();
Html::addCssClass($this->options, 'sortable ' . $this->type);
if (($this->connected && is_string($this->connected)) || $this->connected === true) {
$css = ($this->connected === true) ? 'kv-connected' : $this->connected;
Html::addCssClass($this->options, $css);
$this->pluginOptions['connectWith'] = ".{$css}";
}
if ($this->showHandle) {
$this->pluginOptions['handle'] = '.handle';
} else {
Html::addCssClass($this->options, 'cursor-move');
}
if ($this->hasDisabledItem() && empty($this->pluginOptions['items'])) {
$this->pluginOptions['items'] = ':not(.disabled)';
}
$this->registerAssets();
echo Html::beginTag('ul', $this->options);
}
/**
* Runs the widget
*
* @return string|void
*/
public function run()
{
echo $this->renderItems();
echo Html::endTag('ul');
}
/**
* Check if there is any disabled item
*
* @return bool
*/
protected function hasDisabledItem()
{
foreach ($this->items as $item) {
if (ArrayHelper::getValue($item, 'disabled', false)) {
return true;
}
}
return false;
}
/**
* Render the list items for the sortable widget
*
* @return string
*/
protected function renderItems()
{
$items = '';
$handle = ($this->showHandle) ? Html::tag('span', $this->handleLabel, ['class' => 'handle']) : '';
foreach ($this->items as $item) {
$options = ArrayHelper::getValue($item, 'options', []);
$options = ArrayHelper::merge($this->itemOptions, $options);
if (ArrayHelper::getValue($item, 'disabled', false)) {
Html::addCssClass($options, 'disabled');
}
$content = $handle . ArrayHelper::getValue($item, 'content', '');
$items .= Html::tag('li', $content, $options) . PHP_EOL;
}
return $items;
}
/**
* Register client assets
*/
public function registerAssets()
{
$view = $this->getView();
SortableAsset::register($view);
$this->registerPlugin('sortable');
$id = 'jQuery("#' . $this->options['id'] . '")';
if ($this->disabled) {
$js = "{$id}.sortable('disable');";
} else {
$js = "{$id}.sortable('enable');";
}
$view->registerJs($js);
}
}