blob: 80dd4812ae58a324ffa90d0bdbdf935512f3855e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<?php
namespace App\Listeners;
use TightenCo\Jigsaw\Jigsaw;
class GenerateIndex
{
public function handle(Jigsaw $jigsaw)
{
$data = collect($jigsaw->getCollection('posts')->map(function ($page) use ($jigsaw) {
return [
'title' => $page->title,
'categories' => $page->categories,
'link' => rightTrimPath($jigsaw->getConfig('baseUrl')) . $page->getPath(),
'snippet' => $page->getExcerpt(),
];
})->values());
file_put_contents($jigsaw->getDestinationPath() . '/index.json', json_encode($data));
}
}
|