A self-contained animated SVG mark in BOHA red: a 4-point AI spark (Odin) that slow-rotates and breathes, a data node orbiting a faint ring (the assistant at the centre of the business system). An "idle" and a "thinking" state (faster orbit + red glow); honours prefers-reduced-motion. Used as the sidebar brand, the empty-state hero, and the busy/thinking indicator. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
159 lines
3.9 KiB
TypeScript
159 lines
3.9 KiB
TypeScript
import Box from "@mui/material/Box";
|
|
import Typography from "@mui/material/Typography";
|
|
import type { ChatTurn } from "./types";
|
|
import OdinMark from "./OdinMark";
|
|
|
|
interface OdinThreadProps {
|
|
turns: ChatTurn[];
|
|
busy: boolean;
|
|
loading: boolean;
|
|
threadRef: React.RefObject<HTMLDivElement | null>;
|
|
}
|
|
|
|
/** Small Odin avatar shown to the left of assistant bubbles. */
|
|
function OdinAvatar({ size = 28 }: { size?: number }) {
|
|
return (
|
|
<Box
|
|
sx={{
|
|
width: size,
|
|
height: size,
|
|
borderRadius: "50%",
|
|
bgcolor: "primary.main",
|
|
color: "common.white",
|
|
display: "flex",
|
|
alignItems: "center",
|
|
justifyContent: "center",
|
|
fontWeight: 700,
|
|
fontSize: size * 0.5,
|
|
flexShrink: 0,
|
|
}}
|
|
>
|
|
O
|
|
</Box>
|
|
);
|
|
}
|
|
|
|
export default function OdinThread({
|
|
turns,
|
|
busy,
|
|
loading,
|
|
threadRef,
|
|
}: OdinThreadProps) {
|
|
return (
|
|
<Box
|
|
ref={threadRef}
|
|
sx={{
|
|
flex: 1,
|
|
minHeight: 0,
|
|
overflowY: "auto",
|
|
display: "flex",
|
|
flexDirection: "column",
|
|
gap: 1.5,
|
|
p: 2,
|
|
bgcolor: "action.hover",
|
|
borderRadius: 2,
|
|
}}
|
|
>
|
|
{/* Loading state — history is being fetched */}
|
|
{loading && (
|
|
<Box
|
|
sx={{
|
|
flex: 1,
|
|
display: "flex",
|
|
alignItems: "center",
|
|
justifyContent: "center",
|
|
}}
|
|
>
|
|
<Typography variant="body2" sx={{ color: "text.secondary" }}>
|
|
Načítám…
|
|
</Typography>
|
|
</Box>
|
|
)}
|
|
|
|
{/* Empty state */}
|
|
{turns.length === 0 && !busy && !loading && (
|
|
<Box
|
|
sx={{
|
|
flex: 1,
|
|
display: "flex",
|
|
flexDirection: "column",
|
|
alignItems: "center",
|
|
justifyContent: "center",
|
|
gap: 1.5,
|
|
textAlign: "center",
|
|
px: 2,
|
|
}}
|
|
>
|
|
<OdinMark size={56} />
|
|
<Typography variant="body2" sx={{ color: "text.secondary" }}>
|
|
Dobrý den, jsem Odin. Zeptejte se, nebo přiložte fakturu (PDF) k
|
|
importu.
|
|
</Typography>
|
|
</Box>
|
|
)}
|
|
|
|
{/* Message bubbles */}
|
|
{turns.map((t, i) => {
|
|
const isUser = t.role === "user";
|
|
return (
|
|
<Box
|
|
key={i}
|
|
sx={{
|
|
display: "flex",
|
|
flexDirection: "row",
|
|
alignItems: "flex-end",
|
|
gap: 1,
|
|
alignSelf: isUser ? "flex-end" : "flex-start",
|
|
maxWidth: "80%",
|
|
}}
|
|
>
|
|
{!isUser && <OdinAvatar size={28} />}
|
|
<Box
|
|
sx={{
|
|
px: 1.5,
|
|
py: 1,
|
|
borderRadius: 2,
|
|
boxShadow: 1,
|
|
bgcolor: isUser ? "primary.main" : "background.paper",
|
|
}}
|
|
>
|
|
{/* Color MUST sit on the Typography: GlobalStyles pins `p` to
|
|
text.secondary, which beats a color merely inherited from the
|
|
Box. An sx class on the element wins over that element rule. */}
|
|
<Typography
|
|
variant="body2"
|
|
sx={{
|
|
whiteSpace: "pre-wrap",
|
|
color: isUser ? "common.white" : "text.primary",
|
|
}}
|
|
>
|
|
{t.content}
|
|
</Typography>
|
|
</Box>
|
|
</Box>
|
|
);
|
|
})}
|
|
|
|
{/* Busy indicator */}
|
|
{busy && (
|
|
<Box
|
|
sx={{
|
|
alignSelf: "flex-start",
|
|
display: "flex",
|
|
alignItems: "center",
|
|
gap: 1,
|
|
px: 1.5,
|
|
py: 1,
|
|
color: "text.secondary",
|
|
}}
|
|
>
|
|
<OdinMark size={22} state="thinking" />
|
|
<Typography variant="caption" sx={{ color: "inherit" }}>
|
|
Pracuji…
|
|
</Typography>
|
|
</Box>
|
|
)}
|
|
</Box>
|
|
);
|
|
}
|