From fb9ed4546a4d105ef9c8263014a0c08acd2cb312 Mon Sep 17 00:00:00 2001 From: insects Date: Tue, 11 Mar 2025 15:38:53 +0100 Subject: [PATCH] feat: display time until pop is possible --- app/assets/stylesheets/application.css | 11 +++++++++++ app/helpers/instance_helper.rb | 20 ++++++++++++++++++++ app/views/instance/_list.html.erb | 9 ++++++++- 3 files changed, 39 insertions(+), 1 deletion(-) diff --git a/app/assets/stylesheets/application.css b/app/assets/stylesheets/application.css index ad2954e..812bce2 100644 --- a/app/assets/stylesheets/application.css +++ b/app/assets/stylesheets/application.css @@ -57,6 +57,17 @@ main { 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 { background-color: #b5443a; color: #63f0fd; diff --git a/app/helpers/instance_helper.rb b/app/helpers/instance_helper.rb index 212ddac..abfe7da 100644 --- a/app/helpers/instance_helper.rb +++ b/app/helpers/instance_helper.rb @@ -1,2 +1,22 @@ 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 diff --git a/app/views/instance/_list.html.erb b/app/views/instance/_list.html.erb index f9681e8..9489f4c 100644 --- a/app/views/instance/_list.html.erb +++ b/app/views/instance/_list.html.erb @@ -1,7 +1,7 @@
<% 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 } %> -
+
" alt="<%= nm[:element] %>" width="30" />
@@ -38,6 +38,13 @@ <% 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 %> + <% 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? %> +
Night in <%= ((Clock.to_earth_time(Clock.get_current_eorzea_time.change(hour: 18)) - Time.now.utc) / 1.minutes).floor %>m
+ <% end %> <% end %>