Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: show alert detail in the conversation page #277

Merged
merged 2 commits into from
Feb 7, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
55 changes: 55 additions & 0 deletions src/components/AlertDetail.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
import { AlertConversation } from "@/api/generated";
import { isAlertMalicious } from "@/features/alerts/lib/is-alert-malicious";
import { isAlertSecret } from "@/features/alerts/lib/is-alert-secret";
import { Markdown } from "./Markdown";

type MaliciousPkgType = {
name: string;
type: string;
status: string;
description: string;
};

export function AlertDetail({ alert }: { alert: AlertConversation }) {
if (alert.trigger_string === null) return "N/A";
if (isAlertSecret(alert) && typeof alert.trigger_string === "string") {
return (
<div className="bg-gray-25 rounded-lg overflow-auto p-4">
<Markdown>{alert.trigger_string}</Markdown>
</div>
);
}

if (isAlertMalicious(alert) && typeof alert.trigger_string === "object") {
const maliciousPkg = alert.trigger_string as MaliciousPkgType;

return (
<div className="max-h-40 w-fit overflow-y-auto whitespace-pre-wrap p-2">
<label className="font-medium">Package:</label>
&nbsp;
<a
href={`https://www.insight.stacklok.com/report/${maliciousPkg.type}/${maliciousPkg.name}?utm_source=codegate-ui`}
target="_blank"
rel="noopener noreferrer"
className="text-brand-500 hover:underline"
>
{maliciousPkg.type}/{maliciousPkg.name}
</a>
{maliciousPkg.status && (
<>
<br />
<label className="font-medium">Status:</label> {maliciousPkg.status}
</>
)}
{maliciousPkg.description && (
<>
<br />
<label className="font-medium">Description:</label>{" "}
{maliciousPkg.description}
</>
)}
</div>
);
}
return null;
}
20 changes: 19 additions & 1 deletion src/routes/route-chat.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,14 @@ import {
ChatBubbleMessage,
} from "@/components/ui/chat/chat-bubble";
import { Markdown } from "@/components/Markdown";
import { Breadcrumb, Breadcrumbs } from "@stacklok/ui-kit";
import { Breadcrumb, Breadcrumbs, Card, CardBody } from "@stacklok/ui-kit";
import { BreadcrumbHome } from "@/components/BreadcrumbHome";
import { useQueryGetWorkspaceAlertTable } from "@/features/alerts/hooks/use-query-get-workspace-alerts-table";
import { AlertDetail } from "@/components/AlertDetail";

export function RouteChat() {
const { id } = useParams();
const { data = [] } = useQueryGetWorkspaceAlertTable();
const { data: prompts } = useQueryGetWorkspaceMessages();
const chat = prompts?.find((prompt) => prompt.chat_id === id);

Expand All @@ -28,6 +31,13 @@ export function RouteChat() {
chat.conversation_timestamp,
);

// we have an issue on BE, we received duplicated alerts
const alertDetail = data.filter((alert) =>
alert.conversation.question_answers.some(
(item) => item.question.message_id === id,
),
)[0];

return (
<>
<Breadcrumbs>
Expand All @@ -36,6 +46,14 @@ export function RouteChat() {
</Breadcrumbs>

<div className="w-[calc(100vw-18rem)]">
{alertDetail && (
<Card className="w-full mb-2">
<CardBody className="w-full h-fit overflow-auto max-h-[500px]">
<AlertDetail alert={alertDetail} />
</CardBody>
</Card>
)}

<ChatMessageList>
{(chat?.question_answers ?? []).map(({ question, answer }, index) => (
<div key={index} className="flex flex-col size-full gap-6">
Expand Down
Loading