improve chart
This commit is contained in:
parent
5825c0b09f
commit
c732621ae4
|
@ -20,16 +20,25 @@ defmodule PokemonCoutureWeb.ClothesTrackerLive do
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
def inner_map_sorter({type, list}, acc) do
|
def assign_clothespiece_to_map(clothes, map) do
|
||||||
sorted_list = Enum.sort_by(list, fn %Clothes{name: name} -> name end)
|
case map[clothes.name] do
|
||||||
Map.put(acc, type, sorted_list)
|
nil ->
|
||||||
|
Map.put(map, clothes.name, [clothes])
|
||||||
|
list_of_clothes when is_list(list_of_clothes) ->
|
||||||
|
Map.put(map, clothes.name, [clothes | list_of_clothes])
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
def inner_map_creator({type, list}, acc) do
|
||||||
|
clothes_map = Enum.reduce(list, %{}, &assign_clothespiece_to_map/2)
|
||||||
|
Map.put(acc, type, clothes_map)
|
||||||
end
|
end
|
||||||
|
|
||||||
def mount(_params, %{"user_token" => user_token} = _session, socket) do
|
def mount(_params, %{"user_token" => user_token} = _session, socket) do
|
||||||
user = Accounts.get_user_by_session_token(user_token)
|
user = Accounts.get_user_by_session_token(user_token)
|
||||||
clothes_map = Enum.reduce(Shops.list_clothes_with_owners(), %{}, &create_shop_map/2)
|
clothes_map = Enum.reduce(Shops.list_clothes_with_owners(), %{}, &create_shop_map/2)
|
||||||
clothes_map = for {shop, map} <- clothes_map
|
clothes_map = for {shop, map} <- clothes_map
|
||||||
do {shop, Enum.reduce(map, %{}, &inner_map_sorter/2)}
|
do {shop, Enum.reduce(map, %{}, &inner_map_creator/2)}
|
||||||
end
|
end
|
||||||
socket =
|
socket =
|
||||||
socket
|
socket
|
||||||
|
|
|
@ -1,12 +1,15 @@
|
||||||
<h1>Listing Clothes</h1>
|
<h1>Listing Clothes</h1>
|
||||||
<%= for {shop, map_of_clothes_by_type} <- @clothes_map do %>
|
<%= for {shop, map_of_clothes_by_type} <- @clothes_map do %>
|
||||||
<h2> <%= shop %></h2>
|
<h2> <%= shop %></h2>
|
||||||
<%= for {type, list_of_clothes} <- map_of_clothes_by_type do %>
|
<%= for {type, map_of_clothes_by_name} <- map_of_clothes_by_type do %>
|
||||||
<h3> <%= type %> </h3>
|
<h3> <%= type %> </h3>
|
||||||
|
<%= for {name, list_of_clothes} <- map_of_clothes_by_name do %>
|
||||||
<table>
|
<table>
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th>Name</th>
|
<th colspan="3" style="text-align:center"> <b> <%= name %> </b> </th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
<th>Color</th>
|
<th>Color</th>
|
||||||
<th>Game</th>
|
<th>Game</th>
|
||||||
<th></th>
|
<th></th>
|
||||||
|
@ -19,4 +22,5 @@
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
<% end %>
|
<% end %>
|
||||||
|
<% end %>
|
||||||
<% end %>
|
<% end %>
|
||||||
|
|
|
@ -6,7 +6,6 @@ defmodule PokemonCoutureWeb.Components.ClothesComponent do
|
||||||
def render(assigns) do
|
def render(assigns) do
|
||||||
~L"""
|
~L"""
|
||||||
<tr>
|
<tr>
|
||||||
<td><%= @clothes.name %></td>
|
|
||||||
<td><%= @clothes.color %></td>
|
<td><%= @clothes.color %></td>
|
||||||
<td><%= @clothes.game %></td>
|
<td><%= @clothes.game %></td>
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue