]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
add pagination to all and public
authorEvan Prodromou <evan@prodromou.name>
Wed, 28 May 2008 17:39:17 +0000 (13:39 -0400)
committerEvan Prodromou <evan@prodromou.name>
Wed, 28 May 2008 17:39:17 +0000 (13:39 -0400)
darcs-hash:20080528173917-84dde-b623d152de415de3790673b8a4eaafb584b23752.gz

actions/all.php
actions/public.php

index b929b6c1c1666030bd4fc0483509fec9d0d48111..70641a0f652afdee3fe0752e6eb9bf43d6ed67f4 100644 (file)
@@ -77,17 +77,42 @@ class AllAction extends StreamAction {
 
                $notice->orderBy('created DESC');
 
-               $page = $this->arg('page') || 1;
+               $page = ($this->arg('page')) ? ($this->arg('page')+0) : 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 width100');
                common_element('h2', 'notices', _t('Notices'));
 
-               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;
+                       }
+               }
+
+               if ($page > 1) {
+                       common_element_start('span', 'floatLeft width25');
+                       common_element('a', array('href' => common_local_url('all',
+                                                                                                                                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('all', 
+                                                                                                                                array('nickname' => $profile->nickname,
+                                                                                                                                          'page' => $page+1)),
+                                                                         'class' => 'older'),
+                                                  _t('Older'));
+                       common_element_end('span');
                }
 
                # XXX: show a link for the next page
index dc15a3a5e57ed9e1280e97fe319dc79edcdc5ace..89b12493a3ff241fc4a77c985960b62a692f1028 100644 (file)
@@ -26,7 +26,7 @@ class PublicAction extends StreamAction {
        function handle($args) {
                parent::handle($args);
 
-               $page = $this->arg('page') || 1;
+               $page = ($this->arg('page')) ? ($this->arg('page')+0) : 1;
 
                common_show_header(_t('Public timeline'), array($this, 'show_header'));
 
@@ -51,16 +51,41 @@ class PublicAction extends StreamAction {
                # XXX: filter out private notifications
 
                $notice->orderBy('created DESC');
-               $notice->limit((($page-1)*NOTICES_PER_PAGE), NOTICES_PER_PAGE);
+               
+               # We fetch one extra, to see if we need an "older" link
+               
+               $notice->limit((($page-1)*NOTICES_PER_PAGE), NOTICES_PER_PAGE + 1);
 
-               $notice->find();
+               $cnt = $notice->find();
 
                common_element_start('div', 'notices');
 
-               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;
+                       }
                }
 
+               if ($page > 1) {
+                       common_element_start('span', 'floatLeft width25');
+                       common_element('a', array('href' => common_local_url('public',
+                                                                                                                                array('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('public',
+                                                                                                                                array('page' => $page+1)),
+                                                                         'class' => 'older'),
+                                                  _t('Older'));
+                       common_element_end('span');
+               }
                common_element_end('div');
        }
 }