feat: journal dashboard widgets, agent polish, and edit-mode live previews
CI / checks (push) Failing after 2m7s
CI / build (push) Successful in 4m36s

Journal dashboard widgets and quick-add; rich-text quick-add dialogs.

Dashboard draft sync for live edit previews; assistant bubble + API tools.

Journal UX: stress slider, mood grid, query cap fix.
This commit is contained in:
ginnoir
2026-07-04 22:03:45 -05:00
parent 4a924a4107
commit a09747c314
76 changed files with 4594 additions and 611 deletions
@@ -1,5 +1,6 @@
"use client";
import dynamic from "next/dynamic";
import { useEffect, useMemo, useState, useTransition } from "react";
import { Button } from "@/components/ui/button";
import {
@@ -20,8 +21,21 @@ import {
SelectValue,
} from "@/components/ui/select";
import { createEvent } from "@/modules/calendar/server/actions";
import { richTextToPlainText } from "@/components/rich-text";
import { listCalendars, type CalendarDto } from "@/modules/calendar/server/queries";
const RichTextEditor = dynamic(
() => import("@/components/rich-text/rich-text-editor").then((mod) => mod.RichTextEditor),
{
ssr: false,
loading: () => (
<div className="min-h-24 rounded-lg border border-input px-3 py-2 text-sm text-muted-foreground animate-pulse">
Loading editor
</div>
),
},
);
type Props = {
open: boolean;
onOpenChange: (open: boolean) => void;
@@ -30,7 +44,7 @@ type Props = {
export function CalendarEventCreateDialog({ open, onOpenChange }: Props) {
return (
<Dialog open={open} onOpenChange={onOpenChange}>
<DialogContent className="sm:max-w-md">
<DialogContent className="sm:max-w-2xl">
{open ? <CalendarEventCreateForm onDone={() => onOpenChange(false)} /> : null}
</DialogContent>
</Dialog>
@@ -71,7 +85,7 @@ function CalendarEventCreateForm({ onDone }: { onDone: () => void }) {
endAt: new Date(endAt),
allDay: false,
location: location || null,
notes: notes || null,
notes: richTextToPlainText(notes) ? notes : null,
remindMinutesBefore: remind ? 30 : null,
});
onDone();
@@ -146,13 +160,15 @@ function CalendarEventCreateForm({ onDone }: { onDone: () => void }) {
onChange={(e) => setLocation(e.target.value)}
/>
</div>
<div className="space-y-1.5">
<div className="space-y-1.5 min-w-0">
<Label htmlFor="qa-event-notes">Notes</Label>
<textarea
<RichTextEditor
id="qa-event-notes"
className="min-h-16 w-full rounded-lg border border-input bg-transparent px-2.5 py-2 text-sm outline-none focus-visible:border-ring focus-visible:ring-3 focus-visible:ring-ring/50"
aria-label="Notes"
value={notes}
onChange={(e) => setNotes(e.target.value)}
onChange={setNotes}
disabled={isPending}
placeholder="Add details…"
/>
</div>
<label className="flex items-center gap-2 text-sm">
@@ -0,0 +1,168 @@
"use client";
import dynamic from "next/dynamic";
import { useRouter } from "next/navigation";
import { useState, useTransition } from "react";
import { Button } from "@/components/ui/button";
import {
Dialog,
DialogContent,
DialogFooter,
DialogHeader,
DialogTitle,
} from "@/components/ui/dialog";
import { Input } from "@/components/ui/input";
import { Label } from "@/components/ui/label";
import { Switch } from "@/components/ui/switch";
import { MoodPicker } from "@/modules/journal/components/mood-picker";
import { StressSlider } from "@/modules/journal/components/stress-slider";
import { createJournalEntry } from "@/modules/journal/server/actions";
const RichTextEditor = dynamic(
() => import("@/components/rich-text/rich-text-editor").then((mod) => mod.RichTextEditor),
{
ssr: false,
loading: () => (
<div className="min-h-40 rounded-[var(--r-md)] border-[0.5px] px-3 py-2 text-sm muted animate-pulse">
Loading editor
</div>
),
},
);
type Props = {
open: boolean;
onOpenChange: (open: boolean) => void;
};
export function JournalEntryCreateDialog({ open, onOpenChange }: Props) {
return (
<Dialog open={open} onOpenChange={onOpenChange}>
<DialogContent className="sm:max-w-2xl">
{open ? <JournalEntryCreateForm onDone={() => onOpenChange(false)} /> : null}
</DialogContent>
</Dialog>
);
}
function JournalEntryCreateForm({ onDone }: { onDone: () => void }) {
const router = useRouter();
const [recordedAt, setRecordedAt] = useState(toLocalDateTimeValue(null));
const [title, setTitle] = useState("");
const [body, setBody] = useState("");
const [moods, setMoods] = useState<string[]>([]);
const [stress, setStress] = useState(5);
const [trackStress, setTrackStress] = useState(true);
const [pillsTaken, setPillsTaken] = useState(false);
const [trackPills, setTrackPills] = useState(true);
const [isPending, startTransition] = useTransition();
function handleSubmit(e: React.FormEvent) {
e.preventDefault();
startTransition(async () => {
await createJournalEntry({
recordedAt: new Date(recordedAt),
title: title.trim() || null,
body,
moods,
stress: trackStress ? stress : null,
pillsTaken: trackPills ? pillsTaken : null,
});
router.refresh();
onDone();
});
}
return (
<>
<DialogHeader>
<DialogTitle>New journal entry</DialogTitle>
</DialogHeader>
<form id="quick-add-journal-form" onSubmit={handleSubmit} className="grid gap-3">
<div className="space-y-1.5">
<Label htmlFor="qa-journal-recorded">When</Label>
<Input
id="qa-journal-recorded"
type="datetime-local"
value={recordedAt}
onChange={(e) => setRecordedAt(e.target.value)}
required
/>
</div>
<div className="space-y-1.5">
<Label htmlFor="qa-journal-title">Title</Label>
<Input
id="qa-journal-title"
value={title}
onChange={(e) => setTitle(e.target.value)}
placeholder="Optional"
/>
</div>
<div className="space-y-1.5">
<Label>Moods</Label>
<MoodPicker value={moods} onChange={setMoods} disabled={isPending} />
</div>
<div className="grid gap-4 sm:grid-cols-2">
<div className="space-y-2">
<div className="flex items-center justify-between gap-2">
<Label htmlFor="qa-journal-stress">Stress (110)</Label>
<div className="flex items-center gap-2 text-[12px] text-muted-foreground">
<span>Track</span>
<Switch checked={trackStress} onCheckedChange={setTrackStress} />
</div>
</div>
<StressSlider
id="qa-journal-stress"
value={stress}
onChange={setStress}
disabled={!trackStress || isPending}
/>
{!trackStress ? (
<div className="text-[12px] text-muted-foreground">Not tracked</div>
) : null}
</div>
<div className="space-y-2">
<div className="flex items-center justify-between gap-2">
<Label htmlFor="qa-journal-pills">Pills today</Label>
<div className="flex items-center gap-2 text-[12px] text-muted-foreground">
<span>Track</span>
<Switch checked={trackPills} onCheckedChange={setTrackPills} />
</div>
</div>
<div className="flex items-center gap-2 pt-2">
<Switch
id="qa-journal-pills"
checked={pillsTaken}
disabled={!trackPills || isPending}
onCheckedChange={setPillsTaken}
/>
<span className="text-[13px]">{pillsTaken ? "Taken" : "Not taken"}</span>
</div>
</div>
</div>
<div className="space-y-1.5 min-w-0">
<Label htmlFor="qa-journal-body">Reflection</Label>
<RichTextEditor
id="qa-journal-body"
aria-label="Reflection"
value={body}
onChange={setBody}
disabled={isPending}
placeholder="What happened today?"
/>
</div>
</form>
<DialogFooter>
<Button type="submit" form="quick-add-journal-form" disabled={isPending}>
Save entry
</Button>
</DialogFooter>
</>
);
}
function toLocalDateTimeValue(value: string | null) {
const date = value ? new Date(value) : new Date();
const local = new Date(date.getTime() - date.getTimezoneOffset() * 60_000);
return local.toISOString().slice(0, 16);
}
@@ -1,5 +1,6 @@
"use client";
import dynamic from "next/dynamic";
import { useState, useTransition } from "react";
import { Button } from "@/components/ui/button";
import {
@@ -13,6 +14,18 @@ import { Input } from "@/components/ui/input";
import { Label } from "@/components/ui/label";
import { createNote } from "@/modules/notes/server/actions";
const RichTextEditor = dynamic(
() => import("@/components/rich-text/rich-text-editor").then((mod) => mod.RichTextEditor),
{
ssr: false,
loading: () => (
<div className="min-h-32 rounded-lg border border-input px-3 py-2 text-sm text-muted-foreground animate-pulse">
Loading editor
</div>
),
},
);
type Props = {
open: boolean;
onOpenChange: (open: boolean) => void;
@@ -21,7 +34,7 @@ type Props = {
export function NoteCreateDialog({ open, onOpenChange }: Props) {
return (
<Dialog open={open} onOpenChange={onOpenChange}>
<DialogContent className="sm:max-w-md">
<DialogContent className="sm:max-w-2xl">
{open ? <NoteCreateForm onDone={() => onOpenChange(false)} /> : null}
</DialogContent>
</Dialog>
@@ -62,14 +75,15 @@ function NoteCreateForm({ onDone }: { onDone: () => void }) {
required
/>
</div>
<div className="space-y-1.5">
<div className="space-y-1.5 min-w-0">
<Label htmlFor="qa-note-body">Body</Label>
<textarea
<RichTextEditor
id="qa-note-body"
aria-label="Body"
className="min-h-32 w-full rounded-lg border border-input bg-transparent px-2.5 py-2 text-sm outline-none focus-visible:border-ring focus-visible:ring-3 focus-visible:ring-ring/50"
value={body}
onChange={(e) => setBody(e.target.value)}
onChange={setBody}
disabled={isPending}
placeholder="Start writing…"
/>
</div>
<div className="space-y-1.5">