feat: support adjusting pop time

This commit is contained in:
insects 2025-03-12 13:08:05 +01:00
parent 54d18f4968
commit 5914b85fc6
5 changed files with 37 additions and 0 deletions

View file

@ -288,3 +288,11 @@ span#password {
font-weight: normal; font-weight: normal;
margin-bottom: 5px; margin-bottom: 5px;
} }
summary {
font-size: 12px;
}
summary:hover {
cursor: pointer;
}

View file

@ -80,6 +80,20 @@ class InstanceController < ApplicationController
end end
end end
def adjust_pop
instance_id, nm, pwd = pop_instance_params
parent_instance = Instance.find_by(public_id: instance_id)
if params[:mins] && params[:pwd] == parent_instance.password
ts = Time.now.utc
pop = Pop.find_by(instance_id: parent_instance.id, name: nm)
pop.created_at = Time.at(ts - params[:mins].to_i.minutes).utc
pop.save
@instance = Instance.includes(:pops, :fairies).find_by(public_id: instance_id)
@forecast = Weather.forecast(@instance.zone.to_sym)
render partial: "list", locals: { instance: @instance, forecast: @forecast }
end
end
def reset def reset
instance_id, nm, pwd = pop_instance_params instance_id, nm, pwd = pop_instance_params
parent_instance = Instance.find_by(public_id: instance_id) parent_instance = Instance.find_by(public_id: instance_id)

View file

@ -19,6 +19,12 @@ function checkPwd() {
btn.setAttribute("hx-post", `${oldUrl}&pwd=${pwd}`); btn.setAttribute("hx-post", `${oldUrl}&pwd=${pwd}`);
}); });
const forms = document.querySelectorAll(".action-form");
forms.forEach(form => {
const oldUrl = form.getAttribute("action");
form.setAttribute("action", `${oldUrl}&pwd=${pwd}`);
});
const pwd_el = document.getElementById("password"); const pwd_el = document.getElementById("password");
pwd_el.innerHTML = pwd; pwd_el.innerHTML = pwd;
} }

View file

@ -36,6 +36,14 @@
<span class="progress-container"> <span class="progress-container">
<span class="progress-bar" style="width: <%= (mins.in_minutes / 120) * 100 %>%"></span> <span class="progress-bar" style="width: <%= (mins.in_minutes / 120) * 100 %>%"></span>
</span> </span>
<details class="needs_pwd" hx-preserve id="change-form-<%= nm[:name].parameterize %>">
<summary>adjust pop time</summary>
<%= 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 %>
</details>
<% else %> <% else %>
<% if nm[:weather] && forecast[0][:curr_weather] != nm[:weather] %> <% if nm[:weather] && forecast[0][:curr_weather] != nm[:weather] %>
<% next_pattern = forecast.find { |f| f[:curr_weather] == nm[:weather] } %> <% next_pattern = forecast.find { |f| f[:curr_weather] == nm[:weather] } %>

View file

@ -5,6 +5,7 @@ Rails.application.routes.draw do
post "/new", to: "instance#create", as: :new_instance post "/new", to: "instance#create", as: :new_instance
post "/new_from_fe", to: "instance#create_from_fe", as: :new_from_fe post "/new_from_fe", to: "instance#create_from_fe", as: :new_from_fe
post "/pop", to: "instance#pop", as: :pop_in_instance post "/pop", to: "instance#pop", as: :pop_in_instance
post "/pop/adjust", to: "instance#adjust_pop", as: :adjust_pop
post "/reset", to: "instance#reset", as: :reset_in_instance post "/reset", to: "instance#reset", as: :reset_in_instance
post "/auth", to: "instance#authenticate", as: :authenticate_to_instance post "/auth", to: "instance#authenticate", as: :authenticate_to_instance
post "/fairy/mark", to: "fairy#mark", as: :mark_fairy post "/fairy/mark", to: "fairy#mark", as: :mark_fairy