issue: count number of replies in overview
[minimedit.git] / issue / index.php
index 6e13b13c99e7a54c84524f404f3c7daa4849a174..f950861f98c4181e459e9cb1cbe925b1637baf7c 100644 (file)
@@ -13,7 +13,6 @@ if ($id) {
 
        $Article->title .= ': '.htmlspecialchars($Issue->subject);
        print "<h2>{$Article->title}</h2>\n";
-       print $Issue->body;
        $author = $Issue->author ? new User('profile/'.$Issue->author, FALSE) : NULL;
        printf('<p><em>%s</em>%s <small class=date>%s</small></p>'."\n",
                'Geplaatst',
@@ -31,6 +30,7 @@ if ($id) {
                        showdate(preg_split('/\D/', $Issue->closed))
                );
        }
+       print $Issue->body;
        $Args = "/$id";  # minimal reference
        print placeholder_include('reply');
        return;
@@ -51,7 +51,9 @@ if ($_POST) {
                $_POST = [];
 }
 
-$sql = 'SELECT * FROM issues WHERE page = ?';
+$cols = "*, (SELECT count(*) FROM comments WHERE"
+       . " page=i.page||'/'||i.id AND message IS NOT NULL) AS replycount";
+$sql = "SELECT $cols FROM issues i WHERE page = ?";
 if (isset($_GET['open'])) {
        $sql .= ' AND closed IS NULL';
 }
@@ -61,11 +63,15 @@ $query = $Db->query($sql, [$Page]);
 ob_start();
 print '<ul>';
 while ($row = $query->fetch()) {
-       printf('<li><a href="%s">%s <small class="date">%s</small></a>',
+       printf('<li><a href="%s">%s <small class="date">%s</small>%s</a>',
                "/$Page/{$row->id}/{$row->link}",
                sprintf($row->closed ? '<strike>%s</strike>' : '%s',
                        htmlspecialchars($row->subject)),
-               showdate(array_slice(preg_split('/\D/', $row->updated), 0, 3))
+               showdate(array_slice(preg_split('/\D/', $row->updated), 0, 3)),
+               implode(' ', [
+                       $row->replycount ? sprintf('<span class=right>+%d</span>', $row->replycount) : '',
+                       isset($row->assign) ? ' <em class="right">'.$row->assign.'</em>' : '',
+               ])
        );
        print "</li>\n";
 }