2026-02-11 18:20:51 +02:00
|
|
|
|
"use client";
|
|
|
|
|
|
|
|
|
|
|
|
import { makeAssistantToolUI } from "@assistant-ui/react";
|
2026-02-13 18:50:14 +02:00
|
|
|
|
import {
|
|
|
|
|
|
AlertTriangleIcon,
|
|
|
|
|
|
CheckIcon,
|
|
|
|
|
|
InfoIcon,
|
|
|
|
|
|
Loader2Icon,
|
|
|
|
|
|
TriangleAlertIcon,
|
|
|
|
|
|
XIcon,
|
|
|
|
|
|
} from "lucide-react";
|
2026-02-11 18:20:51 +02:00
|
|
|
|
import { useState } from "react";
|
|
|
|
|
|
import { Button } from "@/components/ui/button";
|
|
|
|
|
|
|
|
|
|
|
|
interface InterruptResult {
|
|
|
|
|
|
__interrupt__: true;
|
|
|
|
|
|
__decided__?: "approve" | "reject";
|
|
|
|
|
|
action_requests: Array<{
|
|
|
|
|
|
name: string;
|
|
|
|
|
|
args: Record<string, unknown>;
|
|
|
|
|
|
description?: string;
|
|
|
|
|
|
}>;
|
|
|
|
|
|
review_configs: Array<{
|
|
|
|
|
|
action_name: string;
|
|
|
|
|
|
allowed_decisions: Array<"approve" | "reject">;
|
|
|
|
|
|
}>;
|
2026-02-13 18:50:14 +02:00
|
|
|
|
interrupt_type?: string;
|
|
|
|
|
|
message?: string;
|
2026-02-13 16:25:19 +02:00
|
|
|
|
context?: {
|
|
|
|
|
|
account?: {
|
|
|
|
|
|
id: number;
|
|
|
|
|
|
name: string;
|
|
|
|
|
|
workspace_id: string | null;
|
|
|
|
|
|
workspace_name: string;
|
|
|
|
|
|
workspace_icon: string;
|
|
|
|
|
|
};
|
|
|
|
|
|
page_id?: string;
|
|
|
|
|
|
current_title?: string;
|
|
|
|
|
|
document_id?: number;
|
|
|
|
|
|
indexed_at?: string;
|
|
|
|
|
|
error?: string;
|
|
|
|
|
|
};
|
2026-02-11 18:20:51 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
interface SuccessResult {
|
|
|
|
|
|
status: "success";
|
|
|
|
|
|
page_id: string;
|
2026-02-13 18:50:14 +02:00
|
|
|
|
title?: string;
|
2026-02-11 18:20:51 +02:00
|
|
|
|
message?: string;
|
2026-02-19 15:22:36 +02:00
|
|
|
|
deleted_from_kb?: boolean;
|
2026-02-11 18:20:51 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
interface ErrorResult {
|
|
|
|
|
|
status: "error";
|
|
|
|
|
|
message: string;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-02-13 18:50:14 +02:00
|
|
|
|
interface InfoResult {
|
|
|
|
|
|
status: "not_found";
|
|
|
|
|
|
message: string;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
interface WarningResult {
|
|
|
|
|
|
status: "success";
|
|
|
|
|
|
warning: string;
|
|
|
|
|
|
page_id?: string;
|
|
|
|
|
|
title?: string;
|
|
|
|
|
|
message?: string;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-02-15 23:38:15 -08:00
|
|
|
|
type DeleteNotionPageResult =
|
|
|
|
|
|
| InterruptResult
|
|
|
|
|
|
| SuccessResult
|
|
|
|
|
|
| ErrorResult
|
|
|
|
|
|
| InfoResult
|
|
|
|
|
|
| WarningResult;
|
2026-02-11 18:20:51 +02:00
|
|
|
|
|
|
|
|
|
|
function isInterruptResult(result: unknown): result is InterruptResult {
|
|
|
|
|
|
return (
|
|
|
|
|
|
typeof result === "object" &&
|
|
|
|
|
|
result !== null &&
|
|
|
|
|
|
"__interrupt__" in result &&
|
|
|
|
|
|
(result as InterruptResult).__interrupt__ === true
|
|
|
|
|
|
);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function isErrorResult(result: unknown): result is ErrorResult {
|
|
|
|
|
|
return (
|
|
|
|
|
|
typeof result === "object" &&
|
|
|
|
|
|
result !== null &&
|
|
|
|
|
|
"status" in result &&
|
|
|
|
|
|
(result as ErrorResult).status === "error"
|
|
|
|
|
|
);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-02-13 18:50:14 +02:00
|
|
|
|
function isInfoResult(result: unknown): result is InfoResult {
|
|
|
|
|
|
return (
|
|
|
|
|
|
typeof result === "object" &&
|
|
|
|
|
|
result !== null &&
|
|
|
|
|
|
"status" in result &&
|
|
|
|
|
|
(result as InfoResult).status === "not_found"
|
|
|
|
|
|
);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function isWarningResult(result: unknown): result is WarningResult {
|
|
|
|
|
|
return (
|
|
|
|
|
|
typeof result === "object" &&
|
|
|
|
|
|
result !== null &&
|
|
|
|
|
|
"status" in result &&
|
|
|
|
|
|
(result as WarningResult).status === "success" &&
|
|
|
|
|
|
"warning" in result &&
|
|
|
|
|
|
typeof (result as WarningResult).warning === "string"
|
|
|
|
|
|
);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-02-11 18:20:51 +02:00
|
|
|
|
function ApprovalCard({
|
|
|
|
|
|
args,
|
|
|
|
|
|
interruptData,
|
|
|
|
|
|
onDecision,
|
|
|
|
|
|
}: {
|
|
|
|
|
|
args: Record<string, unknown>;
|
|
|
|
|
|
interruptData: InterruptResult;
|
2026-02-13 16:25:19 +02:00
|
|
|
|
onDecision: (decision: {
|
|
|
|
|
|
type: "approve" | "reject";
|
|
|
|
|
|
message?: string;
|
|
|
|
|
|
edited_action?: { name: string; args: Record<string, unknown> };
|
|
|
|
|
|
}) => void;
|
2026-02-11 18:20:51 +02:00
|
|
|
|
}) {
|
|
|
|
|
|
const [decided, setDecided] = useState<"approve" | "reject" | null>(
|
|
|
|
|
|
interruptData.__decided__ ?? null
|
|
|
|
|
|
);
|
2026-02-19 15:22:36 +02:00
|
|
|
|
const [deleteFromKb, setDeleteFromKb] = useState(false);
|
2026-02-11 18:20:51 +02:00
|
|
|
|
|
2026-02-13 18:50:14 +02:00
|
|
|
|
const account = interruptData.context?.account;
|
|
|
|
|
|
const currentTitle = interruptData.context?.current_title;
|
|
|
|
|
|
|
2026-02-11 18:20:51 +02:00
|
|
|
|
return (
|
|
|
|
|
|
<div
|
|
|
|
|
|
className={`my-4 max-w-full overflow-hidden rounded-xl transition-all duration-300 ${
|
|
|
|
|
|
decided
|
|
|
|
|
|
? "border border-border bg-card shadow-sm"
|
|
|
|
|
|
: "border-2 border-foreground/20 bg-muted/30 dark:bg-muted/10 shadow-lg animate-pulse-subtle"
|
|
|
|
|
|
}`}
|
|
|
|
|
|
>
|
|
|
|
|
|
<div
|
|
|
|
|
|
className={`flex items-center gap-3 border-b ${
|
|
|
|
|
|
decided ? "border-border bg-card" : "border-foreground/15 bg-muted/40 dark:bg-muted/20"
|
|
|
|
|
|
} px-4 py-3`}
|
|
|
|
|
|
>
|
|
|
|
|
|
<div
|
|
|
|
|
|
className={`flex size-9 shrink-0 items-center justify-center rounded-lg ${
|
|
|
|
|
|
decided ? "bg-muted" : "bg-muted animate-pulse"
|
|
|
|
|
|
}`}
|
|
|
|
|
|
>
|
|
|
|
|
|
<AlertTriangleIcon
|
|
|
|
|
|
className={`size-4 ${decided ? "text-muted-foreground" : "text-foreground"}`}
|
|
|
|
|
|
/>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div className="min-w-0 flex-1">
|
|
|
|
|
|
<p className={`text-sm font-medium ${decided ? "text-foreground" : "text-foreground"}`}>
|
|
|
|
|
|
Delete Notion Page
|
|
|
|
|
|
</p>
|
|
|
|
|
|
<p
|
|
|
|
|
|
className={`truncate text-xs ${decided ? "text-muted-foreground" : "text-muted-foreground"}`}
|
|
|
|
|
|
>
|
|
|
|
|
|
Requires your approval to proceed
|
|
|
|
|
|
</p>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
2026-02-13 18:50:14 +02:00
|
|
|
|
{/* Context section - READ ONLY account and page info */}
|
|
|
|
|
|
{!decided && interruptData.context && (
|
|
|
|
|
|
<div className="border-b border-border px-4 py-3 bg-muted/30 space-y-3">
|
|
|
|
|
|
{interruptData.context.error ? (
|
|
|
|
|
|
<p className="text-sm text-destructive">{interruptData.context.error}</p>
|
|
|
|
|
|
) : (
|
|
|
|
|
|
<>
|
|
|
|
|
|
{account && (
|
|
|
|
|
|
<div className="space-y-2">
|
|
|
|
|
|
<div className="text-xs font-medium text-muted-foreground">Notion Account</div>
|
|
|
|
|
|
<div className="w-full rounded-md border border-input bg-muted/50 px-3 py-2 text-sm">
|
|
|
|
|
|
{account.workspace_icon} {account.workspace_name}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
)}
|
|
|
|
|
|
|
|
|
|
|
|
{currentTitle && (
|
|
|
|
|
|
<div className="space-y-2">
|
|
|
|
|
|
<div className="text-xs font-medium text-muted-foreground">Page to Delete</div>
|
|
|
|
|
|
<div className="w-full rounded-md border border-input bg-muted/50 px-3 py-2 text-sm">
|
|
|
|
|
|
📄 {currentTitle}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
)}
|
|
|
|
|
|
</>
|
|
|
|
|
|
)}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
)}
|
2026-02-11 18:20:51 +02:00
|
|
|
|
|
2026-02-13 16:25:19 +02:00
|
|
|
|
{/* Checkbox for deleting from knowledge base */}
|
|
|
|
|
|
{!decided && (
|
|
|
|
|
|
<div className="px-4 py-3 border-t border-border bg-muted/20">
|
|
|
|
|
|
<label className="flex items-start gap-2 cursor-pointer">
|
|
|
|
|
|
<input
|
|
|
|
|
|
type="checkbox"
|
2026-02-19 15:22:36 +02:00
|
|
|
|
checked={deleteFromKb}
|
|
|
|
|
|
onChange={(e) => setDeleteFromKb(e.target.checked)}
|
2026-02-13 16:25:19 +02:00
|
|
|
|
className="mt-0.5"
|
|
|
|
|
|
/>
|
|
|
|
|
|
<div className="flex-1">
|
|
|
|
|
|
<span className="text-sm text-foreground">Also remove from knowledge base</span>
|
|
|
|
|
|
<p className="text-xs text-muted-foreground mt-1">
|
|
|
|
|
|
⚠️ This will permanently delete the page from your knowledge base (cannot be undone)
|
|
|
|
|
|
</p>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</label>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
)}
|
|
|
|
|
|
|
2026-02-11 18:20:51 +02:00
|
|
|
|
<div
|
|
|
|
|
|
className={`flex items-center gap-2 border-t ${
|
|
|
|
|
|
decided ? "border-border bg-card" : "border-foreground/15 bg-muted/20 dark:bg-muted/10"
|
|
|
|
|
|
} px-4 py-3`}
|
|
|
|
|
|
>
|
|
|
|
|
|
{decided ? (
|
|
|
|
|
|
<p className="flex items-center gap-1.5 text-sm text-muted-foreground">
|
|
|
|
|
|
{decided === "approve" ? (
|
|
|
|
|
|
<>
|
|
|
|
|
|
<CheckIcon className="size-3.5 text-green-500" />
|
|
|
|
|
|
Approved
|
|
|
|
|
|
</>
|
|
|
|
|
|
) : (
|
|
|
|
|
|
<>
|
|
|
|
|
|
<XIcon className="size-3.5 text-destructive" />
|
|
|
|
|
|
Rejected
|
|
|
|
|
|
</>
|
|
|
|
|
|
)}
|
|
|
|
|
|
</p>
|
|
|
|
|
|
) : (
|
|
|
|
|
|
<>
|
|
|
|
|
|
<Button
|
|
|
|
|
|
size="sm"
|
|
|
|
|
|
onClick={() => {
|
|
|
|
|
|
setDecided("approve");
|
2026-02-13 16:25:19 +02:00
|
|
|
|
onDecision({
|
|
|
|
|
|
type: "approve",
|
|
|
|
|
|
edited_action: {
|
|
|
|
|
|
name: interruptData.action_requests[0].name,
|
|
|
|
|
|
args: {
|
2026-02-13 18:50:14 +02:00
|
|
|
|
page_id: interruptData.context?.page_id,
|
|
|
|
|
|
connector_id: account?.id,
|
2026-02-19 15:22:36 +02:00
|
|
|
|
delete_from_kb: deleteFromKb,
|
2026-02-13 16:25:19 +02:00
|
|
|
|
},
|
|
|
|
|
|
},
|
|
|
|
|
|
});
|
2026-02-11 18:20:51 +02:00
|
|
|
|
}}
|
|
|
|
|
|
>
|
|
|
|
|
|
<CheckIcon />
|
|
|
|
|
|
Approve
|
|
|
|
|
|
</Button>
|
|
|
|
|
|
<Button
|
|
|
|
|
|
size="sm"
|
|
|
|
|
|
variant="outline"
|
|
|
|
|
|
onClick={() => {
|
|
|
|
|
|
setDecided("reject");
|
|
|
|
|
|
onDecision({ type: "reject", message: "User rejected the action." });
|
|
|
|
|
|
}}
|
|
|
|
|
|
>
|
|
|
|
|
|
<XIcon />
|
|
|
|
|
|
Reject
|
|
|
|
|
|
</Button>
|
|
|
|
|
|
</>
|
|
|
|
|
|
)}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function ErrorCard({ result }: { result: ErrorResult }) {
|
|
|
|
|
|
return (
|
|
|
|
|
|
<div className="my-4 max-w-md overflow-hidden rounded-xl border border-destructive/50 bg-card">
|
|
|
|
|
|
<div className="flex items-center gap-3 border-b border-destructive/50 px-4 py-3">
|
|
|
|
|
|
<div className="flex size-9 shrink-0 items-center justify-center rounded-lg bg-destructive/10">
|
|
|
|
|
|
<XIcon className="size-4 text-destructive" />
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div className="min-w-0 flex-1">
|
|
|
|
|
|
<p className="text-sm font-medium text-destructive">Failed to delete Notion page</p>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div className="px-4 py-3">
|
|
|
|
|
|
<p className="text-sm text-muted-foreground">{result.message}</p>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-02-13 18:50:14 +02:00
|
|
|
|
function InfoCard({ result }: { result: InfoResult }) {
|
|
|
|
|
|
return (
|
|
|
|
|
|
<div className="my-4 max-w-md overflow-hidden rounded-xl border border-amber-500/50 bg-card">
|
|
|
|
|
|
<div className="flex items-start gap-3 px-4 py-3">
|
|
|
|
|
|
<div className="flex size-9 shrink-0 items-center justify-center rounded-lg bg-amber-500/10">
|
|
|
|
|
|
<InfoIcon className="size-4 text-amber-500" />
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div className="min-w-0 flex-1 pt-2">
|
|
|
|
|
|
<p className="text-sm text-muted-foreground">{result.message}</p>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function WarningCard({ result }: { result: WarningResult }) {
|
|
|
|
|
|
return (
|
|
|
|
|
|
<div className="my-4 max-w-md overflow-hidden rounded-xl border border-amber-500/50 bg-card">
|
|
|
|
|
|
<div className="flex items-center gap-3 border-b border-amber-500/50 px-4 py-3">
|
|
|
|
|
|
<div className="flex size-9 shrink-0 items-center justify-center rounded-lg bg-amber-500/10">
|
|
|
|
|
|
<TriangleAlertIcon className="size-4 text-amber-500" />
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div className="min-w-0 flex-1">
|
|
|
|
|
|
<p className="text-sm font-medium text-amber-600 dark:text-amber-500">Partial success</p>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div className="space-y-2 px-4 py-3 text-xs">
|
|
|
|
|
|
<p className="text-sm text-muted-foreground">{result.warning}</p>
|
|
|
|
|
|
{result.title && (
|
|
|
|
|
|
<div className="pt-2">
|
|
|
|
|
|
<span className="font-medium text-muted-foreground">Deleted page: </span>
|
|
|
|
|
|
<span>{result.title}</span>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
)}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-02-11 18:20:51 +02:00
|
|
|
|
function SuccessCard({ result }: { result: SuccessResult }) {
|
|
|
|
|
|
return (
|
|
|
|
|
|
<div className="my-4 max-w-md overflow-hidden rounded-xl border border-border bg-card">
|
|
|
|
|
|
<div className="flex items-center gap-3 border-b border-border px-4 py-3">
|
|
|
|
|
|
<div className="flex size-9 shrink-0 items-center justify-center rounded-lg bg-green-500/10">
|
|
|
|
|
|
<CheckIcon className="size-4 text-green-500" />
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div className="min-w-0 flex-1">
|
2026-02-13 18:50:14 +02:00
|
|
|
|
<p className="text-[.8rem] text-muted-foreground">
|
2026-02-11 18:20:51 +02:00
|
|
|
|
{result.message || "Notion page deleted successfully"}
|
|
|
|
|
|
</p>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
2026-02-19 15:22:36 +02:00
|
|
|
|
{(result.deleted_from_kb || result.title) && (
|
2026-02-15 23:38:15 -08:00
|
|
|
|
<div className="space-y-2 px-4 py-3 text-xs">
|
|
|
|
|
|
{result.title && (
|
|
|
|
|
|
<div>
|
|
|
|
|
|
<span className="font-medium text-muted-foreground">Deleted page: </span>
|
|
|
|
|
|
<span>{result.title}</span>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
)}
|
2026-02-19 15:22:36 +02:00
|
|
|
|
{result.deleted_from_kb && (
|
2026-02-15 23:38:15 -08:00
|
|
|
|
<div className="pt-1">
|
|
|
|
|
|
<span className="text-green-600 dark:text-green-500">
|
|
|
|
|
|
✓ Also removed from knowledge base
|
|
|
|
|
|
</span>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
)}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
)}
|
2026-02-11 18:20:51 +02:00
|
|
|
|
</div>
|
|
|
|
|
|
);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
export const DeleteNotionPageToolUI = makeAssistantToolUI<
|
2026-02-19 15:22:36 +02:00
|
|
|
|
{ page_title: string; delete_from_kb?: boolean },
|
2026-02-11 18:20:51 +02:00
|
|
|
|
DeleteNotionPageResult
|
|
|
|
|
|
>({
|
|
|
|
|
|
toolName: "delete_notion_page",
|
|
|
|
|
|
render: function DeleteNotionPageUI({ args, result, status }) {
|
|
|
|
|
|
if (status.type === "running") {
|
|
|
|
|
|
return (
|
|
|
|
|
|
<div className="my-4 flex max-w-md items-center gap-3 rounded-xl border border-border bg-card px-4 py-3">
|
|
|
|
|
|
<Loader2Icon className="size-4 animate-spin text-muted-foreground" />
|
|
|
|
|
|
<p className="text-sm text-muted-foreground">Deleting Notion page...</p>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (!result) {
|
|
|
|
|
|
return null;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (isInterruptResult(result)) {
|
|
|
|
|
|
return (
|
|
|
|
|
|
<ApprovalCard
|
|
|
|
|
|
args={args}
|
|
|
|
|
|
interruptData={result}
|
|
|
|
|
|
onDecision={(decision) => {
|
|
|
|
|
|
const event = new CustomEvent("hitl-decision", {
|
|
|
|
|
|
detail: { decisions: [decision] },
|
|
|
|
|
|
});
|
|
|
|
|
|
window.dispatchEvent(event);
|
|
|
|
|
|
}}
|
|
|
|
|
|
/>
|
|
|
|
|
|
);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-02-13 18:50:14 +02:00
|
|
|
|
if (
|
|
|
|
|
|
typeof result === "object" &&
|
|
|
|
|
|
result !== null &&
|
|
|
|
|
|
"status" in result &&
|
|
|
|
|
|
(result as { status: string }).status === "rejected"
|
|
|
|
|
|
) {
|
|
|
|
|
|
return null;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (isInfoResult(result)) {
|
|
|
|
|
|
return <InfoCard result={result} />;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (isWarningResult(result)) {
|
|
|
|
|
|
return <WarningCard result={result} />;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-02-11 18:20:51 +02:00
|
|
|
|
if (isErrorResult(result)) {
|
|
|
|
|
|
return <ErrorCard result={result} />;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return <SuccessCard result={result as SuccessResult} />;
|
|
|
|
|
|
},
|
|
|
|
|
|
});
|