mirror of
https://github.com/fly-apps/live_beats.git
synced 2024-11-21 15:41:00 +00:00
Simplify changesets
This commit is contained in:
parent
b3033d0a94
commit
4f474b6462
1 changed files with 8 additions and 8 deletions
|
@ -187,15 +187,15 @@ defmodule LiveBeats.MediaLibrary do
|
|||
Repo.delete(song)
|
||||
end
|
||||
|
||||
def change_song(song_or_changeset, attrs \\ %{}) do
|
||||
song_or_changeset
|
||||
|> recycle_changeset()
|
||||
|> Song.changeset(attrs)
|
||||
def change_song(song_or_changeset, attrs \\ %{})
|
||||
|
||||
def change_song(%Song{} = song, attrs) do
|
||||
Song.changeset(song, attrs)
|
||||
end
|
||||
|
||||
defp recycle_changeset(%Ecto.Changeset{} = changeset) do
|
||||
Map.merge(changeset, %{action: nil, errors: [], valid?: true})
|
||||
def change_song(%Ecto.Changeset{} = prev_changeset, attrs) do
|
||||
%Song{}
|
||||
|> change_song(attrs)
|
||||
|> Ecto.Changeset.change(Map.take(prev_changeset.changes, [:duration]))
|
||||
end
|
||||
|
||||
defp recycle_changeset(%{} = other), do: other
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue