feat: display the current ET

This commit is contained in:
insects 2025-03-11 15:19:32 +01:00
parent 705e7b1dc0
commit 6710137d9b
4 changed files with 23 additions and 9 deletions

View file

@ -180,6 +180,12 @@ span#password {
flex-direction: column; flex-direction: column;
align-items: center; align-items: center;
margin: 10px 0; margin: 10px 0;
gap: 10px;
}
.time {
font-size: 20px;
font-weight: bold;
} }
.weather-list { .weather-list {

View file

@ -14,6 +14,7 @@ class InstanceController < ApplicationController
def show def show
@instance = Instance.includes(:pops).find_by(public_id: show_instance_params) @instance = Instance.includes(:pops).find_by(public_id: show_instance_params)
@forecast = Weather.forecast(@instance.zone.to_sym)
end end
def pop def pop
@ -23,7 +24,8 @@ class InstanceController < ApplicationController
pop = Pop.new(instance_id: parent_instance.id, name: nm) pop = Pop.new(instance_id: parent_instance.id, name: nm)
if pop.save if pop.save
@instance = Instance.includes(:pops).find_by(public_id: instance_id) @instance = Instance.includes(:pops).find_by(public_id: instance_id)
render partial: "list", locals: { instance: @instance } @forecast = Weather.forecast(@instance.zone.to_sym)
render partial: "list", locals: { instance: @instance, forecast: @forecast }
end end
end end
end end
@ -34,7 +36,8 @@ class InstanceController < ApplicationController
if parent_instance.password == pwd if parent_instance.password == pwd
Pop.delete_by(instance_id: parent_instance.id, name: nm) Pop.delete_by(instance_id: parent_instance.id, name: nm)
@instance = Instance.includes(:pops).find_by(public_id: instance_id) @instance = Instance.includes(:pops).find_by(public_id: instance_id)
render partial: "list", locals: { instance: @instance } @forecast = Weather.forecast(@instance.zone.to_sym)
render partial: "list", locals: { instance: @instance, forecast: @forecast }
end end
end end

View file

@ -33,6 +33,11 @@
<span class="progress-container"> <span class="progress-container">
<span class="progress-bar" style="width: <%= (mins.in_minutes / 120) * 100 %>%"></span> <span class="progress-bar" style="width: <%= (mins.in_minutes / 120) * 100 %>%"></span>
</span> </span>
<% else %>
<% if nm[:weather] && forecast[0][:curr_weather] != nm[:weather] %>
<% next_pattern = forecast.find { |f| f[:curr_weather] == nm[:weather] } %>
<%= Weather.get_weather_name(nm[:weather]) %> in <%= ((next_pattern[:time] - Time.now.utc) / 1.minutes).floor %>m
<% end %>
<% end %> <% end %>
</div> </div>
<div class="action needs_pwd"> <div class="action needs_pwd">

View file

@ -1,5 +1,5 @@
<div id="public_id" data-content="<%= @instance.public_id %>"></div> <div id="public_id" data-content="<%= @instance.public_id %>"></div>
<div hx-get="" hx-trigger="every 30s" hx-swap="innerHTML" hx-select="#nm-list" hx-target="#nm-list"> <div hx-get="" hx-trigger="every 15s" hx-swap="outerHTML" hx-select="#container" hx-target="#container">
<header> <header>
<div class="title"> <div class="title">
<%= link_to root_path do %><img src="/icon.png" width="50" alt="eureka.coffee logo" /><% end %> <%= link_to root_path do %><img src="/icon.png" width="50" alt="eureka.coffee logo" /><% end %>
@ -22,21 +22,21 @@
</div> </div>
</header> </header>
<main> <main id="container">
<%= render partial: "list", locals: { instance: @instance } %> <%= render partial: "list", locals: { instance: @instance, forecast: @forecast } %>
<div class="sidebar"> <div class="sidebar">
<div class="time">ET <%= Clock.display_ez_time(Clock.get_current_eorzea_time) %></div>
<div class="weather-list"> <div class="weather-list">
<% forecast = Weather.forecast(@instance.zone.to_sym) %>
<div class="weather"> <div class="weather">
<img src="/weather/<%= forecast[0][:curr_weather] %>.png" width="25" title="<%= forecast[0][:weather_name] %>" /> <img src="/weather/<%= @forecast[0][:curr_weather] %>.png" width="25" title="<%= @forecast[0][:weather_name] %>" />
<div>now</div> <div>now</div>
</div> </div>
<% 4.times do |i| %> <% 4.times do |i| %>
» »
<div class="weather"> <div class="weather">
<img src="/weather/<%= forecast[i + 1][:curr_weather] %>.png" width="25" title="<%= forecast[i + 1][:weather_name] %>" /> <img src="/weather/<%= @forecast[i + 1][:curr_weather] %>.png" width="25" title="<%= @forecast[i + 1][:weather_name] %>" />
<div><%= ((forecast[i + 1][:time] - Time.now.utc) / 1.minutes).floor %>m</div> <div><%= ((@forecast[i + 1][:time] - Time.now.utc) / 1.minutes).floor %>m</div>
</div> </div>
<% end %> <% end %>
</div> </div>