From 3e6e6e4c40741269d997d9b0bed151f551384aa3 Mon Sep 17 00:00:00 2001 From: Christian Weiske Date: Sun, 7 Oct 2018 14:05:43 +0200 Subject: Lists can be sorted by title and date now Resolves: https://github.com/cweiske/grauphel/issues/59 --- controller/guicontroller.php | 33 +++++++++++++++++++++++++++------ 1 file changed, 27 insertions(+), 6 deletions(-) (limited to 'controller') diff --git a/controller/guicontroller.php b/controller/guicontroller.php index ef109a7..cac2f29 100644 --- a/controller/guicontroller.php +++ b/controller/guicontroller.php @@ -171,12 +171,29 @@ class GuiController extends Controller { $rawtag = $this->unescapeTagFromUrl($rawtag); $notes = $this->getNotes()->loadNotesOverview(null, $rawtag, true); - usort( - $notes, - function($noteA, $noteB) { - return strcmp($noteA['title'], $noteB['title']); - } - ); + + if (!isset($_GET['sortby'])) { + $_GET['sortby'] = 'title'; + } + + switch ($_GET['sortby']) { + case 'title': + usort( + $notes, + function($noteA, $noteB) { + return strcasecmp($noteA['title'], $noteB['title']); + } + ); + break; + case 'date': + usort( + $notes, + function($noteA, $noteB) { + return strcmp($noteB['last-change-date'], $noteA['last-change-date']); + } + ); + break; + } foreach ($notes as &$note) { $diffInDays = intval( @@ -195,6 +212,10 @@ class GuiController extends Controller 'tag' => $this->getPrettyTagName($rawtag), 'rawtag' => $rawtag, 'notes' => $notes, + 'tagUrl' => $this->urlGen->linkToRoute( + 'grauphel.gui.tag', + array('rawtag' => $this->escapeTagForUrl($rawtag)) + ), ) ); $this->addGlobalVars($res); -- cgit v1.2.3