feat: display time until pop is possible

This commit is contained in:
insects 2025-03-11 15:38:53 +01:00
parent 3ddbc2d4b1
commit fb9ed4546a
3 changed files with 39 additions and 1 deletions

View file

@ -57,6 +57,17 @@ main {
color: white; color: white;
} }
#nm-list section.missing_reqs {
background-color: #3D9970D2;
background-image: repeating-linear-gradient(
45deg,
rgba(61, 153, 112, 0.47),
rgba(61, 153, 112, 0.47) 10px,
#3D9970 10px,
#3D9970 20px
);
}
#nm-list section.popped { #nm-list section.popped {
background-color: #b5443a; background-color: #b5443a;
color: #63f0fd; color: #63f0fd;

View file

@ -1,2 +1,22 @@
module InstanceHelper module InstanceHelper
def is_day?
et = Clock.get_current_eorzea_time
et.between?(et.change(hour: 6), et.change(hour: 18))
end
def has_missing_reqs?(nm, forecast)
et = Clock.get_current_eorzea_time
if nm[:weather] && nm[:weather] != forecast[0][:curr_weather]
return true
end
if nm[:spawned_by][:weather] && nm[:spawned_by][:weather] != forecast[0][:curr_weather]
return true
end
if nm[:night_only] && is_day?
return true
end
if nm[:spawned_by][:night_only] && is_day?
return true
end
false
end
end end

View file

@ -1,7 +1,7 @@
<div id="nm-list"> <div id="nm-list">
<% APP_DATA[instance.zone.to_sym][:nms].each do |nm| %> <% APP_DATA[instance.zone.to_sym][:nms].each do |nm| %>
<% is_popped = instance.pops.filter { |pop| (Time.current - 120.minutes) <= pop.created_at }.any? { |pop| pop.name == nm[:name].parameterize } %> <% is_popped = instance.pops.filter { |pop| (Time.current - 120.minutes) <= pop.created_at }.any? { |pop| pop.name == nm[:name].parameterize } %>
<section class="<%= class_names(popped: is_popped) %>"> <section class="<%= class_names(popped: is_popped, missing_reqs: has_missing_reqs?(nm, forecast)) %>">
<div> <div>
<img src="<%= "/#{nm[:element]}.png" %>" alt="<%= nm[:element] %>" width="30" /> <img src="<%= "/#{nm[:element]}.png" %>" alt="<%= nm[:element] %>" width="30" />
</div> </div>
@ -38,6 +38,13 @@
<% next_pattern = forecast.find { |f| f[: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 <%= Weather.get_weather_name(nm[:weather]) %> in <%= ((next_pattern[:time] - Time.now.utc) / 1.minutes).floor %>m
<% end %> <% end %>
<% if nm[:spawned_by][:weather] && forecast[0][:curr_weather] != nm[:spawned_by][:weather] %>
<% next_pattern = forecast.find { |f| f[:curr_weather] == nm[:spawned_by][:weather] } %>
<%= Weather.get_weather_name(nm[:spawned_by][:weather]) %> in <%= ((next_pattern[:time] - Time.now.utc) / 1.minutes).floor %>m
<% end %>
<% if (nm[:night_only] || nm[:spawned_by][:night_only]) && is_day? %>
<div>Night in <%= ((Clock.to_earth_time(Clock.get_current_eorzea_time.change(hour: 18)) - Time.now.utc) / 1.minutes).floor %>m</div>
<% end %>
<% end %> <% end %>
</div> </div>
<div class="action needs_pwd"> <div class="action needs_pwd">