feat(dashboard): add corpus dashboard at /dashboard/
Full private corpus dashboard for tools.dobetternorge.no users — each SSO
account gets an auto-provisioned CaveauAI tenant (clients row, corpus) on
first visit. Includes upload (file/paste/URL), RAG chat with SSE streaming
and citation chips, document CRUD, FalkorDB graph relations tab, and
improved save-from-tool flow with tag/preview support.
- dashboard/{index,documents,document,upload,chat,settings}.php
- api/dashboard/{corpus-init,documents,upload,ingest-status,chat-stream,
save-from-tool,graph}.php
- includes/{CorpusProvision,layout_dashboard,layout_dashboard_footer}.php
- assets/css/dashboard.css assets/js/corpus-save.js (routing upgrade)
- includes/{bootstrap,layout}.php extended for dashboard provisioning
Migration 141 (clients.dbn_sso_uid + import_method enum) applied on chloe.
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
+84
-28
@@ -1,31 +1,64 @@
|
||||
/**
|
||||
* corpus-save.js — "Save to corpus" shared handler for all DBN tool pages.
|
||||
* corpus-save.js — Shared "Save to corpus" handler.
|
||||
*
|
||||
* Buttons that trigger a save must have:
|
||||
* class="js-save-corpus"
|
||||
* data-content-id="<id of element containing the text to save>"
|
||||
* data-tool="<source_tool slug, e.g. korrespond>"
|
||||
* data-suggested-title="<pre-filled title string>" (optional)
|
||||
* Two trigger paths:
|
||||
*
|
||||
* 1. Tool pages — buttons with class="js-save-corpus":
|
||||
* data-content-id="<id of element with text>"
|
||||
* data-tool="<source_tool slug, e.g. korrespond>"
|
||||
* data-suggested-title="<pre-filled title>" (optional)
|
||||
*
|
||||
* 2. Dashboard chat — page code calls:
|
||||
* dialog.dataset.pendingContent = "...";
|
||||
* dialog.dataset.pendingTool = "dashboard-chat"; (optional)
|
||||
* dialog.showModal();
|
||||
* Title and tags are populated by the caller before showModal().
|
||||
*
|
||||
* Endpoint resolution: if window.DBN_DASHBOARD is present (dashboard pages),
|
||||
* POST to /api/dashboard/save-from-tool.php; otherwise fall back to the
|
||||
* legacy /api/save-to-corpus.php so existing tools keep working.
|
||||
*/
|
||||
|
||||
(function () {
|
||||
'use strict';
|
||||
|
||||
const dlg = document.getElementById('save-corpus-dialog');
|
||||
const form = document.getElementById('save-corpus-form');
|
||||
const titleIn = document.getElementById('save-corpus-title');
|
||||
const tagsIn = document.getElementById('save-corpus-tags');
|
||||
const dlg = document.getElementById('save-corpus-dialog');
|
||||
const form = document.getElementById('save-corpus-form');
|
||||
const titleIn = document.getElementById('save-corpus-title');
|
||||
const tagsIn = document.getElementById('save-corpus-tags');
|
||||
const cancelBtn = document.getElementById('save-corpus-cancel');
|
||||
|
||||
if (!dlg || !form) return; // dialog not present (e.g. not logged in)
|
||||
if (!dlg || !form) return;
|
||||
|
||||
cancelBtn?.addEventListener('click', () => dlg.close());
|
||||
|
||||
let _pendingBtn = null;
|
||||
let _pendingContent = '';
|
||||
let _pendingTool = '';
|
||||
let _pendingBtn = null;
|
||||
|
||||
// Delegated click — catches buttons added dynamically by tool JS
|
||||
function endpoint() {
|
||||
return window.DBN_DASHBOARD
|
||||
? '/api/dashboard/save-from-tool.php'
|
||||
: '/api/save-to-corpus.php';
|
||||
}
|
||||
|
||||
function bodyFor(kind, payload) {
|
||||
if (window.DBN_DASHBOARD) {
|
||||
return JSON.stringify({
|
||||
title: payload.title,
|
||||
content: payload.content,
|
||||
source_tool: payload.tool || 'dashboard-save',
|
||||
tags: payload.tags,
|
||||
kind,
|
||||
});
|
||||
}
|
||||
return JSON.stringify({
|
||||
title: payload.title,
|
||||
content: payload.content,
|
||||
source_tool: payload.tool || '',
|
||||
tags: payload.tags,
|
||||
});
|
||||
}
|
||||
|
||||
// ── Path 1: legacy tool buttons (.js-save-corpus) ─────────────────────
|
||||
document.addEventListener('click', (e) => {
|
||||
const btn = e.target.closest('.js-save-corpus');
|
||||
if (!btn) return;
|
||||
@@ -40,27 +73,29 @@
|
||||
return;
|
||||
}
|
||||
|
||||
_pendingBtn = btn;
|
||||
_pendingContent = content;
|
||||
_pendingTool = btn.dataset.tool ?? '';
|
||||
_pendingBtn = btn;
|
||||
dlg.dataset.pendingContent = content;
|
||||
dlg.dataset.pendingTool = btn.dataset.tool || '';
|
||||
dlg.dataset.pendingKind = 'tool_output';
|
||||
|
||||
titleIn.value = btn.dataset.suggestedTitle ?? '';
|
||||
titleIn.value = btn.dataset.suggestedTitle || '';
|
||||
tagsIn.value = '';
|
||||
dlg.showModal();
|
||||
titleIn.focus();
|
||||
titleIn.select();
|
||||
});
|
||||
|
||||
// Form submit inside dialog
|
||||
// ── Submit dialog (both paths) ────────────────────────────────────────
|
||||
form.addEventListener('submit', async (e) => {
|
||||
e.preventDefault();
|
||||
dlg.close();
|
||||
|
||||
const btn = _pendingBtn;
|
||||
const content = _pendingContent;
|
||||
const content = dlg.dataset.pendingContent || '';
|
||||
const tool = dlg.dataset.pendingTool || '';
|
||||
const kind = dlg.dataset.pendingKind || 'tool_output';
|
||||
const title = titleIn.value.trim();
|
||||
const tags = tagsIn.value.trim();
|
||||
const tool = _pendingTool;
|
||||
|
||||
if (!title || !content) return;
|
||||
|
||||
@@ -70,25 +105,30 @@
|
||||
}
|
||||
|
||||
try {
|
||||
const resp = await fetch('api/save-to-corpus.php', {
|
||||
const resp = await fetch(endpoint(), {
|
||||
method: 'POST',
|
||||
credentials: 'same-origin',
|
||||
headers: { 'Content-Type': 'application/json' },
|
||||
body: JSON.stringify({ title, content, source_tool: tool, tags }),
|
||||
body: bodyFor(kind, { title, content, tool, tags }),
|
||||
});
|
||||
|
||||
const data = await resp.json().catch(() => ({}));
|
||||
|
||||
if (resp.ok && data.ok) {
|
||||
if (btn) {
|
||||
btn.textContent = '✓ Saved to corpus';
|
||||
btn.classList.add('js-save-corpus--saved');
|
||||
} else {
|
||||
// Path 2 (no button): show a fleeting toast
|
||||
showToast('Lagret i korpus — ' + (data.chunks || 0) + ' passasjer');
|
||||
}
|
||||
} else {
|
||||
const msg = data.error ?? `Error ${resp.status}`;
|
||||
const msg = (data.error && data.error.message) || data.error || ('Error ' + resp.status);
|
||||
if (btn) {
|
||||
btn.textContent = 'Save failed';
|
||||
btn.disabled = false;
|
||||
btn.title = msg;
|
||||
} else {
|
||||
showToast('Lagring feilet: ' + msg, true);
|
||||
}
|
||||
console.error('[corpus-save] Save failed:', msg);
|
||||
}
|
||||
@@ -96,11 +136,27 @@
|
||||
if (btn) {
|
||||
btn.textContent = 'Network error';
|
||||
btn.disabled = false;
|
||||
} else {
|
||||
showToast('Nettverksfeil', true);
|
||||
}
|
||||
console.error('[corpus-save] Network error:', err);
|
||||
}
|
||||
|
||||
_pendingBtn = null;
|
||||
_pendingContent = '';
|
||||
_pendingBtn = null;
|
||||
delete dlg.dataset.pendingContent;
|
||||
delete dlg.dataset.pendingTool;
|
||||
delete dlg.dataset.pendingKind;
|
||||
});
|
||||
|
||||
function showToast(msg, isError) {
|
||||
const t = document.createElement('div');
|
||||
t.textContent = msg;
|
||||
t.style.cssText =
|
||||
'position:fixed;bottom:1.5rem;left:50%;transform:translateX(-50%);' +
|
||||
'padding:0.65rem 1rem;border-radius:10px;font:inherit;font-size:0.9rem;' +
|
||||
'z-index:99999;color:#fff;background:' + (isError ? '#ba0c2f' : '#00205b') + ';' +
|
||||
'box-shadow:0 8px 24px rgba(0,0,0,0.25);';
|
||||
document.body.appendChild(t);
|
||||
setTimeout(() => t.remove(), 3500);
|
||||
}
|
||||
}());
|
||||
|
||||
Reference in New Issue
Block a user