Wiki Phase 4: full-text search + revision history
Final phase of the wiki upgrade (see WIKI_UPGRADE.md). Schema (additive): wiki_revisions table (per-save content snapshots). The FULLTEXT index on wiki_pages(title, body) shipped in Phase 1. Search: - MATCH ... AGAINST natural-language search over title + body, ordered by relevance - public: GET /public/wiki?q= (published only); admin: GET /admin/wiki?q= (all statuses) - public wiki index gains a search box; admin list gains a search field Revision history: - every create/update snapshots the page into wiki_revisions - admin endpoints: list revisions, get one, and restore (restore overwrites the page, rebuilds links, and appends a new revision — history stays append-only); logged as wiki.revision.restore - editor gains a History modal: revision list + word-level diff (jsdiff) of a chosen revision against the current page, with one-click restore Verified end-to-end: search matches body and title; two edits produce three revisions; diff renders added/removed words; restore reverts and records a new revision. No console errors. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
@@ -9,7 +9,11 @@ import WikiCategories from './WikiCategories.jsx'
|
||||
export default function WikiAdmin() {
|
||||
const [tick, setTick] = useState(0)
|
||||
const reload = useCallback(() => setTick((t) => t + 1), [])
|
||||
const { loading, error, data } = useAsync(() => api.admin.listWiki(), [tick])
|
||||
const [q, setQ] = useState('')
|
||||
const { loading, error, data } = useAsync(
|
||||
() => api.admin.listWiki(q.trim() ? `?q=${encodeURIComponent(q.trim())}` : ''),
|
||||
[tick, q],
|
||||
)
|
||||
const [editing, setEditing] = useState(null) // null | 'new' | slug
|
||||
const [managingCats, setManagingCats] = useState(false)
|
||||
const pages = data || []
|
||||
@@ -21,6 +25,14 @@ export default function WikiAdmin() {
|
||||
{pages.length} page{pages.length === 1 ? '' : 's'} · edit content and structure
|
||||
</p>
|
||||
<div style={{ display: 'flex', gap: 10 }}>
|
||||
<input
|
||||
type="search"
|
||||
value={q}
|
||||
onChange={(e) => setQ(e.target.value)}
|
||||
className="input"
|
||||
placeholder="Search pages…"
|
||||
style={{ width: 200 }}
|
||||
/>
|
||||
<button onClick={() => setManagingCats(true)} className="pill">
|
||||
Manage sections
|
||||
</button>
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
import { lazy, Suspense, useEffect, useState } from 'react'
|
||||
import Modal from '../../../components/Modal.jsx'
|
||||
import WikiHistory from './WikiHistory.jsx'
|
||||
import { api } from '../../../api/client.js'
|
||||
|
||||
// Admin-only and heavy (TipTap) — load as its own chunk so the public bundle
|
||||
@@ -22,6 +23,7 @@ export default function WikiEditor({ slug, onClose, onSaved }) {
|
||||
const [loading, setLoading] = useState(isEdit)
|
||||
const [busy, setBusy] = useState(false)
|
||||
const [error, setError] = useState('')
|
||||
const [showHistory, setShowHistory] = useState(false)
|
||||
|
||||
// Categories (dropdown) + pages (internal-link picker), for both new and edit.
|
||||
useEffect(() => {
|
||||
@@ -110,6 +112,7 @@ export default function WikiEditor({ slug, onClose, onSaved }) {
|
||||
}
|
||||
|
||||
return (
|
||||
<>
|
||||
<Modal
|
||||
title={isEdit ? 'Edit wiki page' : 'New wiki page'}
|
||||
onClose={onClose}
|
||||
@@ -121,6 +124,11 @@ export default function WikiEditor({ slug, onClose, onSaved }) {
|
||||
Delete
|
||||
</button>
|
||||
)}
|
||||
{isEdit && (
|
||||
<button onClick={() => setShowHistory(true)} disabled={busy} className="pill">
|
||||
History
|
||||
</button>
|
||||
)}
|
||||
<button onClick={onClose} disabled={busy} className="pill">
|
||||
Cancel
|
||||
</button>
|
||||
@@ -208,6 +216,17 @@ export default function WikiEditor({ slug, onClose, onSaved }) {
|
||||
</div>
|
||||
)}
|
||||
</Modal>
|
||||
{showHistory && (
|
||||
<WikiHistory
|
||||
slug={slug}
|
||||
onClose={() => setShowHistory(false)}
|
||||
onRestored={() => {
|
||||
setShowHistory(false)
|
||||
onSaved()
|
||||
}}
|
||||
/>
|
||||
)}
|
||||
</>
|
||||
)
|
||||
}
|
||||
|
||||
|
||||
139
client/src/routes/admin/views/WikiHistory.jsx
Normal file
139
client/src/routes/admin/views/WikiHistory.jsx
Normal file
@@ -0,0 +1,139 @@
|
||||
import { useEffect, useMemo, useState } from 'react'
|
||||
import { diffWords } from 'diff'
|
||||
import Modal from '../../../components/Modal.jsx'
|
||||
import { dateTime } from '../../../lib/format.js'
|
||||
import { api } from '../../../api/client.js'
|
||||
|
||||
// Plain-text view of a body, for a readable word-level diff.
|
||||
function toText(html) {
|
||||
if (!html) return ''
|
||||
if (typeof window === 'undefined' || !window.DOMParser) return html
|
||||
const doc = new DOMParser().parseFromString(html, 'text/html')
|
||||
return doc.body.textContent || ''
|
||||
}
|
||||
|
||||
export default function WikiHistory({ slug, onClose, onRestored }) {
|
||||
const [revisions, setRevisions] = useState([])
|
||||
const [current, setCurrent] = useState(null)
|
||||
const [selected, setSelected] = useState(null) // full revision snapshot
|
||||
const [loading, setLoading] = useState(true)
|
||||
const [busy, setBusy] = useState(false)
|
||||
const [error, setError] = useState('')
|
||||
|
||||
useEffect(() => {
|
||||
let active = true
|
||||
Promise.all([api.admin.listWikiRevisions(slug), api.admin.getWiki(slug)])
|
||||
.then(([revs, page]) => {
|
||||
if (!active) return
|
||||
setRevisions(revs)
|
||||
setCurrent(page)
|
||||
})
|
||||
.catch(() => active && setError('Could not load history.'))
|
||||
.finally(() => active && setLoading(false))
|
||||
return () => {
|
||||
active = false
|
||||
}
|
||||
}, [slug])
|
||||
|
||||
async function selectRevision(id) {
|
||||
setError('')
|
||||
try {
|
||||
const rev = await api.admin.getWikiRevision(slug, id)
|
||||
setSelected(rev)
|
||||
} catch (err) {
|
||||
setError(err.message || 'Could not load revision.')
|
||||
}
|
||||
}
|
||||
|
||||
async function restore() {
|
||||
if (!selected) return
|
||||
if (!confirm(`Restore the page to revision #${selected.id}? This creates a new revision.`)) return
|
||||
setBusy(true)
|
||||
try {
|
||||
await api.admin.restoreWikiRevision(slug, selected.id)
|
||||
onRestored()
|
||||
} catch (err) {
|
||||
setError(err.message || 'Could not restore.')
|
||||
setBusy(false)
|
||||
}
|
||||
}
|
||||
|
||||
// Diff the selected revision (old) against the current saved page (new).
|
||||
const parts = useMemo(
|
||||
() => (selected ? diffWords(toText(selected.body), toText(current?.body || '')) : []),
|
||||
[selected, current],
|
||||
)
|
||||
|
||||
return (
|
||||
<Modal
|
||||
title={`History — ${slug}`}
|
||||
onClose={onClose}
|
||||
width={760}
|
||||
footer={
|
||||
<>
|
||||
<button onClick={onClose} disabled={busy} className="pill">
|
||||
Close
|
||||
</button>
|
||||
<button onClick={restore} disabled={busy || !selected} className="btn btn-primary btn-sq">
|
||||
{busy ? 'Restoring…' : 'Restore this revision'}
|
||||
</button>
|
||||
</>
|
||||
}
|
||||
>
|
||||
{loading ? (
|
||||
<span className="spin" />
|
||||
) : error ? (
|
||||
<p className="sans" style={{ margin: 0, color: '#d98b84', fontSize: '0.85rem' }}>{error}</p>
|
||||
) : (
|
||||
<div className="wiki-history">
|
||||
<ul className="wiki-history-list">
|
||||
{revisions.map((r, i) => (
|
||||
<li key={r.id}>
|
||||
<button
|
||||
type="button"
|
||||
className={`wiki-rev${selected?.id === r.id ? ' is-active' : ''}`}
|
||||
onClick={() => selectRevision(r.id)}
|
||||
>
|
||||
<span className="wiki-rev-note">
|
||||
{r.change_note || 'Edit'}
|
||||
{i === 0 && <span className="wiki-rev-latest"> · latest</span>}
|
||||
</span>
|
||||
<span className="wiki-rev-meta">
|
||||
{dateTime(r.created_at)}
|
||||
{r.editor ? ` · ${r.editor}` : ''}
|
||||
</span>
|
||||
</button>
|
||||
</li>
|
||||
))}
|
||||
{revisions.length === 0 && <li className="dim sans" style={{ fontSize: '0.85rem' }}>No revisions yet.</li>}
|
||||
</ul>
|
||||
|
||||
<div className="wiki-history-diff">
|
||||
{!selected ? (
|
||||
<p className="muted sans" style={{ fontSize: '0.9rem' }}>
|
||||
Select a revision to see what changed between it and the current page.
|
||||
</p>
|
||||
) : (
|
||||
<>
|
||||
<p className="sans dim" style={{ margin: '0 0 10px', fontSize: '0.76rem' }}>
|
||||
Diff: revision #{selected.id} → current
|
||||
</p>
|
||||
<div className="wiki-diff">
|
||||
{parts.length === 0 || (parts.length === 1 && !parts[0].added && !parts[0].removed) ? (
|
||||
<span className="muted">No textual differences.</span>
|
||||
) : (
|
||||
parts.map((p, i) => (
|
||||
<span key={i} className={p.added ? 'diff-add' : p.removed ? 'diff-del' : ''}>
|
||||
{p.value}
|
||||
</span>
|
||||
))
|
||||
)}
|
||||
</div>
|
||||
</>
|
||||
)}
|
||||
</div>
|
||||
</div>
|
||||
)}
|
||||
</Modal>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user