diff --git a/app/assets/stylesheets/application.css b/app/assets/stylesheets/application.css index c2f4c80..ad2954e 100644 --- a/app/assets/stylesheets/application.css +++ b/app/assets/stylesheets/application.css @@ -180,6 +180,12 @@ span#password { flex-direction: column; align-items: center; margin: 10px 0; + gap: 10px; +} + +.time { + font-size: 20px; + font-weight: bold; } .weather-list { diff --git a/app/controllers/instance_controller.rb b/app/controllers/instance_controller.rb index 535829d..878e0da 100644 --- a/app/controllers/instance_controller.rb +++ b/app/controllers/instance_controller.rb @@ -14,6 +14,7 @@ class InstanceController < ApplicationController def show @instance = Instance.includes(:pops).find_by(public_id: show_instance_params) + @forecast = Weather.forecast(@instance.zone.to_sym) end def pop @@ -23,7 +24,8 @@ class InstanceController < ApplicationController pop = Pop.new(instance_id: parent_instance.id, name: nm) if pop.save @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 @@ -34,7 +36,8 @@ class InstanceController < ApplicationController if parent_instance.password == pwd Pop.delete_by(instance_id: parent_instance.id, name: nm) @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 diff --git a/app/views/instance/_list.html.erb b/app/views/instance/_list.html.erb index c506db9..f9681e8 100644 --- a/app/views/instance/_list.html.erb +++ b/app/views/instance/_list.html.erb @@ -33,6 +33,11 @@ + <% 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 %>