Files
music_library/backlog/completed/ml-174 - Add-menu-action-to-empty-a-set.md
T
Claudio Ortolina f108e6f062 ML-174: add empty action to record set dropdown menu
Add RecordSets.empty_record_set/1 that bulk-deletes all items in a set via
a single DELETE query and returns the reloaded empty set. Add Empty button
with confirmation prompt to both index and show view dropdowns.
2026-05-14 17:15:06 +01:00

177 lines
7.0 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
---
id: ML-174
title: Add menu action to empty a set
status: Done
assignee: []
created_date: "2026-05-09 17:57"
updated_date: "2026-05-14 16:09"
labels:
- ready
- ui
dependencies: []
references:
- backlog/docs/doc-16 - Research-Add-menu-action-to-empty-a-set.md
modified_files:
- lib/music_library/record_sets.ex
- lib/music_library_web/live/record_set_live/index.ex
- lib/music_library_web/live/record_set_live/show.ex
- test/music_library/record_sets_test.exs
---
## Description
<!-- SECTION:DESCRIPTION:BEGIN -->
For record sets, it would be useful to empty the set, which means removing all items in the set in one single operation. The action should be available in the dropdown menu already available in each set (both in the index and show views).
<!-- SECTION:DESCRIPTION:END -->
## Acceptance Criteria
<!-- AC:BEGIN -->
- [x] #1 Clicking "Empty" in the set dropdown (index view) removes all records from that set and the card updates to show 0/0 records
- [x] #2 Clicking "Empty" in the set dropdown (show view) removes all records and the grid clears
- [x] #3 A confirmation prompt appears before emptying the set
- [x] #4 Emptying a set does not delete the set itself (name, description, and metadata are preserved)
- [x] #5 The context function `RecordSets.empty_record_set/1` returns `{:ok, record_set}` with an empty items list
<!-- AC:END -->
## Implementation Plan
<!-- SECTION:PLAN:BEGIN -->
### 1. Add `empty_record_set/1` to `MusicLibrary.RecordSets`
Add a new public function that bulk-deletes all `RecordSetItem` rows for a given set in a single query, then reloads the set.
**File:** `lib/music_library/record_sets.ex`
```elixir
@spec empty_record_set(RecordSet.t()) :: {:ok, RecordSet.t()}
def empty_record_set(%RecordSet{} = record_set) do
from(i in RecordSetItem, where: i.record_set_id == ^record_set.id)
|> Repo.delete_all()
{:ok, get_record_set!(record_set.id)}
end
```
**Rationale:** `Repo.delete_all` issues a single `DELETE FROM record_set_items WHERE record_set_id = ?` — no N+1 regardless of item count. Only the `id` field is needed from the struct. Not wrapped in a transaction — consistent with `remove_record_from_set/2` and `reorder_records_in_set/2`.
### 2. Add "Empty" button and handler to index view
**File:** `lib/music_library_web/live/record_set_live/index.ex`
Add a `dropdown_button` **below the separator**, grouped with "Delete" (since emptying is a destructive action). Place it between the separator and the existing "Delete" button:
```heex
<.dropdown_separator />
<.dropdown_button
phx-click="empty_set"
phx-value-id={@record_set.id}
data-confirm={gettext("Remove all records from this set?")}
>
{gettext("Empty")}
</.dropdown_button>
<.dropdown_button
phx-click="delete_set"
...
>
{gettext("Delete")}
</.dropdown_button>
```
Add `handle_event`. Pass only the ID via a minimal struct to avoid a redundant `get_record_set!` call (the function itself does the reload):
```elixir
def handle_event("empty_set", %{"id" => id}, socket) do
{:ok, updated_set} = RecordSets.empty_record_set(%RecordSet{id: id})
{:noreply, update_record_set_in_list(socket, updated_set)}
end
```
### 3. Add "Empty" button and handler to show view
**File:** `lib/music_library_web/live/record_set_live/show.ex`
Add the same `dropdown_button` **below the separator**, before "Delete" (same placement as index). Add `handle_event` with a success toast for consistency with `delete_set`:
```elixir
def handle_event("empty_set", _params, socket) do
{:ok, updated_set} = RecordSets.empty_record_set(socket.assigns.record_set)
{:noreply,
socket
|> assign(:record_set, updated_set)
|> put_toast(:info, gettext("Set emptied"))}
end
```
### 4. Add tests
**File:** `test/music_library/record_sets_test.exs`
Add a new `describe "empty_record_set/1"` block with two tests:
```elixir
describe "empty_record_set/1" do
test "removes all items and returns the empty set" do
{set, [_r1, _r2, r3]} = record_set_with_records(3)
{:ok, updated} = RecordSets.empty_record_set(set)
assert updated.items == []
# Set metadata preserved
assert updated.name == set.name
assert updated.description == set.description
# Items are actually deleted from DB
assert [] =
from(i in RecordSetItem, where: i.record_set_id == ^set.id)
|> Repo.all()
end
test "is a no-op on already-empty sets" do
set = record_set()
assert set.items == []
{:ok, updated} = RecordSets.empty_record_set(set)
assert updated.items == []
end
end
```
**No LiveView tests are planned.** The project does not currently have LiveView test files for `RecordSetLive.Index` or `RecordSetLive.Show`. UI acceptance criteria (#1#4 from the acceptance criteria list) will be verified manually using the steps below. The context-level tests above cover acceptance criterion #5.
### Verification
| Step | Verification |
| ------------------------------- | -------------------------------------------------------------------------------------------------------------------------------- |
| 1. Context function | Run `mix test test/music_library/record_sets_test.exs` — both tests pass |
| 2. Edge case: already-empty set | Run `mix test test/music_library/record_sets_test.exs:NNN` (line of the no-op test) |
| 3. Index UI | Manual: open record sets index, click dropdown → Empty, confirm prompt appears, confirm → card updates to show 0/0 records |
| 4. Show UI | Manual: open a set show page, click dropdown → Empty, confirm prompt appears, confirm → grid clears, toast "Set emptied" appears |
| 5. Set preserved | After emptying, verify set name and description are still visible on both index card and show page |
| 6. Full test suite | Run `mix test` — all existing tests still pass |
<!-- SECTION:PLAN:END -->
## Final Summary
<!-- SECTION:FINAL_SUMMARY:BEGIN -->
Added `RecordSets.empty_record_set/1` context function that bulk-deletes all `RecordSetItem` rows via a single `DELETE FROM record_set_items WHERE record_set_id = ?` query and returns the reloaded (empty) set. Added "Empty" dropdown button with confirmation prompt to both index and show LiveViews. Index view updates the card in place; show view shows a "Set emptied" toast. All 983 tests pass.
<!-- SECTION:FINAL_SUMMARY:END -->
<!-- SECTION:PLAN:END -->
## Definition of Done
<!-- DOD:BEGIN -->
- [x] #1 `RecordSets.empty_record_set/1` added and tested
- [x] #2 "Empty" dropdown button present in both index and show views
- [x] #3 Confirmation prompt shown before emptying
- [x] #4 Set metadata preserved after emptying
- [x] #5 All existing tests still pass
<!-- DOD:END -->