Skip to content

Commit 00bf204

Browse files
fix: error UI styling bug (#307)
1 parent 3d586fb commit 00bf204

File tree

5 files changed

+40
-33
lines changed

5 files changed

+40
-33
lines changed

src/components/Error.tsx

+37-30
Original file line numberDiff line numberDiff line change
@@ -1,38 +1,45 @@
1-
import { AlertCircle } from "@untitled-ui/icons-react";
1+
import { LinkExternal02 } from "@untitled-ui/icons-react";
22
// eslint-disable-next-line import/no-restricted-paths
33
import { Header } from "../features/header/components/header";
4-
import { Card } from "@stacklok/ui-kit";
4+
import { PageContainer } from "./page-container";
5+
import { EmptyState } from "./empty-state";
6+
import { IllustrationAlert, LinkButton } from "@stacklok/ui-kit";
7+
import { emptyStateStrings } from "@/constants/empty-state-strings";
8+
import { hrefs } from "@/lib/hrefs";
59

610
export function ErrorFallbackContent() {
711
return (
8-
<div className="h-24 flex flex-col flex-1 justify-center">
9-
<Card className="p-8 flex flex-col items-center">
10-
<AlertCircle className="text-red-600 mb-2 size-16" />
11-
<div className="text-xl font-semibold text-secondary text-center">
12-
An error occurred
13-
</div>
14-
<div className="text-base mb-4 text-secondary text-center text-balance">
15-
If this issue persists, please reach out to us on{" "}
16-
<a
17-
className="underline text-secondary"
18-
href="https://discord.gg/stacklok"
19-
rel="noopener noreferrer"
20-
target="_blank"
21-
>
22-
Discord
23-
</a>{" "}
24-
or open a new{" "}
25-
<a
26-
className="underline text-secondary"
27-
href="https://github.com/stacklok/codegate/issues/new"
28-
rel="noopener noreferrer"
29-
target="_blank"
30-
>
31-
Github issue
32-
</a>
33-
</div>
34-
</Card>
35-
</div>
12+
<PageContainer>
13+
<div className="py-20 flex flex-col items-center">
14+
<EmptyState
15+
title={emptyStateStrings.title.anErrorOccurred}
16+
body={emptyStateStrings.body.errorDesc}
17+
illustration={IllustrationAlert}
18+
actions={[
19+
<LinkButton
20+
key="discord"
21+
variant="secondary"
22+
href={hrefs.external.discord}
23+
rel="noopener noreferrer"
24+
target="_blank"
25+
>
26+
Discord
27+
<LinkExternal02 />
28+
</LinkButton>,
29+
<LinkButton
30+
key="github-issues"
31+
variant="secondary"
32+
href={hrefs.external.github.newIssue}
33+
rel="noopener noreferrer"
34+
target="_blank"
35+
>
36+
Github issues
37+
<LinkExternal02 />
38+
</LinkButton>,
39+
]}
40+
/>
41+
</div>
42+
</PageContainer>
3643
);
3744
}
3845

src/features/dashboard-messages/components/__tests__/table-messages.empty-state.test.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { test } from "vitest";
22
import { render, waitFor } from "@/lib/test-utils";
33
import { server } from "@/mocks/msw/node";
4-
import { emptyStateStrings } from "../../constants/strings";
4+
import { emptyStateStrings } from "../../../../constants/empty-state-strings";
55
import { useSearchParams } from "react-router-dom";
66
import { delay, http, HttpHandler, HttpResponse } from "msw";
77
import { mockAlert } from "../../../../mocks/msw/mockers/alert.mock";

src/features/dashboard-messages/components/section-conversation-secrets.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { IllustrationDone } from "@stacklok/ui-kit";
22
import { isAlertSecret } from "@/lib/is-alert-secret";
33
import { ConversationSecretsDetected } from "./conversation-secrets-detected";
44
import { EmptyState } from "@/components/empty-state";
5-
import { emptyStateStrings } from "../constants/strings";
5+
import { emptyStateStrings } from "../../../constants/empty-state-strings";
66
import { Conversation } from "@/api/generated";
77

88
export function SectionConversationSecrets({

src/features/dashboard-messages/components/table-messages-empty-state.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import {
99
} from "@stacklok/ui-kit";
1010
import { ReactNode } from "react";
1111

12-
import { emptyStateStrings } from "../constants/strings";
12+
import { emptyStateStrings } from "../../../constants/empty-state-strings";
1313
import { EmptyState } from "@/components/empty-state";
1414
import { hrefs } from "@/lib/hrefs";
1515
import { LinkExternal02 } from "@untitled-ui/icons-react";

0 commit comments

Comments
 (0)