feat: implement basic info display for anemos

This commit is contained in:
insects 2025-03-10 22:25:45 +01:00
parent 06a12df43f
commit ce5d327ca2
34 changed files with 582 additions and 88 deletions

View file

@ -0,0 +1,9 @@
<% if zone == "anemos" %>
<img src="/wind.png" width="35" alt=<%= alt %> title=<%= title %> />
<% elsif zone == "pagos" %>
<img src="/ice.png" width="35" alt=<%= alt %> title=<%= title %> />
<% elsif zone == "pyros" %>
<img src="/fire.png" width="35" alt=<%= alt %> title=<%= title %> />
<% elsif zone == "hydatos" %>
<img src="/water.png" width="35" alt=<%= alt %> title=<%= title %> />
<% end %>

View file

@ -0,0 +1,40 @@
<header>
<img src="/icon.png" width="50" alt="eureka.coffee logo" />
<h1><span class="muted">instance</span> <%= @instance.name %></h1>
<%= render partial: "zone_img", locals: { zone: @instance.zone, alt: @instance.zone, title: @instance.zone.upcase_first } %>
</header>
<main class="nm-list">
<% APP_DATA[@instance.zone.to_sym][:nms].each do |nm| %>
<section class="<%= nm[:element] %>">
<div>
<img src="<%= "/#{nm[:element]}.png" %>" alt="<%= nm[:element] %>" width="30" />
</div>
<div class="meta">
<h3 class="nm-info">
<span class="badge">LV<%= nm[:level].to_s.rjust(2, "0") %></span>
<%= nm[:name] %>
<% if nm[:weather] %>
<img src="/<%= nm[:weather] %>.png" title="during <%= nm[:weather] %> only" width="15" />
<% end %>
</h3>
<div class="spawn-info">
«
<strong><%= nm[:spawned_by][:name] %></strong>
<% if nm[:spawned_by][:night_only] %>
<span title="only at night">🌙</span>
<% end %>
<% if nm[:spawned_by][:weather] %>
<img src="/<%= nm[:spawned_by][:weather] %>.png" title="during <%= nm[:spawned_by][:weather] %> only" width="15" />
<% end %>
<small class="badge">LV<%= nm[:spawned_by][:level].to_s.rjust(2, "0") %></small>
</div>
</div>
<div></div>
<div>
<button class="action">Pop</button>
</div>
</section>
<% end %>
</main>

View file

@ -1,7 +1,7 @@
<!DOCTYPE html>
<html>
<head>
<title><%= content_for(:title) || "Ecoffee" %></title>
<title><%= content_for(:title) || "eureka.coffee" %></title>
<meta name="viewport" content="width=device-width,initial-scale=1">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="mobile-web-app-capable" content="yes">
@ -14,7 +14,6 @@
<%#= tag.link rel: "manifest", href: pwa_manifest_path(format: :json) %>
<link rel="icon" href="/icon.png" type="image/png">
<link rel="icon" href="/icon.svg" type="image/svg+xml">
<link rel="apple-touch-icon" href="/icon.png">
<%# Includes all stylesheet files in app/assets/stylesheets %>

View file

@ -0,0 +1,34 @@
<header>
<img src="/icon.png" width="50" alt="eureka.coffee logo" />
<h1>eureka.coffee</h1>
</header>
<div class="new-buttons">
<%= form_tag "/new?zone=anemos", method: :post do %>
<button type="submit" class="new-button">
<img src="/wind.png" width="50" alt="Wind" /><br/>
Anemos
</button>
<% end %>
<%= form_tag "/new?zone=pagos", method: :post do %>
<button type="submit" class="new-button">
<img src="/ice.png" width="50" alt="Wind" /><br/>
Pagos
</button>
<% end %>
<%= form_tag "/new?zone=pyros", method: :post do %>
<button type="submit" class="new-button">
<img src="/fire.png" width="50" alt="Wind" /><br/>
Pyros
</button>
<% end %>
<%= form_tag "/new?zone=hydatos", method: :post do %>
<button type="submit" class="new-button">
<img src="/water.png" width="50" alt="Wind" /><br/>
Hydatos
</button>
<% end %>
</div>