Packages
ash_admin
0.13.10
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.Helpers.FormatHelper
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 :domain, :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
attr :relationship_name, :atom, 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(
@domain,
record,
attribute,
@format_fields,
@show_sensitive_fields,
@actor,
@relationship_name
)}
</td>
<td :if={@actions && actions?(@resource)}>
<div class="flex h-max justify-items-center">
<div :if={AshAdmin.Resource.show_action(@resource)}>
<.link navigate={"#{@prefix}?domain=#{AshAdmin.Domain.name(@domain)}&resource=#{AshAdmin.Resource.name(@resource)}&table=#{@table}&primary_key=#{encode_primary_key(record)}&action_type=read"}>
<.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}?domain=#{AshAdmin.Domain.name(@domain)}&resource=#{AshAdmin.Resource.name(@resource)}&action_type=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}?domain=#{AshAdmin.Domain.name(@domain)}&resource=#{AshAdmin.Resource.name(@resource)}&action_type=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-domain={@domain}
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 ->
Ash.Resource.Info.field(resource, x)
end)
|> Enum.filter(& &1)
|> Enum.reject(&(&1.name in skip))
end
defp render_attribute(
domain,
record,
attribute,
formats,
show_sensitive_fields,
actor,
relationship_name
) do
process_attribute(
domain,
record,
attribute,
formats,
show_sensitive_fields,
actor,
relationship_name
)
rescue
_ ->
"..."
end
defp process_attribute(
domain,
record,
%module{} = attribute,
formats,
show_sensitive_fields,
actor,
relationship_name
)
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
Ash.load!(record, [{attribute.name, display_attributes}], actor: actor, domain: domain)
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(
domain,
relationship,
x,
formats,
show_sensitive_fields,
actor,
relationship_name
)
end)
end
end
end
defp process_attribute(
_,
record,
%struct{} = attribute,
formats,
show_sensitive_fields,
_actor,
relationship_name
)
when struct in [Ash.Resource.Attribute, Ash.Resource.Aggregate, Ash.Resource.Calculation] do
data = FormatHelper.format_attribute(formats, record, attribute)
if Map.get(attribute, :sensitive?) &&
not Enum.member?(show_sensitive_fields, attribute.name) do
format_sensitive_value(data, attribute, record, relationship_name)
else
format_attribute_value(data, attribute)
end
end
defp process_attribute(
_domain,
_record,
_attr,
_formats,
_show_sensitive_fields,
_actor,
_relationship_name
) do
"..."
end
defp format_sensitive_value(value, attribute, record, relationship_name) do
assigns = %{
value: value,
attribute: attribute,
record: record,
relationship_name: relationship_name
}
~H"""
<.live_component
id={"#{@relationship_name}-#{AshAdmin.Helpers.encode_primary_key(@record)}-#{@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(%Ash.Union{value: value, type: type}, attribute) do
config = attribute.constraints[:types][type]
new_attr = %{attribute | type: config[:type], constraints: config[:constraints]}
format_attribute_value(value, new_attr)
end
defp format_attribute_value(data, attribute) do
if Ash.Type.NewType.new_type?(attribute.type) do
constraints = Ash.Type.NewType.constraints(attribute.type, attribute.constraints)
type = Ash.Type.NewType.subtype_of(attribute.type)
attribute = %{attribute | type: type, constraints: constraints}
format_attribute_value(data, attribute)
else
if is_binary(data) and !String.valid?(data) do
"..."
else
data
end
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