<% nms_with_popped = APP_DATA[instance.zone.to_sym][:nms].map {|nm| is_popped = instance.pops.filter { |pop| (Time.now.utc - 120.minutes) <= pop.created_at }.any? { |pop| pop.name == nm[:name].parameterize } { is_popped: is_popped, **nm } } %> <% content_for :title, "#{instance.zone}, #{nms_with_popped.filter { |n| !n[:is_popped] && !has_missing_reqs?(n, forecast) }.count} NMs avail. | eureka.coffee" %> <% nms_with_popped.each do |nm| %>
" alt="<%= nm[:element] %>" width="30" />

LV<%= nm[:level].to_s.rjust(2, "0") %> <% if nm[:x] and nm[:y] %> <%= render partial: "map_icon" %>
<% end %> <%= nm[:name] %> <% if nm[:drops] %> <% end %> <% if nm[:weather] %> <% end %>

« <%= nm[:spawned_by][:name] %> <% if nm[:spawned_by][:night_only] %> 🌙 <% end %> <% if nm[:spawned_by][:weather] %> <% end %> LV<%= nm[:spawned_by][:level].to_s.rjust(2, "0") %>
<% if nm[:is_popped] %>
<% pop = instance.pops.find { |pop| (Time.now.utc - 120.minutes) <= pop.created_at and pop.name == nm[:name].parameterize } %> <% mins = ActiveSupport::Duration.build(Time.current - pop.created_at) %>
» <%= (120.minutes - mins).in_minutes.ceil %>m
adjust pop time <%= form_with url: adjust_pop_path(instance: instance.public_id, nm: nm[:name].parameterize), class: "action-form", html: {"hx-boost": true, "hx-replace-url": false, "hx-target": "#nm-list", "hx-select": "#nm-list", "hx-swap": "outerHTML:w "} do |f| %> <%= f.number_field :mins, placeholder: "minutes ago" %> <%= f.submit "change" %> <% end %>
<% end %>
<% if nm[:is_popped] && has_missing_reqs?(nm, forecast) %> » <% end %> <% 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).ceil %>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).ceil %>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).ceil %>m <% end %>
<% if nm[:is_popped] %> <% else %> <% end %>
<% end %> <%= form_with url: clone_instance_path(instance: @instance.public_id), html: { style: "display: inline-block;" } do |f| %> <%= f.submit "clone instance" %> <% end %>