193 lines
5.4 KiB
Elixir
193 lines
5.4 KiB
Elixir
defmodule MusicLibraryWeb.StatsLive.Index do
|
|
use MusicLibraryWeb, :live_view
|
|
|
|
import MusicLibraryWeb.ChartComponents
|
|
import MusicLibraryWeb.RecordComponents, only: [format_label: 1, type_label: 1]
|
|
import MusicLibraryWeb.StatsComponents
|
|
|
|
alias MusicLibrary.{Collection, Records, ScrobbleActivity, Wishlist}
|
|
|
|
def mount(_params, _session, socket) do
|
|
latest_record = Collection.get_latest_record!()
|
|
recent_tracks = LastFm.get_scrobbled_tracks()
|
|
records_by_artists = Collection.count_records_by_artist(limit: 20)
|
|
records_by_genre = Collection.count_records_by_genre(limit: 20)
|
|
|
|
if connected?(socket) do
|
|
LastFm.subscribe_to_feed()
|
|
end
|
|
|
|
{:ok,
|
|
socket
|
|
|> assign(:timezone, resolve_timezone!())
|
|
|> stream_configure(:recent_tracks,
|
|
dom_id: fn track -> "track-#{track.scrobbled_at_uts}" end
|
|
)
|
|
|> stream_configure(:recent_albums,
|
|
dom_id: fn album -> "album-#{album.scrobbled_at_uts}" end
|
|
)
|
|
|> assign_counts()
|
|
|> assign_scrobble_activity(recent_tracks)
|
|
|> assign_top_albums()
|
|
|> assign_top_artists()
|
|
|> assign(
|
|
scrobble_activity_mode: "albums",
|
|
latest_record: latest_record,
|
|
page_title: gettext("Stats"),
|
|
current_section: :stats,
|
|
records_by_artist: records_by_artists,
|
|
records_by_genre: records_by_genre
|
|
)}
|
|
end
|
|
|
|
def handle_event("refresh_lastfm_feed", _, socket) do
|
|
LastFm.refresh_scrobbled_tracks()
|
|
{:noreply, socket}
|
|
end
|
|
|
|
def handle_event("import", %{"id" => musicbrainz_id, "format" => format}, socket) do
|
|
case Records.import_from_musicbrainz_release(musicbrainz_id,
|
|
format: format,
|
|
purchased_at: nil
|
|
) do
|
|
{:ok, record} ->
|
|
{:noreply,
|
|
socket
|
|
|> put_flash(:info, gettext("Record wishlisted successfully"))
|
|
|> push_navigate(to: ~p"/wishlist/#{record.id}")}
|
|
|
|
{:error, %Ecto.Changeset{} = changeset} ->
|
|
{:noreply,
|
|
socket
|
|
|> put_flash(
|
|
:error,
|
|
gettext("Error wishlisting record") <> "," <> inspect(changeset.errors)
|
|
)}
|
|
|
|
{:error, reason} ->
|
|
{:noreply,
|
|
socket
|
|
|> put_flash(:error, gettext("Error wishlisting record") <> "," <> inspect(reason))}
|
|
end
|
|
end
|
|
|
|
def handle_event("set_scrobble_activity_mode", %{"mode" => mode}, socket)
|
|
when mode in ["tracks", "albums"] do
|
|
{:noreply,
|
|
socket
|
|
|> assign(scrobble_activity_mode: mode)}
|
|
end
|
|
|
|
def handle_info(%{track_count: 0}, socket) do
|
|
{:noreply, socket}
|
|
end
|
|
|
|
def handle_info(%{track_count: _count}, socket) do
|
|
recent_tracks = LastFm.get_scrobbled_tracks()
|
|
|
|
{:noreply,
|
|
socket
|
|
|> assign_top_albums()
|
|
|> assign_top_artists()
|
|
|> assign_scrobble_activity(recent_tracks)}
|
|
end
|
|
|
|
defp assign_counts(socket) do
|
|
collection_count_by_format = Collection.count_records_by_format()
|
|
|
|
collection_count_by_type = Collection.count_records_by_type()
|
|
|
|
collection_count =
|
|
Enum.sum_by(collection_count_by_format, fn {_, count} -> count end)
|
|
|
|
wishlist_count = Wishlist.count()
|
|
|
|
assign(socket,
|
|
collection_count_by_format: collection_count_by_format,
|
|
collection_count_by_type: collection_count_by_type,
|
|
collection_count: collection_count,
|
|
wishlist_count: wishlist_count
|
|
)
|
|
end
|
|
|
|
defp assign_scrobble_activity(socket, recent_tracks) do
|
|
%{
|
|
localized_recent_tracks: localized_recent_tracks,
|
|
localized_recent_albums: recent_albums,
|
|
collected_releases: collected_releases,
|
|
wishlisted_releases: wishlisted_releases,
|
|
artist_ids: artist_ids
|
|
} = ScrobbleActivity.from_recent_tracks(recent_tracks, socket.assigns.timezone)
|
|
|
|
socket
|
|
|> stream(:recent_tracks, localized_recent_tracks, reset: true)
|
|
|> stream(:recent_albums, recent_albums, reset: true)
|
|
|> assign(
|
|
collected_releases: collected_releases,
|
|
wishlisted_releases: wishlisted_releases,
|
|
artist_ids: artist_ids
|
|
)
|
|
end
|
|
|
|
defp assign_top_albums(socket) do
|
|
timezone = socket.assigns.timezone
|
|
current_time = DateTime.utc_now()
|
|
|
|
assign_async(socket, :top_albums, fn ->
|
|
top_albums =
|
|
ScrobbleActivity.get_top_albums_by_periods(
|
|
limit: 10,
|
|
current_time: current_time,
|
|
timezone: timezone
|
|
)
|
|
|
|
{:ok, %{top_albums: top_albums}}
|
|
end)
|
|
end
|
|
|
|
defp assign_top_artists(socket) do
|
|
timezone = socket.assigns.timezone
|
|
current_time = DateTime.utc_now()
|
|
|
|
assign_async(socket, :top_artists, fn ->
|
|
top_artists =
|
|
ScrobbleActivity.get_top_artists_by_periods(
|
|
limit: 10,
|
|
current_time: current_time,
|
|
timezone: timezone
|
|
)
|
|
|
|
{:ok, %{top_artists: top_artists}}
|
|
end)
|
|
end
|
|
|
|
# The Tailwind build step requires all needed classes to be explicitly referenced
|
|
# in the source code, and not dynamically generated. This implies that one cannot
|
|
# (for example) interpolate a number in a class name.
|
|
defp stats_class(collection) do
|
|
case Enum.count(collection) do
|
|
1 -> "grid-cols-1"
|
|
2 -> "grid-cols-2"
|
|
3 -> "grid-cols-3"
|
|
4 -> "grid-cols-4"
|
|
5 -> "grid-cols-5"
|
|
6 -> "grid-cols-6"
|
|
7 -> "grid-cols-7"
|
|
8 -> "grid-cols-8"
|
|
9 -> "grid-cols-9"
|
|
_other -> ""
|
|
end
|
|
end
|
|
|
|
defp format_scrobbled_at_uts(uts) do
|
|
uts
|
|
|> DateTime.from_unix!()
|
|
|> DateTime.to_iso8601()
|
|
end
|
|
|
|
defp resolve_timezone! do
|
|
Application.get_env(:music_library, MusicLibraryWeb)
|
|
|> Keyword.fetch!(:timezone)
|
|
end
|
|
end
|