aboutsummaryrefslogtreecommitdiff
path: root/resources/views
diff options
context:
space:
mode:
Diffstat (limited to 'resources/views')
-rw-r--r--resources/views/components/git.blade.php48
-rw-r--r--resources/views/pages/home.blade.php3
2 files changed, 51 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>&bullet;</td>
+ <td>{{ formatRelativeTime($date) }}</td>
+ <td><a href="{{ $commit->url }}">{{ $commit->message }}</a></td>
+ </tr>
+@php $count++ @endphp
+@endforeach
diff --git a/resources/views/pages/home.blade.php b/resources/views/pages/home.blade.php
index f89b17a..6ad3013 100644
--- a/resources/views/pages/home.blade.php
+++ b/resources/views/pages/home.blade.php
@@ -19,6 +19,9 @@
<!-- WeatherData -->
@include('components.weather')
+ <!-- Site Updates -->
+ @include('components.git')
+
<h1>Contact</h1>
<p><strong>Mail</strong>:&nbsp;<a href="mailto:contact@diskfloppy.me">contact@diskfloppy.me</a><br/>
<strong>IRC</strong>:&nbsp;&nbsp;<a href="https://r-type.ca/page.php?id=1034">floppydisk @ r-type</a><br/>