-
Notifications
You must be signed in to change notification settings - Fork 83
Expand file tree
/
Copy pathPagination.php
More file actions
281 lines (254 loc) · 5.67 KB
/
Pagination.php
File metadata and controls
281 lines (254 loc) · 5.67 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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
<?php
/**
* Pagination Component Class.
*
* @package Tutor\Components
* @author Themeum
* @link https://themeum.com
* @since 4.0.0
*/
namespace Tutor\Components;
use TUTOR\Icon;
defined( 'ABSPATH' ) || exit;
/**
* Class Pagination
*
* Responsible for rendering pagination component.
*
* // Example Usage :
*
* ```
* Pagination::make()
* ->current( 2 )
* ->total( 200 )
* ->limit( tutor_utils()->get_option( 'pagination_per_page' ) )
* ->prev( tutor_utils()->get_svg_icon( Icon::CHEVRON_LEFT_2 ) )
* ->next( tutor_utils()->get_svg_icon( Icon::CHEVRON_RIGHT_2 ) )
* ->render();
* ```
*
* @since 4.0.0
*/
class Pagination extends BaseComponent {
/**
* Current paginated value.
*
* @var int
*/
protected $pagination_current = 1;
/**
* Total paginated value.
*
* @var int
*/
protected $pagination_total = 1;
/**
* Pagination previous text.
*
* @var string
*/
protected $prev;
/**
* Pagination next text.
*
* @var string
*/
protected $next;
/**
* Pagination limit.
*
* @var int
*/
protected $pagination_limit = 10;
/**
* Whether to show all links or not.
*
* @var bool
*/
protected $show_all = false;
/**
* Pagination url format.
*
* @var string
*/
protected $format;
/**
* Set the current number of pagination's.
*
* @since 4.0.0
*
* @param int $current the current number of pagination's.
*
* @return self
*/
public function current( int $current = 1 ): self {
$this->pagination_current = $current;
return $this;
}
/**
* Set the total number of pagination's.
*
* @since 4.0.0
*
* @param int $total the current number of pagination's.
*
* @return self
*/
public function total( int $total = 1 ): self {
$this->pagination_total = $total;
return $this;
}
/**
* Set the pagination limit for each page.
*
* @since 4.0.0
*
* @param integer $limit the pagination limit.
*
* @return self
*/
public function limit( int $limit = 10 ): self {
$this->pagination_limit = $limit;
return $this;
}
/**
* Set pagination url format.
*
* @since 4.0.0
*
* @param string $format the url format.
*
* @return self
*/
public function format( string $format ): self {
$this->format = $format;
return $this;
}
/**
* Whether to show all pagination links.
*
* @since 4.0.0
*
* @param boolean $show_all Show all pagination links or not.
*
* @return self
*/
public function show_all( bool $show_all = false ): self {
$this->show_all = $show_all;
return $this;
}
/**
* Set previous text for pagination.
*
* @since 4.0.0
*
* @param string $prev the previous text.
*
* @return self
*/
public function prev( string $prev ): self {
$this->prev = $prev;
return $this;
}
/**
* Set next text for pagination.
*
* @since 4.0.0
*
* @param string $next the next text.
*
* @return self
*/
public function next( string $next ): self {
$this->next = $next;
return $this;
}
/**
* Render pagination info content.
*
* @since 4.0.0
*
* @return string the HTML content.
*/
protected function render_pagination_info(): string {
$per_page = max( ceil( $this->pagination_total / $this->pagination_limit ), 1 );
$current = max( intval( $this->pagination_current ), 1 );
return sprintf(
'<span class="tutor-pagination-info" aria-live="polite">
%s
<span class="tutor-pagination-current">%d</span>
%s
<span class="tutor-pagination-total">%d</span>
</span>',
__( 'Page', 'tutor' ),
$current,
__( 'of', 'tutor' ),
$per_page
);
}
/**
* Get Paginated links.
*
* @since 4.0.0
*
* @return array|null
*/
protected function get_paginated_links_list() {
$per_page = max( ceil( $this->pagination_total / $this->pagination_limit ), 1 );
$current = max( intval( $this->pagination_current ), 1 );
$format = ! empty( $this->format ) ? $this->format : '?current_page=%#%';
$prev_text = ! empty( $this->prev ) ? $this->prev : tutor_utils()->get_svg_icon( Icon::CHEVRON_LEFT_2 );
$next_text = ! empty( $this->next ) ? $this->next : tutor_utils()->get_svg_icon( Icon::CHEVRON_RIGHT_2 );
return paginate_links(
array(
'format' => $format,
'current' => $current,
'total' => $per_page,
'prev_text' => $prev_text,
'next_text' => $next_text,
'type' => 'array',
)
);
}
/**
* Get the final Pagination HTML Component.
*
* @since 4.0.0
*
* @return string
*/
public function get(): string {
if ( $this->pagination_total <= $this->pagination_limit ) {
return '';
}
$pagination_links = $this->get_paginated_links_list() ?? array();
$pagination_info = $this->render_pagination_info() ?? '';
$links = '';
$classes = array( 'tutor-pagination' );
if ( isset( $this->attributes['class'] ) ) {
$classes[] = $this->attributes['class'];
}
if ( count( $pagination_links ) ) {
foreach ( $pagination_links as $link ) {
$link = str_replace( 'page-numbers dots', 'tutor-pagination-ellipsis', $link );
$link = str_replace( 'page-numbers', 'tutor-pagination-item', $link );
$link = preg_replace( '/\bcurrent\b(?=[^"]*"[^"]*$)/', 'tutor-pagination-item-active', $link );
$link = str_replace( 'prev', 'tutor-pagination-item-prev', $link );
$link = str_replace( 'next', 'tutor-pagination-item-next', $link );
$link = str_replace( 'tutor-pagination-item-activeColor', 'currentColor', $link );
$links .= sprintf( '<li>%s</li>', $link );
}
}
return sprintf(
'<nav class="%s" role="navigation" aria-label="Pagination Navigation">
%s
<ul class="tutor-pagination-list">
%s
</ul>
</nav>',
esc_attr( implode( ' ', $classes ) ),
$pagination_info,
$links
);
}
}