Packages
ash_admin
0.10.4
1.1.0
1.0.0-rc.0
0.14.0
0.13.26
0.13.25
0.13.24
0.13.23
0.13.22
0.13.21
0.13.20
0.13.19
0.13.18
0.13.17
0.13.16
0.13.15
0.13.14
0.13.13
0.13.12
0.13.11
0.13.10
0.13.9
0.13.8
0.13.7
0.13.6
0.13.5
0.13.4
0.13.3
0.13.2
0.13.1
0.13.0
0.12.6
0.12.5
0.12.4
0.12.3
0.12.2
0.12.1
0.12.0
0.11.11
0.11.10
0.11.9
0.11.8
0.11.7
0.11.6
0.11.5
0.11.4
0.11.3
0.11.2
0.11.1
0.11.0
0.10.12
0.10.11
0.10.10
retired
0.10.10-rc.1
0.10.10-rc.0
0.10.9
0.10.8
0.10.7
0.10.6
0.10.5
0.10.4
0.10.3
0.10.2
0.10.1
0.10.0
0.9.8
0.9.7
0.9.6
0.9.5
0.9.4
0.9.3
0.9.2
0.9.1
0.9.0
0.8.1
0.8.0
0.7.1
0.7.0
0.6.2
0.6.1
0.6.0-rc.2
0.6.0-rc.1
0.6.0-rc.0
0.5.2
0.5.1-rc.0
0.5.0
0.4.5-rc.0
0.4.4
0.4.2
0.4.0
0.3.0-rc.0
0.2.22
0.2.21
0.2.20
0.2.19
0.2.18
0.2.17
0.2.16-rc.1
0.2.16-rc.0
0.2.15
0.2.14
0.2.13
0.2.12
0.2.11
0.2.10
0.2.9
0.2.8
0.2.7
0.2.6
0.2.5
0.2.4
0.2.3
0.2.1
0.1.6
0.1.5
0.1.3
0.1.2
0.1.0
A super-admin UI for Ash Framework, built with Phoenix LiveView.
Current section
Files
Jump to
Current section
Files
lib/ash_admin/components/resource/table.ex
defmodule AshAdmin.Components.Resource.Table do
@moduledoc false
use Phoenix.Component
import AshAdmin.Helpers
import AshAdmin.CoreComponents
alias Ash.Resource.Relationships.{BelongsTo, HasOne}
alias AshAdmin.Components.Resource.SensitiveAttribute
attr :attributes, :any, default: nil
attr :data, :list, default: nil
attr :resource, :any, required: true
attr :actions, :boolean, default: true
attr :api, :any, required: true
attr :table, :any, required: true
attr :prefix, :any, required: true
attr :skip, :list, default: []
attr :format_fields, :any, default: []
attr :show_sensitive_fields, :list, default: []
attr :actor, :any, default: nil
def table(assigns) do
~H"""
<div>
<table class="rounded-t-lg m-5 w-5/6 mx-auto text-left">
<thead class="text-left border-b-2">
<th :for={attribute <- attributes(@resource, @attributes, @skip)}>
<%= to_name(attribute.name) %>
</th>
</thead>
<tbody>
<tr :for={record <- @data} class="border-b-2">
<td :for={attribute <- attributes(@resource, @attributes, @skip)} class="py-3">
<%= render_attribute(
@api,
record,
attribute,
@format_fields,
@show_sensitive_fields,
@actor
) %>
</td>
<td :if={@actions && actions?(@resource)}>
<div class="flex h-max justify-items-center">
<div :if={AshAdmin.Resource.show_action(@resource)}>
<.link navigate={"#{@prefix}?api=#{AshAdmin.Api.name(@api)}&resource=#{AshAdmin.Resource.name(@resource)}&tab=show&table=#{@table}&primary_key=#{encode_primary_key(record)}"}>
<.icon name="hero-information-circle-solid" class="h-5 w-5 text-gray-500" />
</.link>
</div>
<div :if={AshAdmin.Helpers.primary_action(@resource, :update)}>
<.link navigate={"#{@prefix}?api=#{AshAdmin.Api.name(@api)}&resource=#{AshAdmin.Resource.name(@resource)}&action_type=update&action=#{AshAdmin.Helpers.primary_action(@resource, :update).name}&tab=update&table=#{@table}&primary_key=#{encode_primary_key(record)}"}>
<.icon name="hero-pencil-solid" class="h-5 w-5 text-gray-500" />
</.link>
</div>
<div :if={AshAdmin.Helpers.primary_action(@resource, :destroy)}>
<.link navigate={"#{@prefix}?api=#{AshAdmin.Api.name(@api)}&resource=#{AshAdmin.Resource.name(@resource)}&action_type=destroy&action=#{AshAdmin.Helpers.primary_action(@resource, :destroy).name}&tab=destroy&table=#{@table}&primary_key=#{encode_primary_key(record)}"}>
<.icon name="hero-x-circle-solid" class="h-5 w-5 text-gray-500" />
</.link>
</div>
<button
:if={AshAdmin.Resource.actor?(@resource)}
phx-click="set_actor"
phx-value-resource={@resource}
phx-value-api={@api}
phx-value-pkey={encode_primary_key(record)}
>
<.icon name="hero-key-solid" class="h-5 w-5 text-gray-500" />
</button>
</div>
</td>
</tr>
</tbody>
</table>
</div>
"""
end
defp attributes(resource, nil, skip) do
resource
|> Ash.Resource.Info.attributes()
|> Enum.reject(&(&1.name in skip))
end
defp attributes(resource, attributes, skip) do
attributes
|> Enum.map(fn x ->
value = Ash.Resource.Info.field(resource, x)
if is_nil(value) do
Ash.Resource.Info.relationship(resource, x)
else
value
end
end)
|> Enum.filter(& &1)
|> Enum.reject(&(&1.name in skip))
end
defp render_attribute(api, record, attribute, formats, show_sensitive_fields, actor) do
process_attribute(api, record, attribute, formats, show_sensitive_fields, actor)
rescue
_ ->
"..."
end
defp process_attribute(
api,
record,
%module{} = attribute,
formats,
show_sensitive_fields,
actor
)
when module in [HasOne, BelongsTo] do
display_attributes = AshAdmin.Resource.relationship_display_fields(attribute.destination)
if is_nil(display_attributes) do
"..."
else
record =
if loaded?(record, attribute.name) do
record
else
api.load!(record, [{attribute.name, display_attributes}], actor: actor)
end
relationship = Map.get(record, attribute.name)
if is_nil(relationship) do
"None"
else
attributes = attributes(attribute.destination, display_attributes, [])
Enum.map_join(attributes, " - ", fn x ->
render_attribute(api, relationship, x, formats, show_sensitive_fields, actor)
end)
end
end
end
defp process_attribute(_, record, %struct{} = attribute, formats, show_sensitive_fields, _actor)
when struct in [Ash.Resource.Attribute, Ash.Resource.Aggregate, Ash.Resource.Calculation] do
{mod, func, args} =
Keyword.get(formats || [], attribute.name, {Phoenix.HTML.Safe, :to_iodata, []})
data =
record
|> Map.get(attribute.name)
|> (&apply(mod, func, [&1] ++ args)).()
if Map.get(attribute, :sensitive?) &&
not Enum.member?(show_sensitive_fields, attribute.name) do
format_sensitive_value(data, attribute, record)
else
format_attribute_value(data, attribute)
end
end
defp process_attribute(_api, _record, _attr, _formats, _show_sensitive_fields, _actor) do
"..."
end
defp format_sensitive_value(value, attribute, record) do
assigns = %{value: value, attribute: attribute, record: record}
~H"""
<.live_component
id={"#{@record.id}-#{@attribute.name}"}
module={SensitiveAttribute}
value={@value}
>
<%= format_attribute_value(@value, @attribute) %>
</.live_component>
"""
end
defp format_attribute_value(data, %{type: Ash.Type.Binary}) when data not in [[], nil, ""] do
assigns = %{}
~H"""
<span class="italic">(binary)</span>
"""
end
defp format_attribute_value(data, _attribute) do
if is_binary(data) and !String.valid?(data) do
"..."
else
data
end
end
defp loaded?(record, relationship) do
case Map.get(record, relationship) do
%Ash.NotLoaded{} -> false
_ -> true
end
end
defp actions?(resource) do
AshAdmin.Helpers.primary_action(resource, :update) || AshAdmin.Resource.show_action(resource) ||
AshAdmin.Resource.actor?(resource) || AshAdmin.Helpers.primary_action(resource, :destroy)
end
end