745 lines
26 KiB
Elixir
745 lines
26 KiB
Elixir
defmodule MusicLibraryWeb.ArtistLive.Show do
|
|
use MusicLibraryWeb, :live_view
|
|
|
|
import MusicLibraryWeb.RecordComponents,
|
|
only: [record_grid: 1, country_label: 1, artist_image: 1]
|
|
|
|
alias MusicLibrary.{Artists, Chats, ListeningStats, Records}
|
|
alias MusicLibrary.Artists.ArtistInfo
|
|
alias MusicLibraryWeb.ArtistLive.Biography
|
|
alias MusicLibraryWeb.ErrorMessages
|
|
|
|
attr :country, :map, required: true
|
|
|
|
defp country_flag(assigns) do
|
|
~H"""
|
|
<span>{country_label(@country.code)}</span>
|
|
<span class="sr-only">{@country.name}</span>
|
|
"""
|
|
end
|
|
|
|
attr :play_count, :integer, required: true
|
|
|
|
defp play_count(assigns) do
|
|
~H"""
|
|
<span :if={@play_count > 0} class="grow text-xs font-medium text-zinc-700 dark:text-zinc-300">
|
|
{ngettext("1 scrobble", "%{count} scrobbles", @play_count)}
|
|
</span>
|
|
<span :if={@play_count == 0} class="grow text-xs font-medium text-zinc-700 dark:text-zinc-300">
|
|
{gettext("No scrobbles")}
|
|
</span>
|
|
"""
|
|
end
|
|
|
|
attr :title, :string, required: true
|
|
attr :artists, :list, required: true
|
|
|
|
defp artist_grid(assigns) do
|
|
~H"""
|
|
<div class="mt-4">
|
|
<header class="flex items-baseline justify-start">
|
|
<h2 class="text-base/5 font-semibold text-zinc-700 sm:text-lg dark:text-zinc-300">
|
|
{@title}
|
|
</h2>
|
|
</header>
|
|
<ul
|
|
role="list"
|
|
class="mt-4 grid grid-cols-3 gap-x-4 gap-y-8 sm:grid-cols-4 sm:gap-x-6 lg:grid-cols-6 xl:gap-x-8"
|
|
>
|
|
<li :for={artist <- @artists} class="relative">
|
|
<div
|
|
class="relative cursor-pointer"
|
|
phx-click={
|
|
JS.patch(~p"/artists/#{artist.musicbrainz_id}")
|
|
|> JS.dispatch("music_library:scroll_top")
|
|
}
|
|
>
|
|
<.artist_image
|
|
class="aspect-square rounded-lg object-cover hover:shadow-lg/20"
|
|
artist={artist}
|
|
image_hash={artist.image_data_hash}
|
|
/>
|
|
</div>
|
|
<p class="pointer-events-none mt-2 block truncate text-sm font-medium text-zinc-900 dark:text-zinc-300">
|
|
{artist.name}
|
|
</p>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
"""
|
|
end
|
|
|
|
@impl true
|
|
def render(assigns) do
|
|
~H"""
|
|
<Layouts.app
|
|
flash={@flash}
|
|
current_section={@current_section}
|
|
socket={@socket}
|
|
toasts_sync={assigns[:toasts_sync]}
|
|
>
|
|
<div class="mt-4 px-4 sm:px-6 lg:px-8">
|
|
<header class="mt-1 gap-1">
|
|
<div class="flex items-center justify-between">
|
|
<h1 class="text-2xl/5 font-semibold text-wrap text-zinc-700 dark:text-zinc-300">
|
|
{@artist.name}
|
|
<.country_flag country={@country} />
|
|
</h1>
|
|
|
|
<div class="flex items-center">
|
|
<.button_group>
|
|
<.button
|
|
variant="soft"
|
|
phx-click={MusicLibraryWeb.Components.Chat.open("artist-chat-sheet")}
|
|
>
|
|
<span class="sr-only">{gettext("Chat about artist")}</span>
|
|
<.icon
|
|
name="hero-chat-bubble-left-right"
|
|
class="icon"
|
|
aria-hidden="true"
|
|
data-slot="icon"
|
|
/>
|
|
<span :if={@chat_count > 0} class="text-xs font-medium">{@chat_count}</span>
|
|
</.button>
|
|
<.dropdown id={"actions-#{@artist.musicbrainz_id}"} placement="bottom-end">
|
|
<:toggle>
|
|
<.button variant="soft">
|
|
<span class="sr-only">{gettext("Actions")}</span>
|
|
<.icon
|
|
name="hero-ellipsis-vertical"
|
|
class="icon cursor-pointer text-zinc-500 dark:text-zinc-400"
|
|
aria-hidden="true"
|
|
data-slot="icon"
|
|
/>
|
|
</.button>
|
|
</:toggle>
|
|
<.focus_wrap id={"actions-#{@artist.musicbrainz_id}-focus-wrap"}>
|
|
<.dropdown_link
|
|
id={"actions-#{@artist.musicbrainz_id}-notes"}
|
|
phx-click={MusicLibraryWeb.Components.Notes.open("artist-notes-sheet")}
|
|
>
|
|
<.icon
|
|
name="hero-pencil"
|
|
class="mr-1 size-4"
|
|
aria-hidden="true"
|
|
data-slot="icon"
|
|
/>
|
|
{gettext("Notes")}
|
|
</.dropdown_link>
|
|
|
|
<.dropdown_link
|
|
id={"actions-#{@artist.musicbrainz_id}-debug"}
|
|
phx-click={Fluxon.open_dialog("debug-data")}
|
|
>
|
|
<.icon
|
|
name="hero-code-bracket"
|
|
class="mr-1 size-4"
|
|
aria-hidden="true"
|
|
data-slot="icon"
|
|
/>
|
|
{gettext("Debug data")}
|
|
</.dropdown_link>
|
|
|
|
<.dropdown_separator />
|
|
|
|
<.dropdown_link
|
|
id={"actions-#{@artist.musicbrainz_id}-edit"}
|
|
patch={~p"/artists/#{@artist.musicbrainz_id}/edit"}
|
|
>
|
|
<.icon
|
|
name="hero-pencil-square"
|
|
class="phx-click-loading:animate-bounce mr-1 size-4"
|
|
aria-hidden="true"
|
|
data-slot="icon"
|
|
/>
|
|
{gettext("Edit")}
|
|
</.dropdown_link>
|
|
<.dropdown_link
|
|
id={"actions-#{@artist.musicbrainz_id}-refresh-image"}
|
|
phx-click="refresh_artist_image"
|
|
>
|
|
<.icon
|
|
name="hero-photo"
|
|
class="phx-click-loading:animate-bounce mr-1 size-4"
|
|
aria-hidden="true"
|
|
data-slot="icon"
|
|
/>
|
|
{gettext("Refresh image")}
|
|
</.dropdown_link>
|
|
|
|
<.dropdown_link
|
|
id={"actions-#{@artist.musicbrainz_id}-refresh-artist-info"}
|
|
phx-click="refresh_artist_info"
|
|
>
|
|
<.icon
|
|
name="hero-arrow-path"
|
|
class="phx-click-loading:animate-spin mr-1 size-4"
|
|
aria-hidden="true"
|
|
data-slot="icon"
|
|
/>
|
|
{gettext("Refresh info")}
|
|
</.dropdown_link>
|
|
<.dropdown_link
|
|
id={"actions-#{@artist.musicbrainz_id}-refresh-wikipedia"}
|
|
phx-click="refresh_wikipedia_data"
|
|
>
|
|
<.icon
|
|
name="hero-arrow-path"
|
|
class="phx-click-loading:animate-spin mr-1 size-4"
|
|
aria-hidden="true"
|
|
data-slot="icon"
|
|
/>
|
|
{gettext("Refresh Wikipedia")}
|
|
</.dropdown_link>
|
|
<.dropdown_link
|
|
id={"actions-#{@artist.musicbrainz_id}-refresh-lastfm"}
|
|
phx-click="refresh_lastfm_data"
|
|
>
|
|
<.icon
|
|
name="hero-arrow-path"
|
|
class="phx-click-loading:animate-spin mr-1 size-4"
|
|
aria-hidden="true"
|
|
data-slot="icon"
|
|
/>
|
|
{gettext("Refresh Last.fm")}
|
|
</.dropdown_link>
|
|
</.focus_wrap>
|
|
</.dropdown>
|
|
</.button_group>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="mt-4 flex items-center justify-between">
|
|
<.play_count play_count={@play_count} />
|
|
</div>
|
|
</header>
|
|
|
|
<div class="mt-4 grid md:grid-cols-10 md:gap-4">
|
|
<div class="mt-4 md:col-span-3">
|
|
<h2 class="text-base/5 font-semibold text-zinc-700 sm:text-lg dark:text-zinc-300">
|
|
{gettext("Meta")}
|
|
</h2>
|
|
<.artist_image
|
|
class="mt-4 w-full cursor-pointer rounded-md shadow-sm"
|
|
artist={@artist}
|
|
image_hash={@artist_info.image_data_hash}
|
|
phx-click={Fluxon.open_dialog("artist-image-modal")}
|
|
/>
|
|
<.modal
|
|
id="artist-image-modal"
|
|
class="mx-auto mt-8 max-w-sm sm:min-w-2xl md:max-w-3xl lg:max-w-5xl"
|
|
placement="center"
|
|
open={false}
|
|
>
|
|
<.artist_image
|
|
class="mt-8 w-full rounded-md shadow-sm"
|
|
artist={@artist}
|
|
image_hash={@artist_info.image_data_hash}
|
|
/>
|
|
</.modal>
|
|
<div class="mt-2 flex items-center gap-2">
|
|
<code id={"mb-#{@artist.musicbrainz_id}"} class="hidden">
|
|
{@artist.musicbrainz_id}
|
|
</code>
|
|
<.button
|
|
href={MusicBrainz.Artist.url(@artist.musicbrainz_id)}
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
variant="ghost"
|
|
size="xs"
|
|
>
|
|
<.icon name="hero-arrow-top-right-on-square" class="icon" aria-hidden="true" />
|
|
{gettext("MusicBrainz")}
|
|
</.button>
|
|
<.button
|
|
variant="ghost"
|
|
size="xs"
|
|
phx-click={
|
|
JS.dispatch("music_library:clipcopy", to: "#mb-#{@artist.musicbrainz_id}")
|
|
|> JS.transition("animate-shake")
|
|
}
|
|
>
|
|
<.icon name="hero-clipboard-document" class="icon" aria-hidden="true" />
|
|
{gettext("Copy MB ID")}
|
|
</.button>
|
|
</div>
|
|
<%= if @biography do %>
|
|
<dt class="mt-4 text-sm/6 font-medium text-zinc-900 dark:text-zinc-400">
|
|
{gettext("Biography")}
|
|
<.badge variant="soft" class="ml-1">{@biography.source}</.badge>
|
|
</dt>
|
|
<dd class="text-zinc-700 dark:text-zinc-300">
|
|
<p
|
|
:if={@biography.description}
|
|
class="mt-2 text-sm text-zinc-500 italic dark:text-zinc-400"
|
|
>
|
|
{@biography.description}
|
|
</p>
|
|
<p class="mt-2 text-sm/7">{@biography.summary_html}</p>
|
|
<.link
|
|
class="mt-2 block text-sm font-medium text-zinc-900 dark:text-zinc-400"
|
|
phx-click={Fluxon.open_dialog("bio")}
|
|
>
|
|
<.icon
|
|
name="hero-arrow-right-end-on-rectangle"
|
|
class="-mt-1 mr-1 size-5"
|
|
aria-hidden="true"
|
|
data-slot="icon"
|
|
/>
|
|
{gettext("Read more")}
|
|
</.link>
|
|
</dd>
|
|
<.sheet
|
|
id="bio"
|
|
class="max-w-2xl text-zinc-700 dark:text-zinc-300"
|
|
placement="left"
|
|
>
|
|
<div class="dark:prose-invert prose prose-sm">
|
|
{render_bio(@biography)}
|
|
</div>
|
|
<a
|
|
:if={@biography.url}
|
|
href={@biography.url}
|
|
target="_blank"
|
|
class="mt-4 block text-sm font-medium text-zinc-900 hover:text-zinc-500 dark:text-zinc-400"
|
|
>
|
|
{gettext("Read full article on Wikipedia")}
|
|
<.icon
|
|
name="hero-arrow-top-right-on-square"
|
|
class="-mt-1 ml-1 size-4"
|
|
aria-hidden="true"
|
|
data-slot="icon"
|
|
/>
|
|
</a>
|
|
</.sheet>
|
|
<% else %>
|
|
<.async_result :let={lastfm_artist_info} assign={@lastfm_artist_info}>
|
|
<:loading>
|
|
<div class="mt-4 text-sm/5 text-zinc-500 dark:text-zinc-400">
|
|
{gettext("Loading biography")}
|
|
</div>
|
|
</:loading>
|
|
<:failed :let={_failure}>
|
|
<div class="mt-4 text-sm/5 text-zinc-500 dark:text-zinc-400">
|
|
<.icon
|
|
name="hero-exclamation-triangle"
|
|
class="-mt-1 mr-1 size-5"
|
|
aria-hidden="true"
|
|
data-slot="icon"
|
|
/>
|
|
{gettext("Error loading biography")}
|
|
</div>
|
|
</:failed>
|
|
<dt
|
|
:if={lastfm_artist_info.bio not in [nil, ""]}
|
|
class="mt-4 text-sm/6 font-medium text-zinc-900 dark:text-zinc-400"
|
|
>
|
|
{gettext("Biography")}
|
|
</dt>
|
|
<dd
|
|
:if={lastfm_artist_info.bio not in [nil, ""]}
|
|
class="text-zinc-700 dark:text-zinc-300"
|
|
>
|
|
<div class="dark:prose-invert prose prose-sm">
|
|
{Biography.remove_read_more_link(lastfm_artist_info.summary)}
|
|
</div>
|
|
<.link
|
|
class="mt-2 block text-sm font-medium text-zinc-900 dark:text-zinc-400"
|
|
phx-click={Fluxon.open_dialog("lastfm-bio")}
|
|
>
|
|
<.icon
|
|
name="hero-arrow-right-end-on-rectangle"
|
|
class="-mt-1 mr-1 size-5"
|
|
aria-hidden="true"
|
|
data-slot="icon"
|
|
/>
|
|
{gettext("Read more")}
|
|
</.link>
|
|
</dd>
|
|
<.sheet
|
|
:if={lastfm_artist_info.bio not in [nil, ""]}
|
|
id="lastfm-bio"
|
|
class="max-w-2xl text-zinc-700 dark:text-zinc-300"
|
|
placement="left"
|
|
>
|
|
<div class="dark:prose-invert prose prose-sm">
|
|
{Biography.render_bio(lastfm_artist_info.bio)}
|
|
</div>
|
|
</.sheet>
|
|
</.async_result>
|
|
<% end %>
|
|
<.external_links external_links={@external_links} />
|
|
</div>
|
|
<div class="md:col-span-7">
|
|
<.record_grid
|
|
:if={@collection_records_count > 0}
|
|
title={gettext("Collection")}
|
|
id="collection"
|
|
records={@streams.collection_records}
|
|
records_count={@collection_records_count}
|
|
record_show_path={fn record -> ~p"/collection/#{record}" end}
|
|
record_edit_path={fn record -> ~p"/collection/#{record}/show/edit" end}
|
|
container_class="mt-4"
|
|
/>
|
|
<.separator
|
|
:if={@collection_records_count > 0 && @wishlist_records_count > 0}
|
|
class="my-8"
|
|
/>
|
|
<.record_grid
|
|
:if={@wishlist_records_count > 0}
|
|
title={gettext("Wishlist")}
|
|
id="wishlist"
|
|
records={@streams.wishlist_records}
|
|
records_count={@wishlist_records_count}
|
|
record_show_path={fn record -> ~p"/wishlist/#{record}" end}
|
|
record_edit_path={fn record -> ~p"/wishlist/#{record}/show/edit" end}
|
|
container_class="mt-4"
|
|
/>
|
|
|
|
<.async_result :let={similar_artists} assign={@similar_artists}>
|
|
<:loading>
|
|
<div class="mt-4 text-sm/5 text-zinc-500 dark:text-zinc-400">
|
|
{gettext("Loading similar artists")}
|
|
</div>
|
|
</:loading>
|
|
<:failed :let={_failure}>
|
|
<div class="mt-4 text-sm/5 text-zinc-500 dark:text-zinc-400">
|
|
<.icon
|
|
name="hero-exclamation-triangle"
|
|
class="-mt-1 mr-1 size-5"
|
|
aria-hidden="true"
|
|
data-slot="icon"
|
|
/>
|
|
{gettext("Error loading similar artists")}
|
|
</div>
|
|
</:failed>
|
|
<.separator class="my-8" />
|
|
<.artist_grid title={gettext("Similar artists")} artists={similar_artists} />
|
|
</.async_result>
|
|
</div>
|
|
</div>
|
|
|
|
<.debug_data_sheet
|
|
id="debug-data"
|
|
items={
|
|
Enum.filter(
|
|
[
|
|
if(@artist_info.musicbrainz_data,
|
|
do: %{
|
|
name: "musicbrainz",
|
|
title: gettext("MusicBrainz"),
|
|
data: @artist_info.musicbrainz_data,
|
|
type: :json
|
|
}
|
|
),
|
|
if(@artist_info.discogs_data,
|
|
do: %{
|
|
name: "discogs",
|
|
title: gettext("Discogs"),
|
|
data: @artist_info.discogs_data,
|
|
type: :json
|
|
}
|
|
),
|
|
if(@artist_info.wikipedia_data != %{},
|
|
do: %{
|
|
name: "wikipedia",
|
|
title: gettext("Wikipedia"),
|
|
data: @artist_info.wikipedia_data,
|
|
type: :json
|
|
}
|
|
),
|
|
if(@artist_info.lastfm_data != %{},
|
|
do: %{
|
|
name: "lastfm",
|
|
title: gettext("Last.fm"),
|
|
data: @artist_info.lastfm_data,
|
|
type: :json
|
|
}
|
|
)
|
|
],
|
|
& &1
|
|
)
|
|
}
|
|
/>
|
|
</div>
|
|
|
|
<.live_component
|
|
id="artist-notes"
|
|
sheet_id="artist-notes-sheet"
|
|
module={MusicLibraryWeb.Components.Notes}
|
|
entity={:artist}
|
|
musicbrainz_id={@artist.musicbrainz_id}
|
|
/>
|
|
|
|
<.live_component
|
|
id="artist-chat"
|
|
sheet_id="artist-chat-sheet"
|
|
module={MusicLibraryWeb.Components.Chat}
|
|
title={@artist.name}
|
|
entity={:artist}
|
|
musicbrainz_id={@artist.musicbrainz_id}
|
|
chat_module={MusicLibrary.Chats.ArtistChat}
|
|
chat_context={{@artist, @artist_info}}
|
|
placeholder={gettext("Ask about this artist...")}
|
|
empty_prompt={gettext("Ask anything about this artist")}
|
|
/>
|
|
|
|
<.structured_modal
|
|
:if={@live_action == :edit}
|
|
id="artist-info-modal"
|
|
on_close={JS.patch(~p"/artists/#{@artist.musicbrainz_id}")}
|
|
>
|
|
<.live_component
|
|
module={MusicLibraryWeb.ArtistLive.Form}
|
|
id={@artist_info.id}
|
|
action={@live_action}
|
|
artist_info={@artist_info}
|
|
artist={@artist}
|
|
patch={~p"/artists/#{@artist.musicbrainz_id}"}
|
|
/>
|
|
</.structured_modal>
|
|
</Layouts.app>
|
|
"""
|
|
end
|
|
|
|
@impl true
|
|
def mount(_params, _session, socket) do
|
|
{:ok, socket}
|
|
end
|
|
|
|
@impl true
|
|
def handle_params(params, _url, socket) do
|
|
{:noreply, apply_action(socket, socket.assigns.live_action, params)}
|
|
end
|
|
|
|
@impl true
|
|
def handle_event("refresh_artist_info", _params, socket) do
|
|
case Artists.refresh_artist_info(socket.assigns.artist.musicbrainz_id) do
|
|
{:ok, artist_info} ->
|
|
{:noreply,
|
|
socket
|
|
|> assign(:artist_info, artist_info)
|
|
|> assign(:biography, Biography.build(artist_info))
|
|
|> put_toast(:info, gettext("Artist info refreshed successfully"))}
|
|
|
|
{:error, reason} ->
|
|
{:noreply,
|
|
socket
|
|
|> put_toast(
|
|
:error,
|
|
gettext("Error refreshing artist info") <>
|
|
": " <> ErrorMessages.friendly_message(reason)
|
|
)}
|
|
end
|
|
end
|
|
|
|
def handle_event("refresh_wikipedia_data", _params, socket) do
|
|
case Artists.refresh_wikipedia_data(socket.assigns.artist.musicbrainz_id) do
|
|
{:ok, artist_info} ->
|
|
{:noreply,
|
|
socket
|
|
|> assign(:artist_info, artist_info)
|
|
|> assign(:biography, Biography.build(artist_info))
|
|
|> put_toast(:info, gettext("Wikipedia data refreshed successfully"))}
|
|
|
|
{:error, reason} ->
|
|
{:noreply,
|
|
socket
|
|
|> put_toast(
|
|
:error,
|
|
gettext("Error refreshing Wikipedia data") <>
|
|
": " <> ErrorMessages.friendly_message(reason)
|
|
)}
|
|
end
|
|
end
|
|
|
|
def handle_event("refresh_lastfm_data", _params, socket) do
|
|
musicbrainz_id = socket.assigns.artist.musicbrainz_id
|
|
|
|
case Artists.refresh_lastfm_data(musicbrainz_id) do
|
|
{:ok, artist_info} ->
|
|
Records.Similarity.regenerate_artist_embeddings(musicbrainz_id)
|
|
|
|
{:noreply,
|
|
socket
|
|
|> assign(:artist_info, artist_info)
|
|
|> put_toast(:info, gettext("Last.fm data refreshed successfully"))}
|
|
|
|
{:error, reason} ->
|
|
{:noreply,
|
|
socket
|
|
|> put_toast(
|
|
:error,
|
|
gettext("Error refreshing Last.fm data") <>
|
|
": " <> ErrorMessages.friendly_message(reason)
|
|
)}
|
|
end
|
|
end
|
|
|
|
def handle_event("refresh_artist_image", _params, socket) do
|
|
case Artists.refresh_image(socket.assigns.artist.musicbrainz_id) do
|
|
{:ok, artist_info} ->
|
|
{:noreply,
|
|
socket
|
|
|> assign(:artist_info, artist_info)
|
|
|> put_toast(:info, gettext("Artist image refreshed successfully"))}
|
|
|
|
{:error, reason} ->
|
|
{:noreply,
|
|
socket
|
|
|> put_toast(
|
|
:error,
|
|
gettext("Error refreshing artist image") <>
|
|
": " <> ErrorMessages.friendly_message(reason)
|
|
)}
|
|
end
|
|
end
|
|
|
|
def handle_event("add-to-collection", %{"id" => id}, socket) do
|
|
record = Records.get_record!(id)
|
|
current_time = DateTime.utc_now()
|
|
|
|
case Records.update_record(record, %{"purchased_at" => current_time}) do
|
|
{:ok, _} ->
|
|
{:noreply,
|
|
socket
|
|
|> assign_records(socket.assigns.artist.musicbrainz_id)
|
|
|> put_toast(:info, gettext("Record added to the collection"))}
|
|
|
|
{:error, %Ecto.Changeset{} = changeset} ->
|
|
{:noreply,
|
|
socket
|
|
|> put_toast(
|
|
:error,
|
|
gettext("Error importing record") <> ": " <> ErrorMessages.friendly_message(changeset)
|
|
)}
|
|
end
|
|
end
|
|
|
|
def handle_event("delete", %{"id" => id}, socket) do
|
|
record = Records.get_record!(id)
|
|
{:ok, _} = Records.delete_record(record)
|
|
|
|
{:noreply,
|
|
socket
|
|
|> assign_records(socket.assigns.artist.musicbrainz_id)
|
|
|> put_toast(:info, gettext("Record deleted"))}
|
|
end
|
|
|
|
@impl true
|
|
def handle_info({MusicLibraryWeb.Components.Chat, :chats_changed}, socket) do
|
|
{:noreply,
|
|
assign(
|
|
socket,
|
|
:chat_count,
|
|
Chats.count_chats(:artist, socket.assigns.artist.musicbrainz_id)
|
|
)}
|
|
end
|
|
|
|
defp apply_action(socket, :show, %{"musicbrainz_id" => musicbrainz_id}) do
|
|
artist = Artists.get_artist!(musicbrainz_id)
|
|
artist_info = Artists.get_artist_info!(musicbrainz_id)
|
|
|
|
socket
|
|
|> assign_records(musicbrainz_id)
|
|
|> assign(:current_section, :artists)
|
|
|> assign(:artist, artist)
|
|
|> assign(:artist_info, artist_info)
|
|
|> assign(:play_count, ListeningStats.artist_play_count(musicbrainz_id))
|
|
|> assign(:chat_count, Chats.count_chats(:artist, musicbrainz_id))
|
|
|> assign(:biography, Biography.build(artist_info))
|
|
|> assign(:external_links, ArtistInfo.external_links(artist_info))
|
|
|> assign(:country, ArtistInfo.country(artist_info))
|
|
|> maybe_assign_lastfm_artist_info(artist)
|
|
|> assign_async(:similar_artists, fn ->
|
|
with {:ok, similar_artists} <- Artists.get_similar_artists(artist) do
|
|
artist_image_hashes = Artists.get_image_hashes(similar_artists)
|
|
|
|
similar_artists =
|
|
Enum.map(similar_artists, fn artist ->
|
|
%{artist | image_data_hash: Map.get(artist_image_hashes, artist.musicbrainz_id)}
|
|
end)
|
|
|
|
{:ok, %{similar_artists: similar_artists}}
|
|
end
|
|
end)
|
|
|> assign(:page_title, page_title(socket.assigns.live_action, artist))
|
|
end
|
|
|
|
defp apply_action(socket, :edit, params) do
|
|
socket =
|
|
if get_in(socket.assigns, [:streams, :collection_records]) == nil do
|
|
socket
|
|
|> apply_action(:show, params)
|
|
else
|
|
socket
|
|
end
|
|
|
|
socket
|
|
|> assign(:page_title, gettext("Add more · Artist"))
|
|
end
|
|
|
|
defp assign_records(socket, artist_musicbrainz_id) do
|
|
%{collection: collection_records, wishlist: wishlist_records} =
|
|
artist_musicbrainz_id
|
|
|> Records.get_artist_records()
|
|
|> group_and_sort()
|
|
|
|
socket
|
|
|> stream(:collection_records, collection_records, reset: true)
|
|
|> stream(:wishlist_records, wishlist_records, reset: true)
|
|
|> assign(:collection_records_count, Enum.count(collection_records))
|
|
|> assign(:wishlist_records_count, Enum.count(wishlist_records))
|
|
end
|
|
|
|
defp page_title(:show, artist) do
|
|
Enum.join(
|
|
[
|
|
artist.name,
|
|
"·",
|
|
gettext("Details")
|
|
],
|
|
" "
|
|
)
|
|
end
|
|
|
|
defp page_title(:edit, artist) do
|
|
Enum.join(
|
|
[
|
|
artist.name,
|
|
"·",
|
|
gettext("Edit")
|
|
],
|
|
" "
|
|
)
|
|
end
|
|
|
|
defp maybe_assign_lastfm_artist_info(socket, _artist) when socket.assigns.biography != nil do
|
|
socket
|
|
end
|
|
|
|
defp maybe_assign_lastfm_artist_info(socket, artist) do
|
|
assign_async(socket, :lastfm_artist_info, fn ->
|
|
with {:ok, lastfm_artist_info} <-
|
|
LastFm.get_artist_info(artist.musicbrainz_id, artist.name) do
|
|
{:ok, %{lastfm_artist_info: lastfm_artist_info}}
|
|
end
|
|
end)
|
|
end
|
|
|
|
defp group_and_sort(records) do
|
|
{collection, wishlist} = Enum.split_with(records, fn r -> r.purchased_at end)
|
|
|
|
%{
|
|
collection: Enum.sort_by(collection, fn r -> r.release_date end, :desc),
|
|
wishlist: Enum.sort_by(wishlist, fn r -> r.release_date end, :desc)
|
|
}
|
|
end
|
|
|
|
# Wikipedia returns sanitized HTML, so we can skip sanitization.
|
|
# sobelow_skip ["XSS.Raw"]
|
|
defp render_bio(biography) do
|
|
Phoenix.HTML.raw(biography.bio_html)
|
|
end
|
|
end
|