Improve the backend to show comments

This commit is contained in:
Flavio Copes 2015-10-07 23:53:36 +02:00
parent adc6d19022
commit a178946aba
3 changed files with 112 additions and 49 deletions

View file

@ -53,7 +53,15 @@ class CommentsPlugin extends Plugin
'onDataTypeExcludeFromDataManagerPluginHook' => ['onDataTypeExcludeFromDataManagerPluginHook', 0],
]);
$this->grav['twig']->files = $this->getFilesOrderedByModifiedDate();
$page = $this->grav['uri']->param('page');
$comments = $this->getLastComments($page);
if ($page > 0) {
echo json_encode($comments);
exit();
}
$this->grav['twig']->comments = $comments;
}
}
@ -152,6 +160,48 @@ class CommentsPlugin extends Plugin
return $files;
}
private function getLastComments($page = 0) {
$number = 10;
$files = [];
$files = $this->getFilesOrderedByModifiedDate();
$comments = [];
foreach($files as $file) {
$data = Yaml::parse(file_get_contents($file->filePath));
for($i = 0; $i < count($data['comments']); $i++) {
$data['comments'][$i]['pageTitle'] = $data['title'];
$data['comments'][$i]['filePath'] = $file->filePath;
}
$comments = array_merge($comments, $data['comments']);
}
// Order comments by date
usort($comments, function($a, $b) {
return !($a['date'] > $b['date']);
});
$totalAvailable = count($comments);
$comments = array_slice($comments, $page * $number, $number);
$totalRetrieved = ($page + 1) * $number;
$hasMore = false;
if ($totalAvailable > $totalRetrieved) {
$hasMore = true;
}
return (object)array(
"comments" => $comments,
"page" => $page,
"totalAvailable" => $totalAvailable,
"totalRetrieved" => $totalRetrieved
);
}
/**
* Return the comments associated to the current route
*/