Yii2 Bootstrap 3
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.

375 lines
13 KiB

13 years ago
<?php
/**
* @link http://www.yiiframework.com/
12 years ago
* @copyright Copyright (c) 2008 Yii Software LLC
13 years ago
* @license http://www.yiiframework.com/license/
*/
namespace yii\data;
12 years ago
12 years ago
use Yii;
11 years ago
use yii\base\InvalidConfigException;
use yii\base\Object;
use yii\helpers\Html;
11 years ago
use yii\helpers\Inflector;
12 years ago
13 years ago
/**
12 years ago
* Sort represents information relevant to sorting.
13 years ago
*
* When data needs to be sorted according to one or several attributes,
12 years ago
* we can use Sort to represent the sorting information and generate
13 years ago
* appropriate hyperlinks that can lead to sort actions.
*
* A typical usage example is as follows,
12 years ago
*
* ~~~
* function actionIndex()
* {
* $sort = new Sort(array(
* 'attributes' => array(
* 'age',
* 'name' => array(
11 years ago
* 'asc' => array('first_name' => Sort::ASC, 'last_name' => Sort::ASC),
* 'desc' => array('first_name' => Sort::DESC, 'last_name' => Sort::DESC),
* 'default' => Sort::DESC,
* 'label' => 'Name',
* ),
* ),
12 years ago
* ));
*
12 years ago
* $models = Article::find()
* ->where(array('status' => 1))
* ->orderBy($sort->orders)
12 years ago
* ->all();
*
11 years ago
* return $this->render('index', array(
12 years ago
* 'models' => $models,
* 'sort' => $sort,
* ));
* }
* ~~~
*
* View:
*
* ~~~
* // display links leading to sort actions
11 years ago
* echo $sort->link('name') . ' | ' . $sort->link('age');
*
12 years ago
* foreach ($models as $model) {
12 years ago
* // display $model here
* }
* ~~~
*
* In the above, we declare two [[attributes]] that support sorting: name and age.
* We pass the sort information to the Article query so that the query results are
* sorted by the orders specified by the Sort object. In the view, we show two hyperlinks
* that can lead to pages with the data sorted by the corresponding attributes.
*
13 years ago
* @author Qiang Xue <qiang.xue@gmail.com>
12 years ago
* @since 2.0
13 years ago
*/
class Sort extends Object
13 years ago
{
/**
* Sort ascending
*/
const ASC = false;
13 years ago
/**
* Sort descending
*/
const DESC = true;
13 years ago
/**
* @var boolean whether the sorting can be applied to multiple attributes simultaneously.
* Defaults to false, which means each time the data can only be sorted by one attribute.
*/
12 years ago
public $enableMultiSort = false;
12 years ago
13 years ago
/**
* @var array list of attributes that are allowed to be sorted. Its syntax can be
* described using the following example:
13 years ago
*
* ~~~
* array(
* 'age',
11 years ago
* 'name' => array(
* 'asc' => array('first_name' => Sort::ASC, 'last_name' => Sort::ASC),
* 'desc' => array('first_name' => Sort::DESC, 'last_name' => Sort::DESC),
11 years ago
* 'default' => Sort::DESC,
* 'label' => 'Name',
* ),
13 years ago
* )
* ~~~
13 years ago
*
* In the above, two attributes are declared: "age" and "user". The "age" attribute is
* a simple attribute which is equivalent to the following:
13 years ago
*
* ~~~
* 'age' => array(
* 'asc' => array('age' => Sort::ASC),
* 'desc' => array('age' => Sort::DESC),
11 years ago
* 'default' => Sort::ASC,
* 'label' => Inflector::camel2words('age'),
13 years ago
* )
* ~~~
13 years ago
*
* The "user" attribute is a composite attribute:
*
* - The "user" key represents the attribute name which will appear in the URLs leading
* to sort actions. Attribute names cannot contain characters listed in [[separators]].
* - The "asc" and "desc" elements specify how to sort by the attribute in ascending
* and descending orders, respectively. Their values represent the actual columns and
* the directions by which the data should be sorted by.
11 years ago
* - The "default" element specifies by which direction the attribute should be sorted
* if it is not currently sorted (the default value is ascending order).
* - The "label" element specifies what label should be used when calling [[link()]] to create
* a sort link. If not set, [[Inflector::camel2words()]] will be called to get a label.
11 years ago
*
* Note that if the Sort object is already created, you can only use the full format
* to configure every attribute. Each attribute must include these elements: asc, desc and label.
13 years ago
*/
12 years ago
public $attributes = array();
13 years ago
/**
* @var string the name of the parameter that specifies which attributes to be sorted
13 years ago
* in which direction. Defaults to 'sort'.
* @see params
13 years ago
*/
12 years ago
public $sortVar = 'sort';
13 years ago
/**
* @var string the tag appeared in the [[sortVar]] parameter that indicates the attribute should be sorted
13 years ago
* in descending order. Defaults to 'desc'.
*/
12 years ago
public $descTag = 'desc';
13 years ago
/**
* @var array the order that should be used when the current request does not specify any order.
* The array keys are attribute names and the array values are the corresponding sort directions. For example,
13 years ago
*
* ~~~
* array(
* 'name' => Sort::ASC,
* 'create_time' => Sort::DESC,
13 years ago
* )
* ~~~
13 years ago
*
* @see attributeOrders
13 years ago
*/
11 years ago
public $defaultOrder;
13 years ago
/**
12 years ago
* @var string the route of the controller action for displaying the sorted contents.
* If not set, it means using the currently requested route.
13 years ago
*/
12 years ago
public $route;
13 years ago
/**
* @var array separators used in the generated URL. This must be an array consisting of
* two elements. The first element specifies the character separating different
* attributes, while the second element specifies the character separating attribute name
11 years ago
* and the corresponding sort direction. Defaults to `array('.', '-')`.
13 years ago
*/
11 years ago
public $separators = array('.', '-');
13 years ago
/**
* @var array parameters (name => value) that should be used to obtain the current sort directions
12 years ago
* and to create new sort URLs. If not set, $_GET will be used instead.
*
* The array element indexed by [[sortVar]] is considered to be the current sort directions.
* If the element does not exist, the [[defaults|default order]] will be used.
*
* @see sortVar
11 years ago
* @see defaultOrder
13 years ago
*/
public $params;
11 years ago
/**
* @var \yii\web\UrlManager the URL manager used for creating sort URLs. If not set,
* the "urlManager" application component will be used.
*/
public $urlManager;
13 years ago
/**
11 years ago
* Normalizes the [[attributes]] property.
*/
public function init()
{
$attributes = array();
foreach ($this->attributes as $name => $attribute) {
11 years ago
if (!is_array($attribute)) {
11 years ago
$attributes[$attribute] = array(
'asc' => array($attribute => self::ASC),
'desc' => array($attribute => self::DESC),
'label' => Inflector::camel2words($attribute),
);
11 years ago
} elseif (!isset($attribute['asc'], $attribute['desc'], $attribute['label'])) {
$attributes[$name] = array_merge(array(
'asc' => array($name => self::ASC),
'desc' => array($name => self::DESC),
'label' => Inflector::camel2words($name),
), $attribute);
} else {
$attributes[$name] = $attribute;
11 years ago
}
}
$this->attributes = $attributes;
}
/**
* Returns the columns and their corresponding sort directions.
11 years ago
* @param boolean $recalculate whether to recalculate the sort directions
* @return array the columns (keys) and their corresponding sort directions (values).
* This can be passed to [[\yii\db\Query::orderBy()]] to construct a DB query.
13 years ago
*/
11 years ago
public function getOrders($recalculate = false)
13 years ago
{
11 years ago
$attributeOrders = $this->getAttributeOrders($recalculate);
$orders = array();
foreach ($attributeOrders as $attribute => $direction) {
11 years ago
$definition = $this->attributes[$attribute];
$columns = $definition[$direction === self::ASC ? 'asc' : 'desc'];
foreach ($columns as $name => $dir) {
$orders[$name] = $dir;
13 years ago
}
}
return $orders;
13 years ago
}
private $_attributeOrders;
13 years ago
/**
* Returns the currently requested sort information.
12 years ago
* @param boolean $recalculate whether to recalculate the sort directions
13 years ago
* @return array sort directions indexed by attribute names.
* Sort direction can be either [[Sort::ASC]] for ascending order or
* [[Sort::DESC]] for descending order.
13 years ago
*/
public function getAttributeOrders($recalculate = false)
13 years ago
{
if ($this->_attributeOrders === null || $recalculate) {
$this->_attributeOrders = array();
12 years ago
$params = $this->params === null ? $_GET : $this->params;
if (isset($params[$this->sortVar]) && is_scalar($params[$this->sortVar])) {
$attributes = explode($this->separators[0], $params[$this->sortVar]);
12 years ago
foreach ($attributes as $attribute) {
12 years ago
$descending = false;
12 years ago
if (($pos = strrpos($attribute, $this->separators[1])) !== false) {
12 years ago
if ($descending = (substr($attribute, $pos + 1) === $this->descTag)) {
12 years ago
$attribute = substr($attribute, 0, $pos);
}
13 years ago
}
11 years ago
if (isset($this->attributes[$attribute])) {
$this->_attributeOrders[$attribute] = $descending;
12 years ago
if (!$this->enableMultiSort) {
return $this->_attributeOrders;
12 years ago
}
13 years ago
}
}
}
11 years ago
if (empty($this->_attributeOrders) && is_array($this->defaultOrder)) {
$this->_attributeOrders = $this->defaultOrder;
12 years ago
}
13 years ago
}
return $this->_attributeOrders;
13 years ago
}
/**
* Returns the sort direction of the specified attribute in the current request.
* @param string $attribute the attribute name
* @return boolean|null Sort direction of the attribute. Can be either [[Sort::ASC]]
* for ascending order or [[Sort::DESC]] for descending order. Null is returned
* if the attribute is invalid or does not need to be sorted.
13 years ago
*/
public function getAttributeOrder($attribute)
13 years ago
{
11 years ago
$orders = $this->getAttributeOrders();
return isset($orders[$attribute]) ? $orders[$attribute] : null;
13 years ago
}
/**
11 years ago
* Generates a hyperlink that links to the sort action to sort by the specified attribute.
* Based on the sort direction, the CSS class of the generated hyperlink will be appended
* with "asc" or "desc".
* @param string $attribute the attribute name by which the data should be sorted by.
* @param array $options additional HTML attributes for the hyperlink tag
* @return string the generated hyperlink
* @throws InvalidConfigException if the attribute is unknown
*/
public function link($attribute, $options = array())
{
if (($direction = $this->getAttributeOrder($attribute)) !== null) {
$class = $direction ? 'desc' : 'asc';
if (isset($options['class'])) {
$options['class'] .= ' ' . $class;
} else {
$options['class'] = $class;
}
}
$url = $this->createUrl($attribute);
11 years ago
$options['data-sort'] = $this->createSortVar($attribute);
return Html::a($this->attributes[$attribute]['label'], $url, $options);
11 years ago
}
/**
12 years ago
* Creates a URL for sorting the data by the specified attribute.
* This method will consider the current sorting status given by [[attributeOrders]].
12 years ago
* For example, if the current page already sorts the data by the specified attribute in ascending order,
* then the URL created will lead to a page that sorts the data by the specified attribute in descending order.
* @param string $attribute the attribute name
11 years ago
* @return string the URL for sorting. False if the attribute is invalid.
* @throws InvalidConfigException if the attribute is unknown
* @see attributeOrders
12 years ago
* @see params
13 years ago
*/
12 years ago
public function createUrl($attribute)
13 years ago
{
11 years ago
$params = $this->params === null ? $_GET : $this->params;
$params[$this->sortVar] = $this->createSortVar($attribute);
$route = $this->route === null ? Yii::$app->controller->getRoute() : $this->route;
$urlManager = $this->urlManager === null ? Yii::$app->getUrlManager() : $this->urlManager;
return $urlManager->createUrl($route, $params);
}
/**
* Creates the sort variable for the specified attribute.
* The newly created sort variable can be used to create a URL that will lead to
* sorting by the specified attribute.
* @param string $attribute the attribute name
* @return string the value of the sort variable
* @throws InvalidConfigException if the specified attribute is not defined in [[attributes]]
*/
public function createSortVar($attribute)
{
11 years ago
if (!isset($this->attributes[$attribute])) {
11 years ago
throw new InvalidConfigException("Unknown attribute: $attribute");
12 years ago
}
11 years ago
$definition = $this->attributes[$attribute];
$directions = $this->getAttributeOrders();
12 years ago
if (isset($directions[$attribute])) {
$descending = !$directions[$attribute];
unset($directions[$attribute]);
} else {
11 years ago
$descending = !empty($definition['default']);
12 years ago
}
if ($this->enableMultiSort) {
$directions = array_merge(array($attribute => $descending), $directions);
} else {
$directions = array($attribute => $descending);
}
12 years ago
$sorts = array();
foreach ($directions as $attribute => $descending) {
$sorts[] = $descending ? $attribute . $this->separators[1] . $this->descTag : $attribute;
}
11 years ago
return implode($this->separators[0], $sorts);
13 years ago
}
/**
* Returns a value indicating whether the sort definition supports sorting by the named attribute.
* @param string $name the attribute name
* @return boolean whether the sort definition supports sorting by the named attribute.
*/
public function hasAttribute($name)
{
return isset($this->attributes[$name]);
}
}