-
Notifications
You must be signed in to change notification settings - Fork 2
/
MorePager.php
118 lines (101 loc) · 2.38 KB
/
MorePager.php
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
<?php
/**
* Class MorePager
*
* @author Veaceslav Medvedev <slavcopost@gmail.com>
* @license http://www.opensource.org/licenses/bsd-license.php
* @version 0.1
*/
class MorePager extends CBasePager
{
/**
* @var string
*/
public $label;
/**
* @var array
*/
public $options = array();
/**
* @var bool
*/
public $prepend = false;
/**
* @var string
*/
public $listId;
/**
* @var string
*/
public $itemsCssClass = 'items';
/**
* @var string
*/
public $pagerCssClass = 'pager';
public function __construct($owner = null)
{
if ($owner instanceof CBaseListView) {
$this->listId = $owner->id;
$this->itemsCssClass = $owner->itemsCssClass;
$this->pagerCssClass = $owner->pagerCssClass;
}
parent::__construct($owner);
}
public function init()
{
parent::init();
if (!isset($this->options['id'])) {
$this->options['id'] = $this->getId();
}
}
public function run()
{
parent::run();
if (empty($this->listId)) {
throw new CException('Invalid list ID.');
}
$page = $this->getCurrentPage(false);
if ($page + 1 < $this->getPageCount()) {
$this->registerClientScript();
echo CHtml::link(
$this->label ?: Yii::t('yiiext', 'More'),
$this->createPageUrl($page + 1),
$this->options
);
}
}
protected function registerClientScript()
{
Yii::app()->getClientScript()->registerScript(
__CLASS__ . $this->getId(),
$this->clientScript(),
CClientScript::POS_READY
);
}
protected function clientScript()
{
$itemsSelector = CJavaScript::encode('.' . $this->itemsCssClass);
$pagerSelector = CJavaScript::encode('.' . $this->pagerCssClass);
$listId = CJavaScript::encode($this->listId);
$method = $this->prepend ? 'prepend' : 'append';
return <<<JS
$(document).on('click.morePager', '#' + {$listId} + ' ' + {$pagerSelector} + ' a', function(e) {
e.preventDefault();
$.fn.yiiListView.update({$listId}, {
url: this.href,
success: function(data) {
$.each($.fn.yiiListView.settings[{$listId}].ajaxUpdate, function(i, v) {
v = '#' + v;
var ctx = $(v, '<div>' + data + '</div>');
$({$itemsSelector}, v).{$method}($({$itemsSelector}, ctx).html());
$({$pagerSelector}, v).html($({$pagerSelector}, ctx).html());
});
if ($.fn.yiiListView.settings[{$listId}].afterAjaxUpdate != undefined) {
$.fn.yiiListView.settings[{$listId}].afterAjaxUpdate({$listId}, data);
}
}
});
});
JS;
}
}