dawarich/app/views/trips/_path.html.erb

24 lines
833 B
Text
Raw Normal View History

2025-05-15 15:33:01 -04:00
<% if trip.path.present? %>
<div
id='map'
2025-05-19 13:00:34 -04:00
class="w-full h-full md:h-64 rounded-lg z-0"
2025-05-15 15:33:01 -04:00
data-controller="trips"
data-trips-target="container"
data-api_key="<%= trip.user.api_key %>"
data-user_settings="<%= trip.user.settings.to_json %>"
2025-05-15 16:25:47 -04:00
data-path="<%= trip.path.coordinates.to_json %>"
2025-05-15 15:33:01 -04:00
data-started_at="<%= trip.started_at %>"
data-ended_at="<%= trip.ended_at %>"
data-timezone="<%= Rails.configuration.time_zone %>">
2025-05-19 13:00:34 -04:00
<div data-trips-target="container" class="h-[25rem] w-full min-h-screen md:h-64">
2025-05-15 15:33:01 -04:00
</div>
</div>
<% else %>
<div class="flex items-center justify-center h-full">
<div class="text-center">
<p class="text-base-content/60">Trip path is being calculated...</p>
<div class="loading loading-spinner loading-lg mt-4"></div>
</div>
</div>
<% end %>