From dc37b88e543149827cc141b0c44fc6e162c655ff Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Wed, 28 May 2008 13:31:29 -0400 Subject: paginate on showstream darcs-hash:20080528173129-84dde-8f0537b20173afa895aeb76e503d76cc24fdae41.gz --- actions/showstream.php | 35 ++++++++++++++++++++++++++++++----- 1 file changed, 30 insertions(+), 5 deletions(-) (limited to 'actions/showstream.php') diff --git a/actions/showstream.php b/actions/showstream.php index 7ac036de6..665ab87bf 100644 --- a/actions/showstream.php +++ b/actions/showstream.php @@ -263,19 +263,44 @@ class ShowstreamAction extends StreamAction { $page = $this->arg('page') || 1; - $notice->limit((($page-1)*NOTICES_PER_PAGE), NOTICES_PER_PAGE); + $notice->limit((($page-1)*NOTICES_PER_PAGE), NOTICES_PER_PAGE + 1); - $notice->find(); + $cnt = $notice->find(); common_element_start('div', 'notices width66 floatLeft'); common_element_start('ul', 'bigLinks'); - - while ($notice->fetch()) { - $this->show_notice($notice); + + for ($i = 0; $i < min($cnt, NOTICES_PER_PAGE); $i++) { + if ($notice->fetch()) { + $this->show_notice($notice); + } else { + // shouldn't happen! + break; + } } common_element_end('ul'); + + if ($page > 1) { + common_element_start('span', 'floatLeft width25'); + common_element('a', array('href' => common_local_url('showstream', + array('nickname' => $profile->nickname, + 'page' => $page-1)) + 'class' => 'newer') + _t('Newer')); + common_element_end('span'); + } + + if ($cnt > NOTICES_PER_PAGE) { + common_element_start('span', 'floatRight width25'); + common_element('a', array('href' => common_local_url('showstream', + array('nickname' => $profile->nickname, + 'page' => $page+1)) + 'class' => 'older') + _t('Older')); + common_element_end('span'); + } # XXX: show a link for the next page common_element_end('div'); -- cgit v1.2.3-54-g00ecf