Where-in-the-World-is-Ben/resources/views/partials/checkins-list.blade.php

31 lines
1.5 KiB
PHP
Raw Normal View History

2022-11-28 19:46:12 +00:00
@foreach($checkinsList as $checkin)
<li>
<details class="checkin" id="{{ $checkin->id }}" ontoggle="toggleCheckin(this.open, this.id)">
<summary class="checkin__summary">
<h2 class="checkin__title">{!! $checkin->title ?? "<i>Untitled</i>" !!}</h2>
<p class="checkin__meta">{!! render_date_difference($checkin->date) !!}</p>
</summary>
@if($checkin->note)
2022-11-28 20:40:00 +00:00
@if(preg_match("/\[\[([^\]]+)\]\]/", $checkin->note, $filepath))
@if(preg_match("/\.webm/", $filepath[1]))
2022-11-28 22:24:04 +00:00
<video class="popup__video" controls>
<source src="{{ url("/videos/$filepath[1]") }}" type="video/webm">
<p>Your browser doesn't support HTML video. Here is a <a href="{{ url("/videos/$filepath[1]") }}">link to the video</a> instead.</p>
2022-11-28 20:26:16 +00:00
</video>
2022-11-28 20:40:00 +00:00
@elseif(preg_match("/\.ogg/", $filepath[1]))
2022-11-28 22:24:04 +00:00
<audio class="popup__audio" controls>
<source src="{{ url("/audio/$filepath[1]") }}" type="audio/ogg">
<p>Download <a href="{{ url("/audio/$filepath[1]") }}">OGG</a> audio.</p>
2022-11-28 20:26:16 +00:00
</audio>
@endif
@else
{!! $checkin->note !!}
@endif
2022-11-28 19:46:12 +00:00
@endif
@if($checkin->image_url)
<img class="popup__image" loading="lazy" src="{{ $checkin->image_url }}">
@endif
</details>
</li>
@endforeach