File size: 953 Bytes
e538a38
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
import { Card, Skeleton, Stack, Text } from "@mantine/core";

export default function PreparingContent({
  textGenerationState,
}: {
  textGenerationState: string;
}) {
  const getStateText = () => {
    if (textGenerationState === "awaitingSearchResults") {
      return "Awaiting search results...";
    }
    if (textGenerationState === "preparingToGenerate") {
      return "Preparing AI response...";
    }
    return null;
  };

  return (
    <Card withBorder shadow="sm" radius="md">
      <Card.Section withBorder inheritPadding py="xs">
        <Text fw={500}>{getStateText()}</Text>
      </Card.Section>
      <Card.Section withBorder inheritPadding py="md">
        <Stack>
          <Skeleton height={8} radius="xl" />
          <Skeleton height={8} width="70%" radius="xl" />
          <Skeleton height={8} radius="xl" />
          <Skeleton height={8} width="43%" radius="xl" />
        </Stack>
      </Card.Section>
    </Card>
  );
}