Remove IBM Plex Mono + text-transform: uppercase from all UI labels. CSS classes .font-mono-label and .font-mono-overline now use Inter with no text-transform. Inline monospace+uppercase styles in StatusDropdown, TagsDropdown, ReferencedByPanel, AiActionCard replaced. Tailwind uppercase removed from Sidebar, CommandPalette, PulseView, CreateNoteDialog, CreateTypeDialog. Hardcoded ALL CAPS text (COLOR, ICON, TEMPLATE) converted to sentence case. Code blocks and commit hashes remain monospaced. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
221 lines
8.4 KiB
TypeScript
221 lines
8.4 KiB
TypeScript
import { describe, it, expect, vi, beforeEach } from 'vitest'
|
|
import { render, screen, fireEvent } from '@testing-library/react'
|
|
import { CommandPalette } from './CommandPalette'
|
|
import type { CommandAction } from '../hooks/useCommandRegistry'
|
|
|
|
// jsdom doesn't implement scrollIntoView
|
|
Element.prototype.scrollIntoView = vi.fn()
|
|
|
|
const makeCommand = (overrides: Partial<CommandAction> = {}): CommandAction => ({
|
|
id: 'test-cmd',
|
|
label: 'Test Command',
|
|
group: 'Navigation',
|
|
keywords: [],
|
|
enabled: true,
|
|
shortcut: undefined,
|
|
execute: vi.fn(),
|
|
...overrides,
|
|
})
|
|
|
|
const commands: CommandAction[] = [
|
|
makeCommand({ id: 'search-notes', label: 'Search Notes', group: 'Navigation', shortcut: '⌘P', keywords: ['find'] }),
|
|
makeCommand({ id: 'create-note', label: 'Create New Note', group: 'Note', shortcut: '⌘N' }),
|
|
makeCommand({ id: 'commit-push', label: 'Commit & Push', group: 'Git', keywords: ['git', 'sync'] }),
|
|
makeCommand({ id: 'open-settings', label: 'Open Settings', group: 'Settings', shortcut: '⌘,' }),
|
|
makeCommand({ id: 'disabled-cmd', label: 'Disabled Command', group: 'Note', enabled: false }),
|
|
]
|
|
|
|
describe('CommandPalette', () => {
|
|
const onClose = vi.fn()
|
|
|
|
beforeEach(() => {
|
|
vi.clearAllMocks()
|
|
})
|
|
|
|
it('renders nothing when closed', () => {
|
|
const { container } = render(
|
|
<CommandPalette open={false} commands={commands} onClose={onClose} />,
|
|
)
|
|
expect(container.firstChild).toBeNull()
|
|
})
|
|
|
|
it('shows search input when open', () => {
|
|
render(<CommandPalette open={true} commands={commands} onClose={onClose} />)
|
|
expect(screen.getByPlaceholderText('Type a command...')).toBeInTheDocument()
|
|
})
|
|
|
|
it('shows all enabled commands grouped by category', () => {
|
|
render(<CommandPalette open={true} commands={commands} onClose={onClose} />)
|
|
expect(screen.getByText('Search Notes')).toBeInTheDocument()
|
|
expect(screen.getByText('Create New Note')).toBeInTheDocument()
|
|
expect(screen.getByText('Commit & Push')).toBeInTheDocument()
|
|
expect(screen.getByText('Open Settings')).toBeInTheDocument()
|
|
// Disabled command should not appear
|
|
expect(screen.queryByText('Disabled Command')).not.toBeInTheDocument()
|
|
})
|
|
|
|
it('shows group labels', () => {
|
|
render(<CommandPalette open={true} commands={commands} onClose={onClose} />)
|
|
expect(screen.getByText('Navigation')).toBeInTheDocument()
|
|
expect(screen.getByText('Note')).toBeInTheDocument()
|
|
expect(screen.getByText('Git')).toBeInTheDocument()
|
|
expect(screen.getByText('Settings')).toBeInTheDocument()
|
|
})
|
|
|
|
it('shows keyboard shortcuts', () => {
|
|
render(<CommandPalette open={true} commands={commands} onClose={onClose} />)
|
|
expect(screen.getByText('⌘P')).toBeInTheDocument()
|
|
expect(screen.getByText('⌘N')).toBeInTheDocument()
|
|
expect(screen.getByText('⌘,')).toBeInTheDocument()
|
|
})
|
|
|
|
it('filters commands by fuzzy search', () => {
|
|
render(<CommandPalette open={true} commands={commands} onClose={onClose} />)
|
|
const input = screen.getByPlaceholderText('Type a command...')
|
|
fireEvent.change(input, { target: { value: 'commit' } })
|
|
|
|
expect(screen.getByText('Commit & Push')).toBeInTheDocument()
|
|
expect(screen.queryByText('Search Notes')).not.toBeInTheDocument()
|
|
})
|
|
|
|
it('matches by keyword', () => {
|
|
render(<CommandPalette open={true} commands={commands} onClose={onClose} />)
|
|
const input = screen.getByPlaceholderText('Type a command...')
|
|
fireEvent.change(input, { target: { value: 'find' } })
|
|
|
|
expect(screen.getByText('Search Notes')).toBeInTheDocument()
|
|
})
|
|
|
|
it('shows "No matching commands" when no results', () => {
|
|
render(<CommandPalette open={true} commands={commands} onClose={onClose} />)
|
|
const input = screen.getByPlaceholderText('Type a command...')
|
|
fireEvent.change(input, { target: { value: 'zzzzzzz' } })
|
|
|
|
expect(screen.getByText('No matching commands')).toBeInTheDocument()
|
|
})
|
|
|
|
it('calls onClose when pressing Escape', () => {
|
|
render(<CommandPalette open={true} commands={commands} onClose={onClose} />)
|
|
fireEvent.keyDown(window, { key: 'Escape' })
|
|
expect(onClose).toHaveBeenCalled()
|
|
})
|
|
|
|
it('executes command and closes on Enter', () => {
|
|
render(<CommandPalette open={true} commands={commands} onClose={onClose} />)
|
|
fireEvent.keyDown(window, { key: 'Enter' })
|
|
|
|
// First enabled command (Search Notes) should execute
|
|
expect(commands[0].execute).toHaveBeenCalled()
|
|
expect(onClose).toHaveBeenCalled()
|
|
})
|
|
|
|
it('navigates with arrow keys and selects with Enter', () => {
|
|
render(<CommandPalette open={true} commands={commands} onClose={onClose} />)
|
|
|
|
fireEvent.keyDown(window, { key: 'ArrowDown' })
|
|
fireEvent.keyDown(window, { key: 'Enter' })
|
|
|
|
// Second enabled command (Create New Note) should execute
|
|
expect(commands[1].execute).toHaveBeenCalled()
|
|
expect(onClose).toHaveBeenCalled()
|
|
})
|
|
|
|
it('does not go below the last item', () => {
|
|
render(<CommandPalette open={true} commands={commands} onClose={onClose} />)
|
|
|
|
for (let i = 0; i < 20; i++) {
|
|
fireEvent.keyDown(window, { key: 'ArrowDown' })
|
|
}
|
|
fireEvent.keyDown(window, { key: 'Enter' })
|
|
|
|
// Should select last enabled command (Open Settings)
|
|
expect(commands[3].execute).toHaveBeenCalled()
|
|
})
|
|
|
|
it('does not go above first item', () => {
|
|
render(<CommandPalette open={true} commands={commands} onClose={onClose} />)
|
|
|
|
fireEvent.keyDown(window, { key: 'ArrowUp' })
|
|
fireEvent.keyDown(window, { key: 'Enter' })
|
|
|
|
// Should still select first command
|
|
expect(commands[0].execute).toHaveBeenCalled()
|
|
})
|
|
|
|
it('calls onClose when clicking backdrop', () => {
|
|
render(<CommandPalette open={true} commands={commands} onClose={onClose} />)
|
|
|
|
const backdrop = screen.getByPlaceholderText('Type a command...').closest('.fixed')!
|
|
fireEvent.click(backdrop)
|
|
|
|
expect(onClose).toHaveBeenCalled()
|
|
})
|
|
|
|
it('executes command when clicking an item', () => {
|
|
render(<CommandPalette open={true} commands={commands} onClose={onClose} />)
|
|
fireEvent.click(screen.getByText('Commit & Push'))
|
|
|
|
expect(commands[2].execute).toHaveBeenCalled()
|
|
expect(onClose).toHaveBeenCalled()
|
|
})
|
|
|
|
it('shows footer hints', () => {
|
|
render(<CommandPalette open={true} commands={commands} onClose={onClose} />)
|
|
expect(screen.getByText('↑↓ navigate')).toBeInTheDocument()
|
|
expect(screen.getByText('↵ select')).toBeInTheDocument()
|
|
expect(screen.getByText('esc close')).toBeInTheDocument()
|
|
})
|
|
|
|
describe('relevance ranking', () => {
|
|
const relevanceCommands: CommandAction[] = [
|
|
makeCommand({ id: 'create-note', label: 'Create New Note', group: 'Note' }),
|
|
makeCommand({ id: 'toggle-raw', label: 'Toggle Raw Editor', group: 'View' }),
|
|
makeCommand({ id: 'search-notes', label: 'Search Notes', group: 'Navigation' }),
|
|
]
|
|
|
|
function getVisibleLabels() {
|
|
return screen.getAllByText(
|
|
(_content, el) =>
|
|
el?.tagName === 'SPAN' &&
|
|
el.classList.contains('text-foreground') &&
|
|
!!el.textContent,
|
|
).map(el => el.textContent)
|
|
}
|
|
|
|
it('ranks "Toggle Raw Editor" before "Create New Note" for query "raw"', () => {
|
|
render(<CommandPalette open={true} commands={relevanceCommands} onClose={onClose} />)
|
|
fireEvent.change(screen.getByPlaceholderText('Type a command...'), { target: { value: 'raw' } })
|
|
|
|
const labels = getVisibleLabels()
|
|
const rawIdx = labels.indexOf('Toggle Raw Editor')
|
|
const createIdx = labels.indexOf('Create New Note')
|
|
expect(rawIdx).toBeGreaterThanOrEqual(0)
|
|
expect(createIdx).toBeGreaterThanOrEqual(0)
|
|
expect(rawIdx).toBeLessThan(createIdx)
|
|
})
|
|
|
|
it('ranks "Create New Note" first for query "new note"', () => {
|
|
render(<CommandPalette open={true} commands={relevanceCommands} onClose={onClose} />)
|
|
fireEvent.change(screen.getByPlaceholderText('Type a command...'), { target: { value: 'new note' } })
|
|
|
|
const labels = getVisibleLabels()
|
|
expect(labels[0]).toBe('Create New Note')
|
|
})
|
|
|
|
it('preserves default section order with empty query', () => {
|
|
render(<CommandPalette open={true} commands={relevanceCommands} onClose={onClose} />)
|
|
|
|
const groupHeaders = screen.getAllByText(
|
|
(_content, el) =>
|
|
el?.tagName === 'DIV' &&
|
|
el.classList.contains('text-[11px]') &&
|
|
el.classList.contains('font-medium') &&
|
|
!!el.textContent,
|
|
).map(el => el.textContent)
|
|
|
|
// Default order: Navigation < Note < View
|
|
expect(groupHeaders).toEqual(['Navigation', 'Note', 'View'])
|
|
})
|
|
})
|
|
})
|