feat: implement suggesting a fairy despawned
This commit is contained in:
parent
f9527c330c
commit
5ed1cc91ae
4 changed files with 39 additions and 10 deletions
|
@ -131,11 +131,11 @@ button.action:hover {
|
||||||
}
|
}
|
||||||
|
|
||||||
.needs_pwd {
|
.needs_pwd {
|
||||||
display: none;
|
display: none !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.needs_pwd.shown {
|
.needs_pwd.shown {
|
||||||
display: block;
|
display: block !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.action.shown {
|
.action.shown {
|
||||||
|
@ -265,3 +265,10 @@ span#password {
|
||||||
.fairy-dot.unclaimed:hover {
|
.fairy-dot.unclaimed:hover {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.despawn-note {
|
||||||
|
color: tomato;
|
||||||
|
font-size: 10px;
|
||||||
|
font-weight: normal;
|
||||||
|
margin-bottom: 5px;
|
||||||
|
}
|
||||||
|
|
|
@ -2,15 +2,13 @@ class FairyController < ApplicationController
|
||||||
def mark
|
def mark
|
||||||
instance_id, location = mark_params
|
instance_id, location = mark_params
|
||||||
instance = Instance.find_by(public_id: instance_id)
|
instance = Instance.find_by(public_id: instance_id)
|
||||||
fairy = Fairy.new(location: location, instance_id: instance.id)
|
if params[:pwd]
|
||||||
unless params[:pwd]
|
fairy = Fairy.new(location: location, instance_id: instance.id)
|
||||||
fairy.is_suggested = true
|
fairy.save
|
||||||
end
|
end
|
||||||
|
|
||||||
if fairy.save
|
new_instance = Instance.includes(:fairies).find(instance.id)
|
||||||
new_instance = Instance.includes(:fairies).find(instance.id)
|
render partial: "instance/fairies", locals: { instance: new_instance }
|
||||||
render partial: "instance/fairies", locals: { instance: new_instance }
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
|
|
||||||
def unmark
|
def unmark
|
||||||
|
@ -24,6 +22,15 @@ class FairyController < ApplicationController
|
||||||
end
|
end
|
||||||
|
|
||||||
def despawn
|
def despawn
|
||||||
|
instance_id, location = mark_params
|
||||||
|
instance = Instance.find_by(public_id: instance_id)
|
||||||
|
fairy = Fairy.find_by(instance_id: instance.id, location: location)
|
||||||
|
unless fairy.is_despawned
|
||||||
|
fairy.is_despawned = true
|
||||||
|
fairy.save
|
||||||
|
new_instance = Instance.includes(:fairies).find(instance.id)
|
||||||
|
render partial: "instance/fairies", locals: { instance: new_instance }
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
private
|
private
|
||||||
|
|
|
@ -72,10 +72,24 @@
|
||||||
hx-select="#fairies"
|
hx-select="#fairies"
|
||||||
>
|
>
|
||||||
remove</div>
|
remove</div>
|
||||||
|
<% unless instance.fairies[idx].is_despawned %>
|
||||||
|
<div
|
||||||
|
class="copyable action no_pwd"
|
||||||
|
hx-post="/fairy/despawn?instance=<%= instance.public_id %>&location=<%= instance.fairies[idx].location %>"
|
||||||
|
hx-swap="outerHTML"
|
||||||
|
hx-target="#fairies"
|
||||||
|
hx-select="#fairies"
|
||||||
|
>
|
||||||
|
gone?
|
||||||
|
</div>
|
||||||
|
<% end %>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<% if instance.fairies[idx].is_despawned %>
|
||||||
|
<span class="despawn-note">potentially despawned!</span>
|
||||||
|
<% end %>
|
||||||
<% end %>
|
<% end %>
|
||||||
<div class="note">Click on a black dot to mark another Elemental.</div>
|
<div class="needs_pwd note">Click on a black dot to mark another Elemental.</div>
|
||||||
<div class="note">
|
<div class="note">
|
||||||
<div
|
<div
|
||||||
class="copyable"
|
class="copyable"
|
||||||
|
|
|
@ -7,6 +7,7 @@ Rails.application.routes.draw do
|
||||||
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
|
||||||
post "/fairy/unmark", to: "fairy#unmark", as: :unmark_fairy
|
post "/fairy/unmark", to: "fairy#unmark", as: :unmark_fairy
|
||||||
|
post "/fairy/despawn", to: "fairy#despawn", as: :despawn_fairy
|
||||||
get "/:public_id", to: "instance#show", as: :show_instance
|
get "/:public_id", to: "instance#show", as: :show_instance
|
||||||
|
|
||||||
get "up" => "rails/health#show", as: :rails_health_check
|
get "up" => "rails/health#show", as: :rails_health_check
|
||||||
|
|
Loading…
Add table
Reference in a new issue