]> git.immae.eu Git - github/shaarli/Shaarli.git/commitdiff
Added $links_per_page variable to template and display on default
authorKeith Carangelo <mail@kcaran.com>
Sat, 29 Aug 2020 15:02:59 +0000 (11:02 -0400)
committerKeith Carangelo <mail@kcaran.com>
Sat, 29 Aug 2020 15:02:59 +0000 (11:02 -0400)
application/render/PageBuilder.php
assets/default/scss/shaarli.scss
tpl/default/linklist.paging.html

index 7a7166732392a5726227bd33d769f0dd8abbc96e..217036392802f26f05801e22439df08eff0d9e13 100644 (file)
@@ -149,6 +149,8 @@ class PageBuilder
 
         $this->tpl->assign('formatter', $this->conf->get('formatter', 'default'));
 
+        $this->tpl->assign('links_per_page', $_SESSION['LINKS_PER_PAGE']);
+
         // To be removed with a proper theme configuration.
         $this->tpl->assign('conf', $this->conf);
     }
index 759dff29828f9bce824d7f5f9e185a23c6b70458..3d25d2313e5fdd2564a9ed01001531f7f3395d66 100644 (file)
@@ -618,6 +618,11 @@ body,
     color: $dark-grey;
   }
 
+  a.selected {
+    background: var(--main-color);
+    color: $white;
+  }
+
   input {
     &[type='text'] {
       @extend %linksperpage-button;
index 7b320eaff226a99b523209dc90dc6096d32174b3..009692b939187329b0da3757add2f2b82a1bdfbb 100644 (file)
 
     <div class="linksperpage pure-u-1-3">
       <div class="pure-u-0 pure-u-lg-visible">{'Links per page'|t}</div>
-      <a href="{$base_path}/links-per-page?nb=20">20</a>
-      <a href="{$base_path}/links-per-page?nb=50">50</a>
-      <a href="{$base_path}/links-per-page?nb=100">100</a>
+      <a href="{$base_path}/links-per-page?nb=20"
+                       {if="$links_per_page == 20"}class="selected"{/if}>20</a>
+      <a href="{$base_path}/links-per-page?nb=50"
+                       {if="$links_per_page == 50"}class="selected"{/if}>50</a>
+      <a href="{$base_path}/links-per-page?nb=100"
+                       {if="$links_per_page == 100"}class="selected"{/if}>100</a>
       <form method="GET" class="pure-u-0 pure-u-lg-visible" action="{$base_path}/links-per-page">
-        <input type="text" name="nb" placeholder="133">
+        <input type="text" name="nb" placeholder="133"
+                       {if="$links_per_page != 20 && $links_per_page != 50 && $links_per_page != 100"}
+                               value="{$links_per_page}"{/if}>
       </form>
       <a href="#" class="filter-off fold-all pure-u-0 pure-u-lg-visible" aria-label="{'Fold all'|t}" title="{'Fold all'|t}">
         <i class="fa fa-chevron-up" aria-hidden="true"></i>