Files
FabledScribe/frontend/src/components/VersionHistorySection.vue
T
bvandeusen 30dfbce426 fix(typography): strip chrome italic; reserve italic for emphasis
Per the design rule "italic is for emphasis, not for design", removed
every chrome `font-style: italic` declaration across the frontend.
42 declarations gone across 24 files: empty-state placeholder copy,
loading messages, "no results" hints, ghost text, voice/role labels,
field placeholder text, brand wordmark, et al.

Markdown content emphasis is unaffected — `<em>` and `<i>` tags from
`*emphasis*` markup still render italic via browser default styling
(prose.css doesn't override em behavior). User-typed emphasis in
notes, journal entries, and chat messages keeps its italic.

Specific spots that lost the decorative italic:

- KnowledgeView .filter-label, .empty-narrator
- NoteEditorView .ef-label, link-suggest related
- ChatPanel .empty-msg, .empty-greeting, .role-label
- ChatMessage .role-assistant .role-label (the "Fable" voice tag —
  was italic per the doc's Illuminated Transcript spec, but per the
  new typography rule the speaker tag stays regular and lets the
  border-left + glow do the bubble framing on their own)
- AppHeader .brand-text ("Fabled" wordmark)
- editor-shared.css .title-input::placeholder
- ProjectView .project-title-input::placeholder
- HomeView .urgency-loading
- WorkspaceTaskPanel .empty-group
- WeatherCard .weather-unavailable
- SharedWithMeView .empty-msg
- DiffView empty-state spans
- ToolCallCard .tool-event-more
- SettingsView 7 spots (.you-label, .geo-pending, hint text, etc.)
- + several other empty-state / hint text spots

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-04-28 07:54:26 -04:00

258 lines
6.3 KiB
Vue

<script setup lang="ts">
import { ref, computed } from "vue";
import { apiGet } from "@/api/client";
import DiffView from "@/components/DiffView.vue";
import type { DiffLine } from "@/composables/useAssist";
interface NoteVersion {
id: number;
note_id: number;
title: string;
tags: string[];
body?: string;
created_at: string;
}
const props = defineProps<{
noteId: number;
currentBody: string;
}>();
const emit = defineEmits<{
(e: "restore", body: string, tags: string[]): void;
}>();
const expanded = ref(false);
const view = ref<"list" | "diff">("list");
const versions = ref<NoteVersion[]>([]);
const selectedVersion = ref<NoteVersion | null>(null);
const loading = ref(false);
const loadingDetail = ref(false);
const diff = computed<DiffLine[]>(() => {
if (!selectedVersion.value?.body) return [];
const aLines = props.currentBody.split("\n");
const bLines = selectedVersion.value.body.split("\n");
const m = aLines.length, n = bLines.length;
const dp: number[][] = Array.from({ length: m + 1 }, () => new Array(n + 1).fill(0));
for (let i = m - 1; i >= 0; i--)
for (let j = n - 1; j >= 0; j--)
dp[i][j] = aLines[i] === bLines[j]
? dp[i + 1][j + 1] + 1
: Math.max(dp[i + 1][j], dp[i][j + 1]);
const result: DiffLine[] = [];
let i = 0, j = 0;
while (i < m && j < n) {
if (aLines[i] === bLines[j]) { result.push({ type: "equal", text: aLines[i++] }); j++; }
else if (dp[i + 1][j] >= dp[i][j + 1]) result.push({ type: "delete", text: aLines[i++] });
else result.push({ type: "insert", text: bLines[j++] });
}
while (i < m) result.push({ type: "delete", text: aLines[i++] });
while (j < n) result.push({ type: "insert", text: bLines[j++] });
return result;
});
function formatDate(iso: string): string {
const d = new Date(iso);
const now = new Date();
const isToday = d.toDateString() === now.toDateString();
if (isToday) {
return d.toLocaleTimeString(undefined, { hour: "2-digit", minute: "2-digit" });
}
return d.toLocaleString(undefined, {
month: "short", day: "numeric",
hour: "2-digit", minute: "2-digit",
});
}
async function toggle() {
expanded.value = !expanded.value;
if (expanded.value && versions.value.length === 0) {
await loadVersions();
}
}
async function loadVersions() {
loading.value = true;
try {
const data = await apiGet<{ versions: NoteVersion[] }>(
`/api/notes/${props.noteId}/versions`
);
versions.value = data.versions;
} catch {
// silent
} finally {
loading.value = false;
}
}
async function selectVersion(v: NoteVersion) {
if (v.body === undefined) {
loadingDetail.value = true;
try {
const full = await apiGet<NoteVersion>(
`/api/notes/${props.noteId}/versions/${v.id}`
);
const listItem = versions.value.find((x) => x.id === v.id);
if (listItem) listItem.body = full.body;
selectedVersion.value = full;
} catch {
// silent
} finally {
loadingDetail.value = false;
}
} else {
selectedVersion.value = v;
}
view.value = "diff";
}
function back() {
view.value = "list";
selectedVersion.value = null;
}
function restore() {
if (!selectedVersion.value?.body) return;
emit("restore", selectedVersion.value.body, selectedVersion.value.tags ?? []);
back();
}
</script>
<template>
<div class="vh-section">
<button class="vh-header" @click="toggle">
<span class="vh-title">Version History</span>
<span class="vh-chevron">{{ expanded ? "▴" : "▾" }}</span>
</button>
<div v-if="expanded" class="vh-body">
<!-- List view -->
<template v-if="view === 'list'">
<div v-if="loading" class="vh-empty">Loading...</div>
<div v-else-if="!versions.length" class="vh-empty">No snapshots yet.</div>
<div
v-for="v in versions"
:key="v.id"
class="vh-item"
@click="selectVersion(v)"
>
{{ formatDate(v.created_at) }}
</div>
</template>
<!-- Diff view -->
<template v-else>
<div class="vh-diff-actions">
<button class="vh-btn-back" @click="back"> Back</button>
<button
class="vh-btn-restore"
:disabled="!selectedVersion?.body"
@click="restore"
>Restore</button>
</div>
<div class="vh-diff-wrap">
<div v-if="loadingDetail" class="vh-empty">Loading...</div>
<DiffView v-else :diff="diff" />
</div>
</template>
</div>
</div>
</template>
<style scoped>
.vh-section {
border-top: 1px solid var(--color-border);
}
.vh-header {
display: flex;
align-items: center;
justify-content: space-between;
width: 100%;
padding: 0.55rem 0.75rem;
background: none;
border: none;
cursor: pointer;
font-family: inherit;
text-align: left;
}
.vh-header:hover { background: var(--color-bg-secondary); }
.vh-title {
font-size: 0.75rem;
font-weight: 700;
color: var(--color-text-secondary);
text-transform: uppercase;
letter-spacing: 0.05em;
}
.vh-chevron {
font-size: 0.7rem;
color: var(--color-text-muted);
}
.vh-body {
padding: 0 0 0.5rem;
}
.vh-empty {
padding: 0.5rem 0.75rem;
font-size: 0.8rem;
color: var(--color-text-muted);
}
.vh-item {
padding: 0.35rem 0.75rem;
font-size: 0.8rem;
color: var(--color-text);
cursor: pointer;
font-family: monospace;
border-left: 2px solid transparent;
}
.vh-item:hover {
background: var(--color-bg-secondary);
border-left-color: var(--color-primary);
}
.vh-diff-actions {
display: flex;
gap: 0.4rem;
padding: 0.4rem 0.75rem 0.35rem;
}
.vh-btn-back {
background: none;
border: 1px solid var(--color-border);
border-radius: var(--radius-sm);
padding: 0.25rem 0.6rem;
font-size: 0.78rem;
color: var(--color-text-secondary);
cursor: pointer;
font-family: inherit;
}
.vh-btn-back:hover { border-color: var(--color-primary); color: var(--color-primary); }
.vh-btn-restore {
background: var(--color-primary);
border: none;
border-radius: var(--radius-sm);
padding: 0.25rem 0.6rem;
font-size: 0.78rem;
color: #fff;
cursor: pointer;
font-family: inherit;
}
.vh-btn-restore:disabled { opacity: 0.5; cursor: default; }
.vh-diff-wrap {
padding: 0 0.5rem 0.25rem;
max-height: 420px;
overflow-y: auto;
display: flex;
flex-direction: column;
}
</style>