The inline Paliadin chat surface — reachable from every authenticated
page, replacing the standalone /paliadin route as the primary entry
point. The standalone page survives as the dedicated full-screen mode
(the drawer's "↗ fullscreen" action links to it).
Components:
- frontend/src/components/PaliadinWidget.tsx — emits the floating
trigger button (bottom-right, lime ✨, owner-revealed by JS), a
scrim, and the right-edge slide-out drawer with header (reset /
fullscreen / close), context chip, message stream, empty-state
starter list, and textarea+send form. Loads /assets/paliadin-widget.js.
- frontend/src/client/paliadin-widget.ts — runtime. /api/me probe
reveals the trigger when caller matches PaliadinOwnerEmail (with
optional is_paliadin_owner flag fast-path); Cmd+J / Ctrl+J shortcut
toggles open/close (Cmd+K stays reserved for global search per
client/search.ts). Uses computePaliadinContext() (Slice B) per send
so route + entity + selection flow into every turn. SSE consumer
writes assistant bubbles; localStorage persists per-session history.
- frontend/src/client/paliadin-starters.ts — per-route starter prompt
registry. 14 routes covered (dashboard, projects.*, deadlines.*,
appointments.*, agenda, events, inbox, tools.*, glossary, courts) +
a _default fallback. Bilingual (DE/EN); prompts ending in `: ` seed
the textarea for the user to finish; fully-formed prompts auto-send.
- 39 authenticated TSX pages get a `<PaliadinWidget />` element after
`<Footer />` via a mechanical pass. paliadin.tsx (the standalone)
is intentionally excluded — its dedicated UI is the widget's
fullscreen escape hatch, not a place to overlay another widget.
- frontend/build.ts registers the new bundle.
- frontend/src/styles/global.css gains ~280 lines of widget CSS
(trigger / scrim / drawer / header / context-chip / messages /
bubbles / starters / form / send-btn) using only existing tokens.
Mobile (≤640px): drawer goes full-screen; trigger lifts above
bottom-nav slots.
- 11 new i18n keys × 2 langs = 22 entries under paliadin.widget.*.
Visibility predicate (paliadin-context.shouldSendContext) hides the
widget on /paliadin, /login, /onboarding. Owner-only gate stays on
PaliadinOwnerEmail.
Build clean: i18n 1955 → 1966 keys, IIFE-wrapped 218KB bundle, go test
green.
Refs: docs/design-paliadin-inline-2026-05-08.md §3, §5.
114 lines
6.0 KiB
TypeScript
114 lines
6.0 KiB
TypeScript
import { h } from "./jsx";
|
|
import { Sidebar } from "./components/Sidebar";
|
|
import { PaliadinWidget } from "./components/PaliadinWidget";
|
|
import { BottomNav } from "./components/BottomNav";
|
|
import { Footer } from "./components/Footer";
|
|
import { PWAHead } from "./components/PWAHead";
|
|
|
|
export function renderAppointmentsNew(): string {
|
|
return "<!DOCTYPE html>" + (
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover" />
|
|
<meta name="theme-color" content="#BFF355" />
|
|
<meta name="apple-mobile-web-app-capable" content="yes" />
|
|
<meta name="apple-mobile-web-app-status-bar-style" content="default" />
|
|
<PWAHead />
|
|
<title data-i18n="appointments.neu.title">Neuer Termin — Paliad</title>
|
|
<link rel="stylesheet" href="/assets/global.css" />
|
|
</head>
|
|
<body className="has-sidebar">
|
|
<Sidebar currentPath="/events?type=appointment" />
|
|
<BottomNav currentPath="/events?type=appointment" />
|
|
|
|
<main>
|
|
<section className="tool-page">
|
|
<div className="container container-narrow">
|
|
<div className="tool-header">
|
|
<a href="/events?type=appointment" className="back-link" id="appointment-new-back" data-i18n="appointments.neu.back">← Zurück zur Übersicht</a>
|
|
<h1 data-i18n="appointments.neu.heading">Neuer Termin</h1>
|
|
<p className="tool-subtitle" data-i18n="appointments.neu.subtitle">
|
|
Persönlich oder einer Akte zugeordnet. Bei aktiver CalDAV-Synchronisation erscheint der Termin auch im externen Kalender.
|
|
</p>
|
|
</div>
|
|
|
|
<form id="appointment-new-form" className="entity-form" autocomplete="off">
|
|
<div className="form-field">
|
|
<label htmlFor="appointment-title" data-i18n="appointments.field.title">Titel</label>
|
|
<input
|
|
type="text"
|
|
id="appointment-title"
|
|
required
|
|
placeholder="z.B. Mündliche Verhandlung"
|
|
data-i18n-placeholder="appointments.field.title.placeholder"
|
|
/>
|
|
</div>
|
|
|
|
<div className="form-field-row">
|
|
<div className="form-field">
|
|
<label htmlFor="appointment-start" data-i18n="appointments.field.start">Beginn</label>
|
|
<input type="datetime-local" id="appointment-start" required />
|
|
</div>
|
|
<div className="form-field">
|
|
<label htmlFor="appointment-end" data-i18n="appointments.field.end">Ende (optional)</label>
|
|
<input type="datetime-local" id="appointment-end" />
|
|
</div>
|
|
</div>
|
|
|
|
<div className="form-field-row">
|
|
<div className="form-field">
|
|
<label htmlFor="appointment-type" data-i18n="appointments.field.type">Typ</label>
|
|
<select id="appointment-type">
|
|
<option value="" data-i18n="appointments.field.type.none">Kein Typ</option>
|
|
<option value="hearing" data-i18n="appointments.type.hearing">Verhandlung</option>
|
|
<option value="meeting" data-i18n="appointments.type.meeting">Besprechung</option>
|
|
<option value="consultation" data-i18n="appointments.type.consultation">Beratung</option>
|
|
<option value="deadline_hearing" data-i18n="appointments.type.deadline_hearing">Fristverhandlung</option>
|
|
</select>
|
|
</div>
|
|
<div className="form-field">
|
|
<label htmlFor="appointment-project" data-i18n="appointments.field.akte">Akte (optional)</label>
|
|
<select id="appointment-project">
|
|
<option value="" data-i18n="appointments.field.akte.none">Persönlicher Termin</option>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
|
|
<div className="form-field">
|
|
<label htmlFor="appointment-location" data-i18n="appointments.field.location">Ort (optional)</label>
|
|
<input type="text" id="appointment-location" placeholder="z.B. UPC LD München" data-i18n-placeholder="appointments.field.location.placeholder" />
|
|
</div>
|
|
|
|
<div className="form-field">
|
|
<label htmlFor="appointment-description" data-i18n="appointments.field.description">Beschreibung (optional)</label>
|
|
<textarea id="appointment-description" rows={3} placeholder="Hinweise, Tagesordnung, nächste Schritte…" data-i18n-placeholder="appointments.field.description.placeholder" />
|
|
</div>
|
|
|
|
<p className="form-msg" id="appointment-new-msg" />
|
|
|
|
{/* t-paliad-154 — form-time 4-eye hint. */}
|
|
<div className="approval-hint" id="appointment-approval-hint" style="display:none">
|
|
<span className="approval-hint-icon" dangerouslySetInnerHTML={{
|
|
__html: '<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z"/></svg>'
|
|
}} />
|
|
<span id="appointment-approval-hint-text" />
|
|
</div>
|
|
|
|
<div className="form-actions">
|
|
<a href="/events?type=appointment" id="appointment-new-cancel" className="btn-cancel" data-i18n="appointments.neu.cancel">Abbrechen</a>
|
|
<button type="submit" className="btn-primary btn-cta-lime" data-i18n="appointments.neu.submit">Termin anlegen</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</section>
|
|
</main>
|
|
|
|
<Footer />
|
|
<PaliadinWidget />
|
|
<script src="/assets/appointments-new.js"></script>
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|