2026-02-14 19:46:44 +01:00
|
|
|
import { render, screen, fireEvent } from '@testing-library/react'
|
2026-02-14 20:07:23 +01:00
|
|
|
import { describe, it, expect, vi } from 'vitest'
|
2026-02-14 18:25:11 +01:00
|
|
|
import { NoteList } from './NoteList'
|
2026-02-14 19:44:39 +01:00
|
|
|
import type { VaultEntry, SidebarSelection } from '../types'
|
|
|
|
|
|
|
|
|
|
const allSelection: SidebarSelection = { kind: 'filter', filter: 'all' }
|
2026-02-14 20:07:23 +01:00
|
|
|
const noopSelect = vi.fn()
|
2026-02-14 19:44:39 +01:00
|
|
|
|
|
|
|
|
const mockEntries: VaultEntry[] = [
|
|
|
|
|
{
|
|
|
|
|
path: '/Users/luca/Laputa/project/26q1-laputa-app.md',
|
|
|
|
|
filename: '26q1-laputa-app.md',
|
|
|
|
|
title: 'Build Laputa App',
|
|
|
|
|
isA: 'Project',
|
|
|
|
|
aliases: [],
|
|
|
|
|
belongsTo: [],
|
|
|
|
|
relatedTo: ['[[topic/software-development]]'],
|
|
|
|
|
status: 'Active',
|
|
|
|
|
owner: 'Luca',
|
|
|
|
|
cadence: null,
|
|
|
|
|
modifiedAt: 1700000000,
|
|
|
|
|
fileSize: 1024,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
path: '/Users/luca/Laputa/note/facebook-ads-strategy.md',
|
|
|
|
|
filename: 'facebook-ads-strategy.md',
|
|
|
|
|
title: 'Facebook Ads Strategy',
|
|
|
|
|
isA: 'Note',
|
|
|
|
|
aliases: [],
|
|
|
|
|
belongsTo: ['[[project/26q1-laputa-app]]'],
|
|
|
|
|
relatedTo: ['[[topic/growth]]'],
|
|
|
|
|
status: null,
|
|
|
|
|
owner: null,
|
|
|
|
|
cadence: null,
|
|
|
|
|
modifiedAt: 1700000000,
|
|
|
|
|
fileSize: 847,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
path: '/Users/luca/Laputa/person/matteo-cellini.md',
|
|
|
|
|
filename: 'matteo-cellini.md',
|
|
|
|
|
title: 'Matteo Cellini',
|
|
|
|
|
isA: 'Person',
|
|
|
|
|
aliases: [],
|
|
|
|
|
belongsTo: [],
|
|
|
|
|
relatedTo: [],
|
|
|
|
|
status: null,
|
|
|
|
|
owner: null,
|
|
|
|
|
cadence: null,
|
|
|
|
|
modifiedAt: 1700000000,
|
|
|
|
|
fileSize: 320,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
path: '/Users/luca/Laputa/event/2026-02-14-kickoff.md',
|
|
|
|
|
filename: '2026-02-14-kickoff.md',
|
|
|
|
|
title: 'Kickoff Meeting',
|
|
|
|
|
isA: 'Event',
|
|
|
|
|
aliases: [],
|
|
|
|
|
belongsTo: [],
|
|
|
|
|
relatedTo: [],
|
|
|
|
|
status: null,
|
|
|
|
|
owner: null,
|
|
|
|
|
cadence: null,
|
|
|
|
|
modifiedAt: 1700000000,
|
|
|
|
|
fileSize: 512,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
path: '/Users/luca/Laputa/topic/software-development.md',
|
|
|
|
|
filename: 'software-development.md',
|
|
|
|
|
title: 'Software Development',
|
|
|
|
|
isA: 'Topic',
|
|
|
|
|
aliases: [],
|
|
|
|
|
belongsTo: [],
|
|
|
|
|
relatedTo: [],
|
|
|
|
|
status: null,
|
|
|
|
|
owner: null,
|
|
|
|
|
cadence: null,
|
|
|
|
|
modifiedAt: 1700000000,
|
|
|
|
|
fileSize: 256,
|
|
|
|
|
},
|
|
|
|
|
]
|
2026-02-14 18:25:11 +01:00
|
|
|
|
|
|
|
|
describe('NoteList', () => {
|
|
|
|
|
it('shows empty state when no entries', () => {
|
2026-02-15 10:05:19 +01:00
|
|
|
const { container } = render(<NoteList entries={[]} selection={allSelection} selectedNote={null} onSelectNote={noopSelect} allContent={{}} onCreateNote={vi.fn()} />)
|
2026-02-14 19:44:39 +01:00
|
|
|
expect(screen.getByText('No notes found')).toBeInTheDocument()
|
2026-02-15 10:05:19 +01:00
|
|
|
expect(container.querySelector('.note-list__count')!.textContent).toBe('0')
|
2026-02-14 18:25:11 +01:00
|
|
|
})
|
|
|
|
|
|
2026-02-14 19:44:39 +01:00
|
|
|
it('renders all entries with All Notes filter', () => {
|
2026-02-15 10:05:19 +01:00
|
|
|
const { container } = render(<NoteList entries={mockEntries} selection={allSelection} selectedNote={null} onSelectNote={noopSelect} allContent={{}} onCreateNote={vi.fn()} />)
|
2026-02-14 19:44:39 +01:00
|
|
|
expect(screen.getByText('Build Laputa App')).toBeInTheDocument()
|
|
|
|
|
expect(screen.getByText('Facebook Ads Strategy')).toBeInTheDocument()
|
|
|
|
|
expect(screen.getByText('Matteo Cellini')).toBeInTheDocument()
|
2026-02-15 10:05:19 +01:00
|
|
|
expect(container.querySelector('.note-list__count')!.textContent).toBe('5')
|
2026-02-14 19:44:39 +01:00
|
|
|
})
|
|
|
|
|
|
|
|
|
|
it('filters by People', () => {
|
2026-02-15 10:05:19 +01:00
|
|
|
const { container } = render(<NoteList entries={mockEntries} selection={{ kind: 'filter', filter: 'people' }} selectedNote={null} onSelectNote={noopSelect} allContent={{}} onCreateNote={vi.fn()} />)
|
2026-02-14 19:44:39 +01:00
|
|
|
expect(screen.getByText('Matteo Cellini')).toBeInTheDocument()
|
|
|
|
|
expect(screen.queryByText('Build Laputa App')).not.toBeInTheDocument()
|
2026-02-15 10:05:19 +01:00
|
|
|
expect(container.querySelector('.note-list__count')!.textContent).toBe('1')
|
2026-02-14 19:44:39 +01:00
|
|
|
})
|
|
|
|
|
|
|
|
|
|
it('filters by Events', () => {
|
2026-02-14 21:22:54 +01:00
|
|
|
render(<NoteList entries={mockEntries} selection={{ kind: 'filter', filter: 'events' }} selectedNote={null} onSelectNote={noopSelect} allContent={{}} onCreateNote={vi.fn()} />)
|
2026-02-14 19:44:39 +01:00
|
|
|
expect(screen.getByText('Kickoff Meeting')).toBeInTheDocument()
|
|
|
|
|
expect(screen.queryByText('Build Laputa App')).not.toBeInTheDocument()
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
it('filters by section group type', () => {
|
2026-02-15 10:05:19 +01:00
|
|
|
const { container } = render(<NoteList entries={mockEntries} selection={{ kind: 'sectionGroup', type: 'Project' }} selectedNote={null} onSelectNote={noopSelect} allContent={{}} onCreateNote={vi.fn()} />)
|
2026-02-14 19:44:39 +01:00
|
|
|
expect(screen.getByText('Build Laputa App')).toBeInTheDocument()
|
|
|
|
|
expect(screen.queryByText('Matteo Cellini')).not.toBeInTheDocument()
|
2026-02-15 10:05:19 +01:00
|
|
|
expect(container.querySelector('.note-list__count')!.textContent).toBe('1')
|
2026-02-14 19:44:39 +01:00
|
|
|
})
|
|
|
|
|
|
|
|
|
|
it('shows entity pinned at top with children', () => {
|
2026-02-15 10:05:19 +01:00
|
|
|
const { container } = render(
|
2026-02-14 21:22:54 +01:00
|
|
|
<NoteList entries={mockEntries} selection={{ kind: 'entity', entry: mockEntries[0] }} selectedNote={null} onSelectNote={noopSelect} allContent={{}} onCreateNote={vi.fn()} />
|
2026-02-14 19:44:39 +01:00
|
|
|
)
|
|
|
|
|
// Pinned entity + child (Facebook Ads Strategy belongsTo this project)
|
|
|
|
|
expect(screen.getByText('Build Laputa App')).toBeInTheDocument()
|
|
|
|
|
expect(screen.getByText('Facebook Ads Strategy')).toBeInTheDocument()
|
|
|
|
|
expect(screen.queryByText('Matteo Cellini')).not.toBeInTheDocument()
|
2026-02-15 10:05:19 +01:00
|
|
|
expect(container.querySelector('.note-list__count')!.textContent).toBe('2')
|
2026-02-14 18:25:11 +01:00
|
|
|
})
|
2026-02-14 19:44:39 +01:00
|
|
|
|
|
|
|
|
it('filters by topic (relatedTo references)', () => {
|
|
|
|
|
render(
|
2026-02-14 21:22:54 +01:00
|
|
|
<NoteList entries={mockEntries} selection={{ kind: 'topic', entry: mockEntries[4] }} selectedNote={null} onSelectNote={noopSelect} allContent={{}} onCreateNote={vi.fn()} />
|
2026-02-14 19:44:39 +01:00
|
|
|
)
|
|
|
|
|
// Build Laputa App has relatedTo: [[topic/software-development]]
|
|
|
|
|
expect(screen.getByText('Build Laputa App')).toBeInTheDocument()
|
|
|
|
|
expect(screen.queryByText('Facebook Ads Strategy')).not.toBeInTheDocument()
|
|
|
|
|
})
|
2026-02-14 19:46:44 +01:00
|
|
|
|
|
|
|
|
it('renders a search bar', () => {
|
2026-02-14 21:22:54 +01:00
|
|
|
render(<NoteList entries={mockEntries} selection={allSelection} selectedNote={null} onSelectNote={noopSelect} allContent={{}} onCreateNote={vi.fn()} />)
|
2026-02-14 19:46:44 +01:00
|
|
|
expect(screen.getByPlaceholderText('Search notes...')).toBeInTheDocument()
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
it('filters by search query (case-insensitive substring)', () => {
|
2026-02-15 10:05:19 +01:00
|
|
|
const { container } = render(<NoteList entries={mockEntries} selection={allSelection} selectedNote={null} onSelectNote={noopSelect} allContent={{}} onCreateNote={vi.fn()} />)
|
2026-02-14 19:46:44 +01:00
|
|
|
const input = screen.getByPlaceholderText('Search notes...')
|
|
|
|
|
fireEvent.change(input, { target: { value: 'facebook' } })
|
|
|
|
|
expect(screen.getByText('Facebook Ads Strategy')).toBeInTheDocument()
|
|
|
|
|
expect(screen.queryByText('Build Laputa App')).not.toBeInTheDocument()
|
2026-02-15 10:05:19 +01:00
|
|
|
expect(container.querySelector('.note-list__count')!.textContent).toBe('1')
|
2026-02-14 19:46:44 +01:00
|
|
|
})
|
|
|
|
|
|
|
|
|
|
it('sorts entries by last modified descending', () => {
|
|
|
|
|
const entriesWithDifferentDates: VaultEntry[] = [
|
|
|
|
|
{ ...mockEntries[0], modifiedAt: 1000, title: 'Oldest' },
|
|
|
|
|
{ ...mockEntries[1], modifiedAt: 3000, title: 'Newest', path: '/p2' },
|
|
|
|
|
{ ...mockEntries[2], modifiedAt: 2000, title: 'Middle', path: '/p3' },
|
|
|
|
|
]
|
2026-02-14 21:22:54 +01:00
|
|
|
render(<NoteList entries={entriesWithDifferentDates} selection={allSelection} selectedNote={null} onSelectNote={noopSelect} allContent={{}} onCreateNote={vi.fn()} />)
|
2026-02-14 20:07:23 +01:00
|
|
|
const titles = screen.getAllByText(/Oldest|Newest|Middle/)
|
2026-02-14 19:46:44 +01:00
|
|
|
const titleTexts = titles.map((el) => el.textContent)
|
|
|
|
|
expect(titleTexts).toEqual(['Newest', 'Middle', 'Oldest'])
|
|
|
|
|
})
|
2026-02-14 19:48:59 +01:00
|
|
|
|
2026-02-15 10:05:19 +01:00
|
|
|
it('renders type filter pills with counts and hides empty types', () => {
|
2026-02-14 21:22:54 +01:00
|
|
|
const { container } = render(<NoteList entries={mockEntries} selection={allSelection} selectedNote={null} onSelectNote={noopSelect} allContent={{}} onCreateNote={vi.fn()} />)
|
2026-02-14 19:48:59 +01:00
|
|
|
const pills = container.querySelectorAll('.note-list__pill')
|
|
|
|
|
const labels = Array.from(pills).map((p) => p.textContent)
|
2026-02-15 10:05:19 +01:00
|
|
|
expect(labels).toContain('All 5')
|
|
|
|
|
expect(labels).toContain('Projects 1')
|
|
|
|
|
expect(labels).toContain('Notes 1')
|
|
|
|
|
expect(labels).toContain('Events 1')
|
|
|
|
|
expect(labels).toContain('People 1')
|
|
|
|
|
// Empty types should be hidden
|
|
|
|
|
expect(labels.some((l) => l?.startsWith('Experiments'))).toBe(false)
|
|
|
|
|
expect(labels.some((l) => l?.startsWith('Procedures'))).toBe(false)
|
|
|
|
|
expect(labels.some((l) => l?.startsWith('Responsibilities'))).toBe(false)
|
2026-02-14 19:48:59 +01:00
|
|
|
})
|
|
|
|
|
|
|
|
|
|
it('filters by type pill', () => {
|
2026-02-15 10:05:19 +01:00
|
|
|
const { container } = render(<NoteList entries={mockEntries} selection={allSelection} selectedNote={null} onSelectNote={noopSelect} allContent={{}} onCreateNote={vi.fn()} />)
|
|
|
|
|
const projectsPill = Array.from(container.querySelectorAll('.note-list__pill')).find((p) => p.textContent?.startsWith('Projects'))!
|
|
|
|
|
fireEvent.click(projectsPill)
|
2026-02-14 19:48:59 +01:00
|
|
|
expect(screen.getByText('Build Laputa App')).toBeInTheDocument()
|
|
|
|
|
expect(screen.queryByText('Matteo Cellini')).not.toBeInTheDocument()
|
|
|
|
|
expect(screen.queryByText('Facebook Ads Strategy')).not.toBeInTheDocument()
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
it('clicking All pill resets type filter', () => {
|
2026-02-15 10:05:19 +01:00
|
|
|
const { container } = render(<NoteList entries={mockEntries} selection={allSelection} selectedNote={null} onSelectNote={noopSelect} allContent={{}} onCreateNote={vi.fn()} />)
|
|
|
|
|
const peoplePill = Array.from(container.querySelectorAll('.note-list__pill')).find((p) => p.textContent?.startsWith('People'))!
|
|
|
|
|
fireEvent.click(peoplePill)
|
2026-02-14 19:48:59 +01:00
|
|
|
expect(screen.queryByText('Build Laputa App')).not.toBeInTheDocument()
|
2026-02-15 10:05:19 +01:00
|
|
|
const allPill = Array.from(container.querySelectorAll('.note-list__pill')).find((p) => p.textContent?.startsWith('All'))!
|
|
|
|
|
fireEvent.click(allPill)
|
2026-02-14 19:48:59 +01:00
|
|
|
expect(screen.getByText('Build Laputa App')).toBeInTheDocument()
|
|
|
|
|
})
|
2026-02-14 18:25:11 +01:00
|
|
|
})
|