You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
			
				
					107 lines
				
				2.8 KiB
			
		
		
			
		
	
	
					107 lines
				
				2.8 KiB
			| 
								 
											13 years ago
										 
									 | 
							
								<?php
							 | 
						||
| 
								 | 
							
								/**
							 | 
						||
| 
								 | 
							
								 * @link http://www.yiiframework.com/
							 | 
						||
| 
								 | 
							
								 * @copyright Copyright (c) 2008 Yii Software LLC
							 | 
						||
| 
								 | 
							
								 * @license http://www.yiiframework.com/license/
							 | 
						||
| 
								 | 
							
								 */
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								namespace yii\jui;
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
								use yii\base\InvalidConfigException;
							 | 
						||
| 
								 | 
							
								use yii\helpers\ArrayHelper;
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
								use yii\helpers\Html;
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								/**
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
								 * Sortable renders a sortable jQuery UI widget.
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
								 *
							 | 
						||
| 
								 | 
							
								 * For example:
							 | 
						||
| 
								 | 
							
								 *
							 | 
						||
| 
								 | 
							
								 * ```php
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
								 * echo Sortable::widget([
							 | 
						||
| 
								 | 
							
								 *     'items' => [
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
								 *         'Item 1',
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
								 *         ['content' => 'Item2'],
							 | 
						||
| 
								 | 
							
								 *         [
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
								 *             'content' => 'Item3',
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
								 *             'options' => ['tag' => 'li'],
							 | 
						||
| 
								 | 
							
								 *         ],
							 | 
						||
| 
								 | 
							
								 *     ],
							 | 
						||
| 
								 | 
							
								 *     'options' => ['tag' => 'ul'],
							 | 
						||
| 
								 | 
							
								 *     'itemOptions' => ['tag' => 'li'],
							 | 
						||
| 
								 | 
							
								 *     'clientOptions' => ['cursor' => 'move'],
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
								 * ));
							 | 
						||
| 
								 | 
							
								 * ```
							 | 
						||
| 
								 | 
							
								 *
							 | 
						||
| 
								 | 
							
								 * @see http://api.jqueryui.com/sortable/
							 | 
						||
| 
								 | 
							
								 * @author Alexander Kochetov <creocoder@gmail.com>
							 | 
						||
| 
								 | 
							
								 * @since 2.0
							 | 
						||
| 
								 | 
							
								 */
							 | 
						||
| 
								 | 
							
								class Sortable extends Widget
							 | 
						||
| 
								 | 
							
								{
							 | 
						||
| 
								 | 
							
									/**
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
									 * @var array the HTML attributes for the widget container tag. The following special options are recognized:
							 | 
						||
| 
								 | 
							
									 *
							 | 
						||
| 
								 | 
							
									 * - tag: string, defaults to "ul", the tag name of the container tag of this widget
							 | 
						||
| 
								 | 
							
									 */
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
									public $options = [];
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
									/**
							 | 
						||
| 
								 | 
							
									 * @var array list of sortable items. Each item can be a string representing the item content
							 | 
						||
| 
								 | 
							
									 * or an array of the following structure:
							 | 
						||
| 
								 | 
							
									 *
							 | 
						||
| 
								 | 
							
									 * ~~~
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
									 * [
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
									 *     'content' => 'item content',
							 | 
						||
| 
								 | 
							
									 *     // the HTML attributes of the item container tag. This will overwrite "itemOptions".
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
									 *     'options' => [],
							 | 
						||
| 
								 | 
							
									 * ]
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
									 * ~~~
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
									 */
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
									public $items = [];
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
									/**
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
									 * @var array list of HTML attributes for the item container tags. This will be overwritten
							 | 
						||
| 
								 | 
							
									 * by the "options" set in individual [[items]]. The following special options are recognized:
							 | 
						||
| 
								 | 
							
									 *
							 | 
						||
| 
								 | 
							
									 * - tag: string, defaults to "li", the tag name of the item container tags.
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
									 */
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
									public $itemOptions = [];
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
								
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
									/**
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
									 * Renders the widget.
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
									 */
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
									public function run()
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
									{
							 | 
						||
| 
								 | 
							
										$options = $this->options;
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
										$tag = ArrayHelper::remove($options, 'tag', 'ul');
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
										echo Html::beginTag($tag, $options) . "\n";
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
										echo $this->renderItems() . "\n";
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
										echo Html::endTag($tag) . "\n";
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
										$this->registerWidget('sortable', SortableAsset::className());
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
									}
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
								
							 | 
						||
| 
								 | 
							
									/**
							 | 
						||
| 
								 | 
							
									 * Renders sortable items as specified on [[items]].
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
									 * @return string the rendering result.
							 | 
						||
| 
								 | 
							
									 * @throws InvalidConfigException.
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
									 */
							 | 
						||
| 
								 | 
							
									public function renderItems()
							 | 
						||
| 
								 | 
							
									{
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
										$items = [];
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
										foreach ($this->items as $item) {
							 | 
						||
| 
								 | 
							
											$options = $this->itemOptions;
							 | 
						||
| 
								 | 
							
											$tag = ArrayHelper::remove($options, 'tag', 'li');
							 | 
						||
| 
								 | 
							
											if (is_array($item)) {
							 | 
						||
| 
								 | 
							
												if (!isset($item['content'])) {
							 | 
						||
| 
								 | 
							
													throw new InvalidConfigException("The 'content' option is required.");
							 | 
						||
| 
								 | 
							
												}
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
												$options = array_merge($options, ArrayHelper::getValue($item, 'options', []));
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
												$tag = ArrayHelper::remove($options, 'tag', $tag);
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
												$items[] = Html::tag($tag, $item['content'], $options);
							 | 
						||
| 
								 | 
							
											} else {
							 | 
						||
| 
								 | 
							
												$items[] = Html::tag($tag, $item, $options);
							 | 
						||
| 
								 | 
							
											}
							 | 
						||
| 
								 | 
							
										}
							 | 
						||
| 
								 | 
							
										return implode("\n", $items);
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
									}
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
								}
							 |