Cell edits now actually persist. Row-level batch save fires on
row-blur (selection moves to a different row); the request is one
PUT with the full merged row (server-side data + client drafts)
and If-Match: <etag> for optimistic concurrency. Conflict and
validation responses are surfaced inline; drafts are NEVER silently
discarded — when the server says no, the user's typing stays put
until they explicitly reload or replay.
Architecture (per the research synthesis from earlier in this
sequence):
- ETag tracking: context.js readRows captures the per-row ETag
from HttpFileHandle's response header on the initial GET.
Stashed at row.etag alongside row.data and row.yamlUrl. Phase 3
reads it; later phases (undo replay) inherit it.
- Row-blur trigger: editor.js setSelected calls a new
notifySelectionChanged() hook after selection lands. save.js's
onSelectionChanged tracks _previousSelectedRowId; when it
changes AND the previous row had drafts, fires saveRow(prevId).
Fire-and-forget — don't block the user's flow on the network.
- save.saveRow flow:
1. mergeRow(row.data, drafts) → full updated row.
2. js-yaml dump → wire body.
3. PUT row.yamlUrl, body, headers={Content-Type, If-Match}.
4. Branch on response status:
- 200/201 → success: clear drafts + invalid marks, capture
new ETag from response, replace row.data with merged.
- 202 → outbox queued (downstream client offline):
clear drafts (the outbox owns them now), mark row queued.
- 412 → stale: drafts STAY; mark row stale; show
status-bar prompt with [Use mine] / [Reload] buttons.
- 422 → server validation failed; body has
{errors: [{path, message}]}; mark each cell invalid via
a red-corner CSS marker + title-attribute tooltip.
- other → mark errored; drafts stay.
- Conflict resolution UX:
- "Use mine" replays the user's drafts onto fresh server
state. Re-GETs the row to learn the new ETag + new server
data, replaces row.data with the fresh server values, then
re-PUTs the merge of fresh + drafts. This is client-side
field-level last-writer-wins: fields the user did NOT
touch get the server's new values automatically; only
fields the user changed override server state. No JSON
Patch endpoint required — pure client logic on top of the
existing whole-row PUT path.
- "Reload" drops drafts entirely, re-GETs the row, repaints.
- Validation error display: per-cell red-corner triangle
(Excel-style) plus title-attribute tooltip on hover. Marker
keyed off data-col-idx + the column's field; survives until
the next edit on that cell or the next paint() cycle.
- beforeunload safety net: any rows with drafts at unload time
get one fire-and-forget save attempt. Modern browsers limit
what beforeunload can do; a follow-up could add fetch's
keepalive flag for a more reliable last-shot.
UI surfaces:
- Per-row state classes drive a left-border swatch in the first
cell:
--dirty subtle blue (uncommitted changes)
--saving muted grey (PUT in flight)
--queued warm yellow (outbox accepted)
--invalid orange (server 422)
--stale warning amber (server 412 — also tints row bg)
--errored red (other failure — also tints row bg)
These re-apply across re-paints via save.markAllDirtyRows()
called from main.js's paint() hook (innerHTML='' wipes them).
- #table-status doubles as the conflict prompt host. When a row
goes stale, the bar shows
"This row was changed by someone else. [Use mine] [Reload] [×]"
and the row-id it's bound to is stored on data-row-id so a
successful reload of that row dismisses the prompt.
Outbox (downstream client) interaction:
The cache layer's PUT-replay queue intercepts saves transparently.
On local network failure the cache returns 202 with
X-ZDDC-Cache: queued; we treat 202 as "succeeded for now" —
drafts clear (the outbox owns them and will replay), but the
row stays marked --queued so the user knows the write hasn't
reached upstream yet. When the cache replays and gets a
real 200/201/412/etc., the row state will reflect that on next
read (next paint cycle / page refresh).
Tests (4 new Phase 3 specs, total 31 in tests/tables.spec.js):
- row-blur fires PUT with merged drafts + If-Match. Edit a
cell in row 0, Enter (commits + moves to row 1). Verifies
PUT went out with the right URL, the merged YAML body
contains the new value AND the unchanged fields, and the
If-Match header carries the original ETag.
- 412 conflict marks row stale + shows status prompt. Verifies
the row gains the stale class, the status bar appears with
both [Use mine] and [Reload] buttons, AND the draft is
preserved (never silently dropped on conflict).
- 422 validation errors mark cells invalid. Verifies multiple
field errors → multiple red-corner cells.
- Reload button drops drafts and refreshes. Verifies the bar
hides and drafts clear after a successful reload GET.
Setup: a small page.route helper intercepts http://test.local/*
PUTs and GETs, lets each test queue the next response via
window.__nextResponse, and captures requests at
window.__capturedRequests for inspection. Test fixtures use
absolute http URLs in row.yamlUrl so the route catches them.
Bundle size: 127 KB → 134 KB.
Files:
- tables/js/save.js (new) — saveRow, useMine, reload, status
prompt, row-state markers, beforeunload flush.
- tables/js/editor.js — notifySelectionChanged hook.
- tables/js/context.js — etag + yamlUrl on each row.
- tables/js/main.js — paint() re-applies dirty markers via
save.markAllDirtyRows; exposes app.repaint for save callbacks.
- tables/build.sh — save.js in concat list.
- tables/css/table.css — row-state classes + invalid-cell corner
+ status-bar prompt styling.
- zddc/internal/handler/tables.html — regenerated bundle.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
755 lines
32 KiB
JavaScript
755 lines
32 KiB
JavaScript
import { test, expect } from '@playwright/test';
|
|
import * as fs from 'fs';
|
|
import * as os from 'os';
|
|
import * as path from 'path';
|
|
|
|
const HTML_PATH = path.resolve('tables/dist/tables.html');
|
|
const HTML_RAW = fs.readFileSync(HTML_PATH, 'utf8');
|
|
|
|
const MDL_COLUMNS = [
|
|
{ field: 'id', title: 'ID', width: '6em' },
|
|
{ field: 'title', title: 'Deliverable' },
|
|
{ field: 'party', title: 'Party', enum: ['Acme', 'Beta', 'Gamma'] },
|
|
{ field: 'dueDate', title: 'Due', format: 'date' },
|
|
{ field: 'status', title: 'Status', enum: ['pending', 'submitted', 'accepted'] },
|
|
];
|
|
|
|
function makeRow(id, title, party, dueDate, status, editable = true) {
|
|
return {
|
|
url: `/Working/MDL/${id}.yaml.html`,
|
|
data: { id, title, party, dueDate, status },
|
|
editable,
|
|
};
|
|
}
|
|
|
|
const ROWS = [
|
|
makeRow('D-001', 'Site survey report', 'Acme', '2026-05-12', 'pending'),
|
|
makeRow('D-002', 'Foundation drawings A', 'Beta', '2026-05-20', 'submitted'),
|
|
makeRow('D-003', 'Procurement schedule', 'Acme', '2026-05-08', 'accepted'),
|
|
makeRow('D-004', 'Safety plan', 'Gamma', '2026-05-15', 'pending'),
|
|
makeRow('D-005', 'Geotechnical report', 'Beta', '2026-05-30', 'submitted'),
|
|
];
|
|
|
|
// Inject a complete table context into the page. Same pattern as
|
|
// form-safety.spec.js: write a patched copy of tables.html to a temp
|
|
// file and navigate via file://.
|
|
async function loadTableWithContext(page, context) {
|
|
const ctxJson = JSON.stringify(context).replace(/<\//g, '<\\/');
|
|
const replacement = `<script id="table-context" type="application/json">${ctxJson}</script>`;
|
|
const patched = HTML_RAW.replace(
|
|
/<script id="table-context" type="application\/json">[\s\S]*?<\/script>/,
|
|
replacement,
|
|
);
|
|
const tmpDir = fs.mkdtempSync(path.join(os.tmpdir(), 'tables-spec-'));
|
|
const tmpPath = path.join(tmpDir, 'tables.html');
|
|
fs.writeFileSync(tmpPath, patched);
|
|
await page.goto(`file://${tmpPath}`, { waitUntil: 'load' });
|
|
}
|
|
|
|
test.describe('tables/ — directory-of-YAML table view', () => {
|
|
test('renders header with column titles and rows from context', async ({ page }) => {
|
|
page.on('pageerror', e => console.log('[pageerror]', e.message));
|
|
await loadTableWithContext(page, {
|
|
title: 'Master Deliverables List',
|
|
columns: MDL_COLUMNS,
|
|
rows: ROWS,
|
|
});
|
|
|
|
await page.waitForFunction(
|
|
() => document.querySelector('#table-root tbody').children.length > 0,
|
|
null,
|
|
{ timeout: 5000 },
|
|
);
|
|
|
|
// Header cells.
|
|
const headers = page.locator('.zddc-table__title-row .zddc-table__th');
|
|
await expect(headers).toHaveCount(MDL_COLUMNS.length);
|
|
await expect(headers.nth(0)).toContainText('ID');
|
|
await expect(headers.nth(1)).toContainText('Deliverable');
|
|
|
|
// Title in the page header.
|
|
await expect(page.locator('#table-title')).toContainText('Master Deliverables List');
|
|
|
|
// Row count.
|
|
await expect(page.locator('#table-root tbody tr')).toHaveCount(ROWS.length);
|
|
await expect(page.locator('#table-rowcount')).toContainText(`${ROWS.length} rows`);
|
|
});
|
|
|
|
test('default sort puts dueDate ascending when configured', async ({ page }) => {
|
|
await loadTableWithContext(page, {
|
|
columns: MDL_COLUMNS,
|
|
rows: ROWS,
|
|
defaults: { sort: [{ field: 'dueDate', dir: 'asc' }] },
|
|
});
|
|
|
|
await page.waitForSelector('#table-root tbody tr');
|
|
const ids = await page.locator('#table-root tbody tr td:first-child').allTextContents();
|
|
// Sorted ascending by dueDate: D-003 (5/8), D-001 (5/12), D-004 (5/15), D-002 (5/20), D-005 (5/30).
|
|
expect(ids).toEqual(['D-003', 'D-001', 'D-004', 'D-002', 'D-005']);
|
|
});
|
|
|
|
test('clicking a column header sorts by that column and toggles direction', async ({ page }) => {
|
|
await loadTableWithContext(page, {
|
|
columns: MDL_COLUMNS,
|
|
rows: ROWS,
|
|
});
|
|
|
|
await page.waitForSelector('#table-root tbody tr');
|
|
|
|
// Click the ID header → sort ascending.
|
|
await page.locator('.zddc-table__th[data-field="id"]').click();
|
|
let ids = await page.locator('#table-root tbody tr td:first-child').allTextContents();
|
|
expect(ids).toEqual(['D-001', 'D-002', 'D-003', 'D-004', 'D-005']);
|
|
|
|
// Click again → descending.
|
|
await page.locator('.zddc-table__th[data-field="id"]').click();
|
|
ids = await page.locator('#table-root tbody tr td:first-child').allTextContents();
|
|
expect(ids).toEqual(['D-005', 'D-004', 'D-003', 'D-002', 'D-001']);
|
|
});
|
|
|
|
test('free-text filter narrows visible rows', async ({ page }) => {
|
|
await loadTableWithContext(page, {
|
|
columns: MDL_COLUMNS,
|
|
rows: ROWS,
|
|
});
|
|
await page.waitForSelector('#table-root tbody tr');
|
|
|
|
// Type "report" in the title column's filter — should match the
|
|
// two rows whose title contains "report" (Site survey report,
|
|
// Geotechnical report).
|
|
const titleFilter = page.locator('.zddc-table__th[data-field="title"]')
|
|
.locator('..')
|
|
.locator('xpath=following-sibling::tr[1]')
|
|
.locator('input[type="text"]')
|
|
.nth(0);
|
|
// Simpler selector: nth filter input under the filter row.
|
|
const filterInputs = page.locator('.zddc-table__filter-row input[type="text"]');
|
|
await filterInputs.nth(1).fill('report'); // index 1 = title column
|
|
await expect(page.locator('#table-root tbody tr')).toHaveCount(2);
|
|
});
|
|
|
|
test('text filter on an enum column does substring match', async ({ page }) => {
|
|
// Filter row is uniformly text-contains across all columns —
|
|
// even for columns declared with `enum:` in the spec. Enum
|
|
// metadata still informs validation/sort but not filter UI.
|
|
await loadTableWithContext(page, {
|
|
columns: MDL_COLUMNS,
|
|
rows: ROWS,
|
|
});
|
|
await page.waitForSelector('#table-root tbody tr');
|
|
|
|
const filterInputs = page.locator('.zddc-table__filter-row input[type="text"]');
|
|
// Spec columns: 0=id, 1=title, 2=party, 3=dueDate, 4=status.
|
|
const statusInput = filterInputs.nth(4);
|
|
await statusInput.fill('pending');
|
|
await expect(page.locator('#table-root tbody tr')).toHaveCount(2);
|
|
});
|
|
|
|
test('clicking a cell selects it (Phase 1 — replaces row-click navigation)', async ({ page }) => {
|
|
// Single click → cell selection. Row navigation moves to a
|
|
// dedicated affordance in Phase 2 (open-in-form button) so the
|
|
// primary click action can be the spreadsheet-native one.
|
|
await loadTableWithContext(page, {
|
|
columns: MDL_COLUMNS,
|
|
rows: ROWS,
|
|
});
|
|
await page.waitForSelector('#table-root tbody tr');
|
|
|
|
// Stub navigate seam — verifies single-click does NOT navigate.
|
|
await page.evaluate(() => {
|
|
window.__navTarget = null;
|
|
window.tablesApp.navigateTo = url => { window.__navTarget = url; };
|
|
});
|
|
|
|
// Click a specific cell.
|
|
const firstCell = page.locator('#table-root tbody tr').first().locator('[role="gridcell"]').first();
|
|
await firstCell.click();
|
|
|
|
await expect(firstCell).toHaveClass(/zddc-table__cell--selected/);
|
|
await expect(firstCell).toHaveAttribute('tabindex', '0');
|
|
await expect(page.evaluate(() => window.__navTarget)).resolves.toBeNull();
|
|
});
|
|
|
|
test('arrow keys move cell selection (ARIA grid)', async ({ page }) => {
|
|
await loadTableWithContext(page, {
|
|
columns: MDL_COLUMNS,
|
|
rows: ROWS,
|
|
});
|
|
await page.waitForSelector('#table-root tbody tr');
|
|
|
|
// Click to seed selection at (0,0), then arrow around.
|
|
const r0c0 = page.locator('#table-root tbody tr').nth(0).locator('[role="gridcell"]').nth(0);
|
|
await r0c0.click();
|
|
await expect(r0c0).toHaveClass(/zddc-table__cell--selected/);
|
|
|
|
await page.keyboard.press('ArrowDown');
|
|
const r1c0 = page.locator('#table-root tbody tr').nth(1).locator('[role="gridcell"]').nth(0);
|
|
await expect(r1c0).toHaveClass(/zddc-table__cell--selected/);
|
|
|
|
await page.keyboard.press('ArrowRight');
|
|
const r1c1 = page.locator('#table-root tbody tr').nth(1).locator('[role="gridcell"]').nth(1);
|
|
await expect(r1c1).toHaveClass(/zddc-table__cell--selected/);
|
|
|
|
await page.keyboard.press('ArrowUp');
|
|
const r0c1 = page.locator('#table-root tbody tr').nth(0).locator('[role="gridcell"]').nth(1);
|
|
await expect(r0c1).toHaveClass(/zddc-table__cell--selected/);
|
|
|
|
await page.keyboard.press('ArrowLeft');
|
|
await expect(r0c0).toHaveClass(/zddc-table__cell--selected/);
|
|
});
|
|
|
|
test('Tab and Shift-Tab traverse cells with row-wrap', async ({ page }) => {
|
|
await loadTableWithContext(page, {
|
|
columns: MDL_COLUMNS,
|
|
rows: ROWS,
|
|
});
|
|
await page.waitForSelector('#table-root tbody tr');
|
|
|
|
const numCols = MDL_COLUMNS.length;
|
|
// Start at last column of row 0.
|
|
const r0Last = page.locator('#table-root tbody tr').nth(0).locator('[role="gridcell"]').nth(numCols - 1);
|
|
await r0Last.click();
|
|
await expect(r0Last).toHaveClass(/zddc-table__cell--selected/);
|
|
|
|
// Tab → first cell of row 1 (wrap).
|
|
await page.keyboard.press('Tab');
|
|
const r1First = page.locator('#table-root tbody tr').nth(1).locator('[role="gridcell"]').nth(0);
|
|
await expect(r1First).toHaveClass(/zddc-table__cell--selected/);
|
|
|
|
// Shift+Tab → back to last cell of row 0.
|
|
await page.keyboard.press('Shift+Tab');
|
|
await expect(r0Last).toHaveClass(/zddc-table__cell--selected/);
|
|
});
|
|
|
|
test('Enter enters edit mode; Enter commits and moves down', async ({ page }) => {
|
|
await loadTableWithContext(page, {
|
|
columns: MDL_COLUMNS,
|
|
rows: ROWS,
|
|
});
|
|
await page.waitForSelector('#table-root tbody tr');
|
|
|
|
// Edit the title cell (column index 1) of row 0.
|
|
const titleCell = page.locator('#table-root tbody tr').nth(0).locator('[role="gridcell"]').nth(1);
|
|
await titleCell.click();
|
|
await page.keyboard.press('Enter');
|
|
|
|
// Editor input mounted inside the cell.
|
|
const input = titleCell.locator('input.zddc-table__cell-input');
|
|
await expect(input).toBeVisible();
|
|
await expect(input).toBeFocused();
|
|
|
|
// Type new value, press Enter to commit + move down.
|
|
await page.keyboard.press('Control+a');
|
|
await page.keyboard.type('New title via cell editor');
|
|
await page.keyboard.press('Enter');
|
|
|
|
// Cell shows new value, input gone.
|
|
await expect(titleCell).toContainText('New title via cell editor');
|
|
await expect(titleCell.locator('input')).toHaveCount(0);
|
|
|
|
// Selection moved down one row, same column.
|
|
const r1Title = page.locator('#table-root tbody tr').nth(1).locator('[role="gridcell"]').nth(1);
|
|
await expect(r1Title).toHaveClass(/zddc-table__cell--selected/);
|
|
});
|
|
|
|
test('Escape cancels edit, restoring prior value', async ({ page }) => {
|
|
await loadTableWithContext(page, {
|
|
columns: MDL_COLUMNS,
|
|
rows: ROWS,
|
|
});
|
|
await page.waitForSelector('#table-root tbody tr');
|
|
|
|
const titleCell = page.locator('#table-root tbody tr').nth(0).locator('[role="gridcell"]').nth(1);
|
|
const originalText = await titleCell.textContent();
|
|
|
|
await titleCell.click();
|
|
await page.keyboard.press('Enter');
|
|
await page.keyboard.press('Control+a');
|
|
await page.keyboard.type('Should not stick');
|
|
await page.keyboard.press('Escape');
|
|
|
|
// Value restored to original; no draft entry.
|
|
await expect(titleCell).toHaveText(originalText.trim());
|
|
const draftCount = await page.evaluate(() =>
|
|
Object.keys(window.tablesApp.state.drafts).length);
|
|
expect(draftCount).toBe(0);
|
|
});
|
|
|
|
test('typing a printable char enters edit and replaces value', async ({ page }) => {
|
|
await loadTableWithContext(page, {
|
|
columns: MDL_COLUMNS,
|
|
rows: ROWS,
|
|
});
|
|
await page.waitForSelector('#table-root tbody tr');
|
|
|
|
const titleCell = page.locator('#table-root tbody tr').nth(0).locator('[role="gridcell"]').nth(1);
|
|
await titleCell.click();
|
|
// Press a printable character — should enter edit mode with
|
|
// that char as the new value.
|
|
await page.keyboard.press('X');
|
|
const input = titleCell.locator('input.zddc-table__cell-input');
|
|
await expect(input).toBeVisible();
|
|
await expect(input).toHaveValue('X');
|
|
});
|
|
|
|
test('double-click also enters edit mode', async ({ page }) => {
|
|
await loadTableWithContext(page, {
|
|
columns: MDL_COLUMNS,
|
|
rows: ROWS,
|
|
});
|
|
await page.waitForSelector('#table-root tbody tr');
|
|
|
|
const titleCell = page.locator('#table-root tbody tr').nth(0).locator('[role="gridcell"]').nth(1);
|
|
await titleCell.dblclick();
|
|
await expect(titleCell.locator('input.zddc-table__cell-input')).toBeVisible();
|
|
});
|
|
|
|
test('non-editable rows still get the readonly class', async ({ page }) => {
|
|
// Cosmetic guard for an existing convention: rows where the
|
|
// server says editable=false get a visual treatment. Cell
|
|
// selection still works in Phase 1; Phase 3 will gate writes
|
|
// on the editable flag at save time.
|
|
const readOnlyRows = ROWS.map(r => ({ ...r, editable: false }));
|
|
await loadTableWithContext(page, {
|
|
columns: MDL_COLUMNS,
|
|
rows: readOnlyRows,
|
|
});
|
|
await page.waitForSelector('#table-root tbody tr');
|
|
|
|
await expect(page.locator('#table-root tbody tr.zddc-table__row--editable')).toHaveCount(0);
|
|
await expect(page.locator('#table-root tbody tr.zddc-table__row--readonly')).toHaveCount(ROWS.length);
|
|
});
|
|
|
|
test('default filters seed the visible row count from defaults.filter', async ({ page }) => {
|
|
await loadTableWithContext(page, {
|
|
columns: MDL_COLUMNS,
|
|
rows: ROWS,
|
|
defaults: { filter: { status: ['pending'] } },
|
|
});
|
|
await page.waitForSelector('#table-root tbody tr');
|
|
await expect(page.locator('#table-root tbody tr')).toHaveCount(2);
|
|
});
|
|
|
|
test('empty rows list shows the empty-state notice', async ({ page }) => {
|
|
await loadTableWithContext(page, {
|
|
columns: MDL_COLUMNS,
|
|
rows: [],
|
|
});
|
|
// Wait briefly for init.
|
|
await page.waitForTimeout(50);
|
|
await expect(page.locator('#table-root tbody tr')).toHaveCount(0);
|
|
await expect(page.locator('#table-empty')).toBeHidden();
|
|
});
|
|
|
|
// --- Phase 2: schema-driven cell editor widgets -----------------------
|
|
|
|
// A small JSON Schema covering the inline-editable types the
|
|
// factory recognises: string, integer with min/max, boolean,
|
|
// string-enum, format:date, array<enum>+uniqueItems.
|
|
const ROW_SCHEMA = {
|
|
type: 'object',
|
|
properties: {
|
|
id: { type: 'string' },
|
|
title: { type: 'string' },
|
|
party: { type: 'string', enum: ['Acme', 'Beta', 'Gamma'] },
|
|
dueDate: { type: 'string', format: 'date' },
|
|
status: { type: 'string', enum: ['pending', 'submitted', 'accepted'] },
|
|
priority: { type: 'integer', minimum: 1, maximum: 5 },
|
|
done: { type: 'boolean' },
|
|
tags: {
|
|
type: 'array',
|
|
uniqueItems: true,
|
|
items: { type: 'string', enum: ['blue', 'green', 'red'] },
|
|
},
|
|
// A nested-object cell — should punt to navigation rather
|
|
// than mount an inline editor.
|
|
owner: {
|
|
type: 'object',
|
|
properties: {
|
|
name: { type: 'string' },
|
|
email: { type: 'string', format: 'email' },
|
|
},
|
|
},
|
|
},
|
|
};
|
|
|
|
const SCHEMA_COLUMNS = [
|
|
{ field: 'id', title: 'ID', width: '6em' },
|
|
{ field: 'title', title: 'Title' },
|
|
{ field: 'party', title: 'Party' },
|
|
{ field: 'dueDate', title: 'Due', format: 'date' },
|
|
{ field: 'status', title: 'Status' },
|
|
{ field: 'priority', title: 'Priority' },
|
|
{ field: 'done', title: 'Done' },
|
|
{ field: 'tags', title: 'Tags' },
|
|
{ field: 'owner', title: 'Owner' },
|
|
];
|
|
|
|
function makeSchemaRow(over) {
|
|
return {
|
|
url: `/Working/MDL/${over.id || 'D-001'}.yaml.html`,
|
|
data: Object.assign({
|
|
id: 'D-001', title: 'Sample', party: 'Acme', dueDate: '2026-05-12',
|
|
status: 'pending', priority: 3, done: false, tags: ['blue'],
|
|
owner: { name: 'Casey', email: 'c@example.com' },
|
|
}, over.data || {}),
|
|
editable: true,
|
|
};
|
|
}
|
|
|
|
const SCHEMA_ROWS = [makeSchemaRow({ id: 'D-001' }), makeSchemaRow({ id: 'D-002' })];
|
|
|
|
function colIdx(field) {
|
|
return SCHEMA_COLUMNS.findIndex(c => c.field === field);
|
|
}
|
|
|
|
test('Phase 2: enum column edits via select dropdown', async ({ page }) => {
|
|
await loadTableWithContext(page, {
|
|
columns: SCHEMA_COLUMNS,
|
|
rows: SCHEMA_ROWS,
|
|
rowSchema: ROW_SCHEMA,
|
|
});
|
|
await page.waitForSelector('#table-root tbody tr');
|
|
|
|
const partyCell = page.locator('#table-root tbody tr').nth(0)
|
|
.locator('[role="gridcell"]').nth(colIdx('party'));
|
|
await partyCell.dblclick();
|
|
const select = partyCell.locator('select.zddc-table__cell-input');
|
|
await expect(select).toBeVisible();
|
|
// Empty placeholder + 3 enum options.
|
|
await expect(select.locator('option')).toHaveCount(4);
|
|
await select.selectOption('Beta');
|
|
await page.keyboard.press('Enter');
|
|
await expect(partyCell).toContainText('Beta');
|
|
});
|
|
|
|
test('Phase 2: integer column gives a number input with min/max', async ({ page }) => {
|
|
await loadTableWithContext(page, {
|
|
columns: SCHEMA_COLUMNS,
|
|
rows: SCHEMA_ROWS,
|
|
rowSchema: ROW_SCHEMA,
|
|
});
|
|
await page.waitForSelector('#table-root tbody tr');
|
|
|
|
const cell = page.locator('#table-root tbody tr').nth(0)
|
|
.locator('[role="gridcell"]').nth(colIdx('priority'));
|
|
await cell.dblclick();
|
|
const input = cell.locator('input.zddc-table__cell-input');
|
|
await expect(input).toHaveAttribute('type', 'number');
|
|
await expect(input).toHaveAttribute('min', '1');
|
|
await expect(input).toHaveAttribute('max', '5');
|
|
await expect(input).toHaveAttribute('step', '1');
|
|
|
|
await input.fill('4');
|
|
await page.keyboard.press('Enter');
|
|
await expect(cell).toContainText('4');
|
|
|
|
// Draft holds a Number, not a string.
|
|
const draftType = await page.evaluate(() => {
|
|
const drafts = window.tablesApp.state.drafts;
|
|
const rowId = Object.keys(drafts)[0];
|
|
return typeof drafts[rowId].priority;
|
|
});
|
|
expect(draftType).toBe('number');
|
|
});
|
|
|
|
test('Phase 2: boolean column gives a checkbox', async ({ page }) => {
|
|
await loadTableWithContext(page, {
|
|
columns: SCHEMA_COLUMNS,
|
|
rows: SCHEMA_ROWS,
|
|
rowSchema: ROW_SCHEMA,
|
|
});
|
|
await page.waitForSelector('#table-root tbody tr');
|
|
|
|
const cell = page.locator('#table-root tbody tr').nth(0)
|
|
.locator('[role="gridcell"]').nth(colIdx('done'));
|
|
await cell.dblclick();
|
|
const cb = cell.locator('input.zddc-table__cell-input');
|
|
await expect(cb).toHaveAttribute('type', 'checkbox');
|
|
// Toggle via Space (the keyboard contract a screen-reader user
|
|
// would use). Avoids the click+blur race that Playwright's
|
|
// .check() helper hits on a focused-checkbox-inside-grid-cell.
|
|
await page.keyboard.press('Space');
|
|
await page.keyboard.press('Enter');
|
|
|
|
const draftValue = await page.evaluate(() => {
|
|
const drafts = window.tablesApp.state.drafts;
|
|
const rowId = Object.keys(drafts)[0];
|
|
return drafts[rowId].done;
|
|
});
|
|
expect(draftValue).toBe(true);
|
|
});
|
|
|
|
test('Phase 2: format:date column gives a date input', async ({ page }) => {
|
|
await loadTableWithContext(page, {
|
|
columns: SCHEMA_COLUMNS,
|
|
rows: SCHEMA_ROWS,
|
|
rowSchema: ROW_SCHEMA,
|
|
});
|
|
await page.waitForSelector('#table-root tbody tr');
|
|
|
|
const cell = page.locator('#table-root tbody tr').nth(0)
|
|
.locator('[role="gridcell"]').nth(colIdx('dueDate'));
|
|
await cell.dblclick();
|
|
const input = cell.locator('input.zddc-table__cell-input');
|
|
await expect(input).toHaveAttribute('type', 'date');
|
|
await expect(input).toHaveValue('2026-05-12');
|
|
});
|
|
|
|
test('Phase 2: multi-select enum-array column gives a multi-select', async ({ page }) => {
|
|
await loadTableWithContext(page, {
|
|
columns: SCHEMA_COLUMNS,
|
|
rows: SCHEMA_ROWS,
|
|
rowSchema: ROW_SCHEMA,
|
|
});
|
|
await page.waitForSelector('#table-root tbody tr');
|
|
|
|
const cell = page.locator('#table-root tbody tr').nth(0)
|
|
.locator('[role="gridcell"]').nth(colIdx('tags'));
|
|
await cell.dblclick();
|
|
const select = cell.locator('select.zddc-table__cell-input');
|
|
await expect(select).toBeVisible();
|
|
await expect(select).toHaveAttribute('multiple', '');
|
|
});
|
|
|
|
test('Phase 2: complex (object) column navigates to the row form on edit', async ({ page }) => {
|
|
await loadTableWithContext(page, {
|
|
columns: SCHEMA_COLUMNS,
|
|
rows: SCHEMA_ROWS,
|
|
rowSchema: ROW_SCHEMA,
|
|
});
|
|
await page.waitForSelector('#table-root tbody tr');
|
|
|
|
// Stub navigation seam — see how the editor punts to the
|
|
// form for inline-uneditable types.
|
|
await page.evaluate(() => {
|
|
window.__navTarget = null;
|
|
window.tablesApp.navigateTo = url => { window.__navTarget = url; };
|
|
});
|
|
|
|
const cell = page.locator('#table-root tbody tr').nth(0)
|
|
.locator('[role="gridcell"]').nth(colIdx('owner'));
|
|
await cell.dblclick();
|
|
// No inline editor mounted.
|
|
await expect(cell.locator('.zddc-table__cell-input')).toHaveCount(0);
|
|
const target = await page.evaluate(() => window.__navTarget);
|
|
expect(target).toContain('.yaml.html');
|
|
});
|
|
|
|
test('Phase 2: no rowSchema → falls back to plain text editor', async ({ page }) => {
|
|
await loadTableWithContext(page, {
|
|
// No rowSchema in the context — same as a directory with
|
|
// table.yaml but no form.yaml.
|
|
columns: SCHEMA_COLUMNS,
|
|
rows: SCHEMA_ROWS,
|
|
});
|
|
await page.waitForSelector('#table-root tbody tr');
|
|
|
|
const cell = page.locator('#table-root tbody tr').nth(0)
|
|
.locator('[role="gridcell"]').nth(colIdx('party'));
|
|
await cell.dblclick();
|
|
// Default text input — even for a column that COULD have been
|
|
// an enum dropdown if the schema had been provided.
|
|
const input = cell.locator('input.zddc-table__cell-input');
|
|
await expect(input).toHaveAttribute('type', 'text');
|
|
});
|
|
|
|
// --- Phase 3: row-level save + ETag conflict UX -----------------------
|
|
|
|
// Loading the page via file:// means PUTs go to file:// URLs — no
|
|
// network. We intercept via page.route on the parent http://* URL
|
|
// by hosting the test fixture rows with absolute http URLs in their
|
|
// yamlUrl field.
|
|
function makeNetRow(over) {
|
|
const id = over.id || 'D-001';
|
|
return {
|
|
url: `http://test.local/Working/MDL/${id}.yaml.html`,
|
|
yamlUrl: `http://test.local/Working/MDL/${id}.yaml`,
|
|
data: Object.assign({
|
|
id, title: 'Sample', party: 'Acme', dueDate: '2026-05-12',
|
|
status: 'pending', priority: 3, done: false, tags: ['blue'],
|
|
owner: { name: 'Casey', email: 'c@example.com' },
|
|
}, over.data || {}),
|
|
etag: over.etag || 'v1',
|
|
editable: true,
|
|
};
|
|
}
|
|
|
|
async function setupSaveCapture(page) {
|
|
// Intercept PUTs on test.local. Tests configure responses by
|
|
// pushing into window.__saveResponses; tests inspect requests
|
|
// via window.__savePuts.
|
|
await page.route('http://test.local/**', async (route) => {
|
|
const req = route.request();
|
|
const method = req.method();
|
|
if (method !== 'PUT' && method !== 'GET') {
|
|
await route.continue();
|
|
return;
|
|
}
|
|
await page.evaluate(({ url, method, body, headers }) => {
|
|
window.__capturedRequests = window.__capturedRequests || [];
|
|
window.__capturedRequests.push({ url, method, body, headers });
|
|
}, {
|
|
url: req.url(),
|
|
method,
|
|
body: req.postData(),
|
|
headers: req.headers(),
|
|
});
|
|
const queued = await page.evaluate(() => window.__nextResponse || null);
|
|
if (queued) {
|
|
await page.evaluate(() => { window.__nextResponse = null; });
|
|
await route.fulfill({
|
|
status: queued.status,
|
|
headers: queued.headers || {},
|
|
body: queued.body || '',
|
|
});
|
|
return;
|
|
}
|
|
// Default success.
|
|
await route.fulfill({
|
|
status: 200,
|
|
headers: { 'ETag': '"v2"' },
|
|
body: '',
|
|
});
|
|
});
|
|
}
|
|
|
|
test('Phase 3: row-blur fires PUT with merged drafts + If-Match', async ({ page }) => {
|
|
await setupSaveCapture(page);
|
|
const rows = [makeNetRow({ id: 'D-001' }), makeNetRow({ id: 'D-002' })];
|
|
await loadTableWithContext(page, {
|
|
columns: SCHEMA_COLUMNS, rows, rowSchema: ROW_SCHEMA,
|
|
});
|
|
await page.waitForSelector('#table-root tbody tr');
|
|
await page.evaluate(() => { window.__capturedRequests = []; });
|
|
|
|
// Edit a cell in row 0, then click row 1 to move selection
|
|
// (row-blur trigger).
|
|
const titleCell = page.locator('#table-root tbody tr').nth(0)
|
|
.locator('[role="gridcell"]').nth(colIdx('title'));
|
|
await titleCell.dblclick();
|
|
await page.keyboard.press('Control+a');
|
|
await page.keyboard.type('Edited title');
|
|
await page.keyboard.press('Enter');
|
|
// Enter committed + moved selection down to row 1 — that IS
|
|
// the row-blur. Wait briefly for the async fetch to fire.
|
|
await page.waitForFunction(() =>
|
|
(window.__capturedRequests || []).some(r => r.method === 'PUT'),
|
|
null, { timeout: 3000 });
|
|
|
|
const puts = await page.evaluate(() =>
|
|
(window.__capturedRequests || []).filter(r => r.method === 'PUT'));
|
|
expect(puts).toHaveLength(1);
|
|
expect(puts[0].url).toBe('http://test.local/Working/MDL/D-001.yaml');
|
|
expect(puts[0].body).toContain('Edited title');
|
|
expect(puts[0].body).toContain('id: D-001');
|
|
// If-Match present.
|
|
expect(puts[0].headers['if-match']).toBe('"v1"');
|
|
});
|
|
|
|
test('Phase 3: 412 conflict marks row stale + shows status prompt', async ({ page }) => {
|
|
await setupSaveCapture(page);
|
|
const rows = [makeNetRow({ id: 'D-001' }), makeNetRow({ id: 'D-002' })];
|
|
await loadTableWithContext(page, {
|
|
columns: SCHEMA_COLUMNS, rows, rowSchema: ROW_SCHEMA,
|
|
});
|
|
await page.waitForSelector('#table-root tbody tr');
|
|
await page.evaluate(() => { window.__nextResponse = { status: 412 }; });
|
|
|
|
const titleCell = page.locator('#table-root tbody tr').nth(0)
|
|
.locator('[role="gridcell"]').nth(colIdx('title'));
|
|
await titleCell.dblclick();
|
|
await page.keyboard.press('Control+a');
|
|
await page.keyboard.type('My change');
|
|
await page.keyboard.press('Enter');
|
|
|
|
// Wait for the row to gain the stale class.
|
|
const row0 = page.locator('#table-root tbody tr').nth(0);
|
|
await expect(row0).toHaveClass(/zddc-table__row--stale/);
|
|
|
|
// Status prompt visible with both buttons.
|
|
const status = page.locator('#table-status');
|
|
await expect(status).toBeVisible();
|
|
await expect(status).toContainText('changed by someone else');
|
|
await expect(status.locator('button', { hasText: 'Use mine' })).toBeVisible();
|
|
await expect(status.locator('button', { hasText: 'Reload' })).toBeVisible();
|
|
|
|
// Drafts must STILL exist — never silently discard.
|
|
const draftCount = await page.evaluate(() =>
|
|
Object.keys(window.tablesApp.state.drafts).length);
|
|
expect(draftCount).toBe(1);
|
|
});
|
|
|
|
test('Phase 3: 422 validation errors mark cells invalid', async ({ page }) => {
|
|
await setupSaveCapture(page);
|
|
const rows = [makeNetRow({ id: 'D-001' }), makeNetRow({ id: 'D-002' })];
|
|
await loadTableWithContext(page, {
|
|
columns: SCHEMA_COLUMNS, rows, rowSchema: ROW_SCHEMA,
|
|
});
|
|
await page.waitForSelector('#table-root tbody tr');
|
|
await page.evaluate(() => {
|
|
window.__nextResponse = {
|
|
status: 422,
|
|
headers: { 'Content-Type': 'application/json' },
|
|
body: JSON.stringify({
|
|
errors: [
|
|
{ path: '/priority', message: 'must be ≤ 5' },
|
|
{ path: '/title', message: 'required' },
|
|
],
|
|
}),
|
|
};
|
|
});
|
|
|
|
const titleCell = page.locator('#table-root tbody tr').nth(0)
|
|
.locator('[role="gridcell"]').nth(colIdx('title'));
|
|
await titleCell.dblclick();
|
|
await page.keyboard.press('Control+a');
|
|
await page.keyboard.type('x');
|
|
await page.keyboard.press('Enter');
|
|
// Enter committed + moved selection to row 1 → row-blur on row 0
|
|
// → PUT fires → 422 → cells marked.
|
|
await page.waitForFunction(() =>
|
|
document.querySelector('.zddc-table__cell--invalid'),
|
|
null, { timeout: 3000 });
|
|
|
|
const invalidCells = await page.locator('.zddc-table__cell--invalid').count();
|
|
expect(invalidCells).toBe(2);
|
|
});
|
|
|
|
test('Phase 3: Reload button drops drafts and refreshes', async ({ page }) => {
|
|
await setupSaveCapture(page);
|
|
const rows = [makeNetRow({ id: 'D-001' }), makeNetRow({ id: 'D-002' })];
|
|
await loadTableWithContext(page, {
|
|
columns: SCHEMA_COLUMNS, rows, rowSchema: ROW_SCHEMA,
|
|
});
|
|
await page.waitForSelector('#table-root tbody tr');
|
|
await page.evaluate(() => { window.__nextResponse = { status: 412 }; });
|
|
|
|
const titleCell = page.locator('#table-root tbody tr').nth(0)
|
|
.locator('[role="gridcell"]').nth(colIdx('title'));
|
|
await titleCell.dblclick();
|
|
await page.keyboard.press('Control+a');
|
|
await page.keyboard.type('My change');
|
|
await page.keyboard.press('Enter');
|
|
|
|
const status = page.locator('#table-status');
|
|
await expect(status).toBeVisible();
|
|
|
|
// Queue a fresh GET response with new ETag.
|
|
await page.evaluate(() => {
|
|
window.__nextResponse = {
|
|
status: 200,
|
|
headers: { 'ETag': '"v3"', 'Content-Type': 'application/yaml' },
|
|
body: 'id: D-001\ntitle: Server-side new title\nparty: Acme\ndueDate: 2026-05-12\nstatus: pending\npriority: 3\ndone: false\ntags:\n - blue\nowner:\n name: Casey\n email: c@example.com\n',
|
|
};
|
|
});
|
|
|
|
await status.locator('button', { hasText: 'Reload' }).click();
|
|
await expect(status).toBeHidden();
|
|
|
|
// Drafts cleared.
|
|
const draftCount = await page.evaluate(() =>
|
|
Object.keys(window.tablesApp.state.drafts).length);
|
|
expect(draftCount).toBe(0);
|
|
});
|
|
});
|