summaryrefslogtreecommitdiff
path: root/app/views/pokedex_entries
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/pokedex_entries')
-rw-r--r--app/views/pokedex_entries/index.html.erb20
-rw-r--r--app/views/pokedex_entries/new.html.erb25
2 files changed, 45 insertions, 0 deletions
diff --git a/app/views/pokedex_entries/index.html.erb b/app/views/pokedex_entries/index.html.erb
new file mode 100644
index 0000000..e31cf2d
--- /dev/null
+++ b/app/views/pokedex_entries/index.html.erb
@@ -0,0 +1,20 @@
+<%= turbo_frame_tag "pokedex_entries" do %>
+ <%= link_to "Record an entry", new_run_pokedex_entry_path(@run) %>
+
+ <div class="space-y-2 p-4 h-[400px] border border-orange-900 overflow-y-scroll">
+ <% @pokedex_entries.each do |entry| %>
+ <div class="flex space-x-2 items-center">
+ <div class="flex justify-around bg-white h-[60px] w-[60px] border border-orange-900
+ rounded shadow">
+ <%= image_tag entry.pokemon.sprite_path(shiny: entry.shiny?) %>
+ </div>
+ <div>
+ <div><%= "Shiny " if entry.shiny? %><%= entry.pokemon.name %></div>
+ <div class="text-sm">Recorded by
+ <%= link_to entry.user.name || "???", user_path(entry.user) %> @ <%= entry.recorded_at %>
+ </div>
+ </div>
+ </div>
+ <% end %>
+ </div>
+<% end %>
diff --git a/app/views/pokedex_entries/new.html.erb b/app/views/pokedex_entries/new.html.erb
new file mode 100644
index 0000000..03bcbc8
--- /dev/null
+++ b/app/views/pokedex_entries/new.html.erb
@@ -0,0 +1,25 @@
+<%= turbo_frame_tag "pokedex_entries" do %>
+ <%= form_with model: [@run, @pokedex_entry], class: "space-y-4" do |form| %>
+ <div>
+ <%= form.label :pokemon_id %>
+ <%= form.collection_select :pokemon_id, Pokemon.order(:pokedex_num), :id,
+ ->(pokemon) { "#{pokemon.pokedex_num} - #{pokemon.name}" }, prompt: "Choose...",
+ required: true %>
+ </div>
+
+ <div>
+ <%= form.label :recorded_at %>
+ <%= form.datetime_local_field :recorded_at, value: Time.zone.now, required: true %>
+ </div>
+
+ <div>
+ <%= form.label :shiny %>
+ <%= form.check_box :shiny %>
+ </div>
+
+ <div class="space-x-2">
+ <%= form.submit "Got 'em!", class: "btn btn-primary" %>
+ <%= link_to "Cancel", run_pokedex_entries_path %>
+ </div>
+ <% end %>
+<% end %>