- Add ConfirmDeleteDialog for permanent deletion confirmation - Update BulkActionBar to show contextual actions (Restore/Delete permanently in trash view, Archive/Trash elsewhere) - Add Empty Trash button in note list header when viewing trash - Add Empty Trash command to Cmd+K palette - Add bulk restore, bulk delete permanently, and empty trash handlers - All permanent deletions require confirmation dialog - Update mock handlers for batch_delete_notes and empty_trash Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
95 lines
3.1 KiB
TypeScript
95 lines
3.1 KiB
TypeScript
import { memo } from 'react'
|
|
import { Archive, ArrowCounterClockwise, Trash, X } from '@phosphor-icons/react'
|
|
|
|
interface BulkActionBarProps {
|
|
count: number
|
|
isTrashView: boolean
|
|
onArchive: () => void
|
|
onTrash: () => void
|
|
onRestore: () => void
|
|
onDeletePermanently: () => void
|
|
onClear: () => void
|
|
}
|
|
|
|
const actionBtnStyle = { padding: '5px 10px', borderRadius: 6, background: 'rgba(255,255,255,0.12)', color: 'inherit', fontSize: 12, fontWeight: 500 } as const
|
|
const destructiveBtnStyle = { padding: '5px 10px', borderRadius: 6, background: 'rgba(224,62,62,0.2)', color: 'var(--destructive)', fontSize: 12, fontWeight: 500 } as const
|
|
|
|
function BulkActionBarInner({ count, isTrashView, onArchive, onTrash, onRestore, onDeletePermanently, onClear }: BulkActionBarProps) {
|
|
return (
|
|
<div
|
|
className="flex shrink-0 items-center justify-between"
|
|
style={{
|
|
height: 44,
|
|
padding: '0 12px',
|
|
background: 'var(--foreground)',
|
|
color: 'var(--background)',
|
|
}}
|
|
data-testid="bulk-action-bar"
|
|
>
|
|
<span style={{ fontSize: 13, fontWeight: 500 }}>
|
|
{count} selected
|
|
</span>
|
|
<div className="flex items-center gap-1">
|
|
{isTrashView ? (
|
|
<>
|
|
<button
|
|
className="flex items-center gap-1.5 border-none bg-transparent cursor-pointer"
|
|
style={actionBtnStyle}
|
|
onClick={onRestore}
|
|
title="Restore selected notes"
|
|
data-testid="bulk-restore-btn"
|
|
>
|
|
<ArrowCounterClockwise size={14} />
|
|
Restore
|
|
</button>
|
|
<button
|
|
className="flex items-center gap-1.5 border-none cursor-pointer"
|
|
style={destructiveBtnStyle}
|
|
onClick={onDeletePermanently}
|
|
title="Permanently delete selected notes"
|
|
data-testid="bulk-delete-btn"
|
|
>
|
|
<Trash size={14} />
|
|
Delete permanently
|
|
</button>
|
|
</>
|
|
) : (
|
|
<>
|
|
<button
|
|
className="flex items-center gap-1.5 border-none bg-transparent cursor-pointer"
|
|
style={actionBtnStyle}
|
|
onClick={onArchive}
|
|
title="Archive selected notes"
|
|
data-testid="bulk-archive-btn"
|
|
>
|
|
<Archive size={14} />
|
|
Archive
|
|
</button>
|
|
<button
|
|
className="flex items-center gap-1.5 border-none cursor-pointer"
|
|
style={destructiveBtnStyle}
|
|
onClick={onTrash}
|
|
title="Move selected notes to trash"
|
|
data-testid="bulk-trash-btn"
|
|
>
|
|
<Trash size={14} />
|
|
Trash
|
|
</button>
|
|
</>
|
|
)}
|
|
<button
|
|
className="flex items-center border-none bg-transparent cursor-pointer"
|
|
style={{ padding: '5px 6px', color: 'rgba(255,255,255,0.5)' }}
|
|
onClick={onClear}
|
|
title="Clear selection"
|
|
data-testid="bulk-clear-btn"
|
|
>
|
|
<X size={14} />
|
|
</button>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export const BulkActionBar = memo(BulkActionBarInner)
|