summaryrefslogtreecommitdiff
path: root/app/views/characters/items/_inventory_section.html.erb
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/characters/items/_inventory_section.html.erb')
-rw-r--r--app/views/characters/items/_inventory_section.html.erb34
1 files changed, 34 insertions, 0 deletions
diff --git a/app/views/characters/items/_inventory_section.html.erb b/app/views/characters/items/_inventory_section.html.erb
new file mode 100644
index 0000000..727e3a1
--- /dev/null
+++ b/app/views/characters/items/_inventory_section.html.erb
@@ -0,0 +1,34 @@
+<% if character_items.any? %>
+ <h3 class="text-xl"><%= heading %></h3>
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 xl:grid-cols-4 2xl:grid-cols-5
+ border border-gray-500 rounded p-2 my-2">
+ <% character_items.each do |ci| %>
+ <div class="my-1">
+ <div class="flex items-center text-display">
+ <div><%= link_to ci.item.name, item_path(ci.item) %></div>
+ <div class="text-sm border border-gray-500 rounded-lg mx-2 px-1 py-0.5">
+ <%= ci.quantity %>
+ </div>
+ </div>
+ <div>
+ <span class="text-xs italic"><%= truncate(ci.item.description) %></span>
+ </div>
+ <% if ci.item.equipment? %>
+ <div class="text-xs"><%= ci.item.equip_slots.map {|s| s.to_s.humanize}.join(", ") %></div>
+ <% end %>
+ <div class="flex flex-row my-2 text-sm">
+ <% if ci.item.equipment? %>
+ <div class="mr-2">
+ <%= button_to "Equip", character_item_equip_path(item_id: ci.item.id) %>
+ </div>
+ <% end %>
+ <% if ci.item.usable? %>
+ <div class="mr-2">
+ <%= button_to "Use", character_item_use_path(item_id: ci.item.id) %>
+ </div>
+ <% end %>
+ </div>
+ </div>
+ <% end %>
+ </div>
+<% end %>