From 6710137d9b63f3569be3f9f5dd7a38710c4e7cbb Mon Sep 17 00:00:00 2001 From: insects Date: Tue, 11 Mar 2025 15:19:32 +0100 Subject: [PATCH] feat: display the current ET --- app/assets/stylesheets/application.css | 6 ++++++ app/controllers/instance_controller.rb | 7 +++++-- app/views/instance/_list.html.erb | 5 +++++ app/views/instance/show.html.erb | 14 +++++++------- 4 files changed, 23 insertions(+), 9 deletions(-) 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 %>
diff --git a/app/views/instance/show.html.erb b/app/views/instance/show.html.erb index acdc8d7..f1b8b40 100644 --- a/app/views/instance/show.html.erb +++ b/app/views/instance/show.html.erb @@ -1,5 +1,5 @@
-
+
<%= link_to root_path do %>eureka.coffee logo<% end %> @@ -22,21 +22,21 @@
-
- <%= render partial: "list", locals: { instance: @instance } %> +
+ <%= render partial: "list", locals: { instance: @instance, forecast: @forecast } %>