API: new PUT /api/lists/{id}/items/order takes the full ordered id set and
rewrites positions 0..n-1 in a transaction (422 unless the set matches the
list exactly). TodoItemRepository gains idsForList() and reorder().
Frontend: lists on the home page are now links to /lists/:id (ListView).
ListView shows the list title, a "M of N done" summary, and each item as a
drag handle + checkbox + inline-editable text (saved on blur) + delete
button, with a create-item form at the bottom. Drag-and-drop uses
vuedraggable; on drop the whole order is persisted via the new endpoint and
the response replaces local state, with a resync-on-error fallback. New
items store; items store is also reset on logout.
Tests: reorder happy path, incomplete-set rejection, owner scoping. Backend
suite: 23 passing.
Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
126 lines
3.5 KiB
Vue
126 lines
3.5 KiB
Vue
<script setup lang="ts">
|
|
import { computed, onMounted, ref } from 'vue'
|
|
import { useRoute } from 'vue-router'
|
|
import draggable from 'vuedraggable'
|
|
import TodoItemRow from '../components/TodoItemRow.vue'
|
|
import { ApiError, apiRequest } from '../lib/api'
|
|
import { useItemsStore } from '../stores/items'
|
|
import type { TodoItem, TodoList } from '../types'
|
|
|
|
const route = useRoute()
|
|
const items = useItemsStore()
|
|
|
|
const listId = Number(route.params.id)
|
|
const list = ref<TodoList | null>(null)
|
|
const loadError = ref<string | null>(null)
|
|
const actionError = ref<string | null>(null)
|
|
|
|
const newText = ref('')
|
|
const submitting = ref(false)
|
|
|
|
const summary = computed(() => {
|
|
const total = items.items.length
|
|
if (total === 0) return 'No items yet.'
|
|
return `${items.completedCount()} of ${total} done.`
|
|
})
|
|
|
|
onMounted(load)
|
|
|
|
async function load() {
|
|
loadError.value = null
|
|
try {
|
|
const [{ list: fetched }] = await Promise.all([
|
|
apiRequest<{ list: TodoList }>(`/lists/${listId}`, { auth: true }),
|
|
items.load(listId),
|
|
])
|
|
list.value = fetched
|
|
} catch (e) {
|
|
if (e instanceof ApiError && e.status === 404) {
|
|
loadError.value = 'That list does not exist.'
|
|
} else {
|
|
loadError.value = e instanceof ApiError ? e.message : 'Could not load the list.'
|
|
}
|
|
}
|
|
}
|
|
|
|
/** Run a store mutation, surfacing failures and resyncing from the server. */
|
|
async function run(op: Promise<unknown>) {
|
|
actionError.value = null
|
|
try {
|
|
await op
|
|
} catch (e) {
|
|
actionError.value = e instanceof ApiError ? e.message : 'Something went wrong.'
|
|
await items.load(listId)
|
|
}
|
|
}
|
|
|
|
function onReorder(event: { oldIndex?: number; newIndex?: number }) {
|
|
if (event.oldIndex === event.newIndex) return
|
|
void run(items.persistOrder())
|
|
}
|
|
|
|
async function onCreate() {
|
|
submitting.value = true
|
|
actionError.value = null
|
|
try {
|
|
await items.add(newText.value)
|
|
newText.value = ''
|
|
} catch (e) {
|
|
actionError.value = e instanceof ApiError ? e.message : 'Could not add the item.'
|
|
} finally {
|
|
submitting.value = false
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<section class="card">
|
|
<p><RouterLink to="/">← All lists</RouterLink></p>
|
|
|
|
<p v-if="loadError" class="form-error">{{ loadError }}</p>
|
|
|
|
<template v-else-if="list">
|
|
<h1>{{ list.title }}</h1>
|
|
<p v-if="list.description" class="muted">{{ list.description }}</p>
|
|
|
|
<p class="muted">{{ summary }}</p>
|
|
<p v-if="actionError" class="form-error">{{ actionError }}</p>
|
|
|
|
<p v-if="items.loading && !items.loaded" class="muted">Loading…</p>
|
|
|
|
<draggable
|
|
v-else-if="items.items.length"
|
|
:list="items.items"
|
|
item-key="id"
|
|
tag="ul"
|
|
class="items"
|
|
handle=".item__handle"
|
|
ghost-class="item--ghost"
|
|
:animation="150"
|
|
@end="onReorder"
|
|
>
|
|
<template #item="{ element }: { element: TodoItem }">
|
|
<TodoItemRow
|
|
:item="element"
|
|
@toggle="(v) => run(items.setComplete(element, v))"
|
|
@save-text="(v) => run(items.setText(element, v))"
|
|
@delete="run(items.remove(element))"
|
|
/>
|
|
</template>
|
|
</draggable>
|
|
|
|
<p v-else class="muted">No items yet — add one below.</p>
|
|
|
|
<form class="form form--new-list" @submit.prevent="onCreate">
|
|
<label>
|
|
<span>New item</span>
|
|
<input v-model="newText" type="text" maxlength="1000" required />
|
|
</label>
|
|
<button type="submit" :disabled="submitting">
|
|
{{ submitting ? 'Adding…' : 'Add item' }}
|
|
</button>
|
|
</form>
|
|
</template>
|
|
</section>
|
|
</template>
|