diff options
author | Frankie B <git@diskfloppy.me> | 2023-07-12 01:16:52 +0100 |
---|---|---|
committer | Frankie B <git@diskfloppy.me> | 2023-07-12 01:16:52 +0100 |
commit | cb4a1f179bce25d9c9b88b0152072529ce46b717 (patch) | |
tree | 677e974a338823a691da2ba19ce80e42c3441b9c /resources/views/components/git.blade.php | |
parent | e0e179fa79e5b40a2ffe04f439bb41205c42a25b (diff) |
Add recent site updates (from git)
Diffstat (limited to 'resources/views/components/git.blade.php')
-rw-r--r-- | resources/views/components/git.blade.php | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/resources/views/components/git.blade.php b/resources/views/components/git.blade.php new file mode 100644 index 0000000..f87a00f --- /dev/null +++ b/resources/views/components/git.blade.php @@ -0,0 +1,48 @@ +@php +$api_root = app('config')->get('app')['api_root']; + +$commits = json_decode(file_get_contents($api_root.'/gitdata')); +$count = 0; + +function formatRelativeTime(DateTime $dateTime) { + $currentTimestamp = time(); + $dateTimeTimestamp = $dateTime->getTimestamp(); + $difference = $currentTimestamp - $dateTimeTimestamp; + + if ($difference < 60) { + return "just now"; + } elseif ($difference < 3600) { + $minutes = floor($difference / 60); + $suffix = ($minutes > 1) ? "s" : ""; + return $minutes . " minute" . $suffix . " ago"; + } elseif ($difference < 86400) { + $hours = floor($difference / 3600); + $suffix = ($hours > 1) ? "s" : ""; + return $hours . " hour" . $suffix . " ago"; + } elseif ($difference < 604800) { + $days = floor($difference / 86400); + $suffix = ($days > 1) ? "s" : ""; + return $days . " day" . $suffix . " ago"; + } else { + return $dateTime->format('Y-m-d H:i:s'); // Fallback to a specific format if desired + } +} +@endphp +<h1>Recent Site Updates</h1> + <table class="commits"> +@foreach ($commits as $commit) + + @if ($count >= 5) + </table> + @break + @endif + @php + $date = DateTime::createFromFormat("Y-m-d\TH:i:s\Z", $commit->author->date) + @endphp + <tr> + <td>•</td> + <td>{{ formatRelativeTime($date) }}</td> + <td><a href="{{ $commit->url }}">{{ $commit->message }}</a></td> + </tr> +@php $count++ @endphp +@endforeach |