mirror of
https://github.com/vitodeploy/vito.git
synced 2025-05-14 12:03:33 +00:00
76 lines
2.4 KiB
TypeScript
76 lines
2.4 KiB
TypeScript
'use client';
|
|
|
|
import { ColumnDef, Row } from '@tanstack/react-table';
|
|
import { Button } from '@/components/ui/button';
|
|
import { EyeIcon, LoaderCircleIcon } from 'lucide-react';
|
|
import type { ServerLog } from '@/types/server-log';
|
|
import { Dialog, DialogContent, DialogDescription, DialogHeader, DialogTitle, DialogTrigger } from '@/components/ui/dialog';
|
|
import { useState } from 'react';
|
|
import axios from 'axios';
|
|
import { ScrollArea, ScrollBar } from '@/components/ui/scroll-area';
|
|
|
|
const LogActionCell = ({ row }: { row: Row<ServerLog> }) => {
|
|
const [open, setOpen] = useState(false);
|
|
const [loading, setLoading] = useState(false);
|
|
const [content, setContent] = useState('');
|
|
|
|
const showLog = async () => {
|
|
setLoading(true);
|
|
try {
|
|
const response = await axios.get(route('logs.show', { server: row.original.server_id, log: row.original.id }));
|
|
setContent(response.data);
|
|
} catch (error: unknown) {
|
|
console.error(error);
|
|
if (error instanceof Error) {
|
|
setContent(error.message);
|
|
} else {
|
|
setContent('An unknown error occurred.');
|
|
}
|
|
} finally {
|
|
setLoading(false);
|
|
setOpen(true);
|
|
}
|
|
};
|
|
|
|
return (
|
|
<div className="flex items-center justify-end">
|
|
<Dialog open={open} onOpenChange={setOpen}>
|
|
<DialogTrigger asChild>
|
|
<Button variant="outline" size="sm" onClick={showLog} disabled={loading}>
|
|
{loading ? <LoaderCircleIcon className="animate-spin" /> : <EyeIcon />}
|
|
</Button>
|
|
</DialogTrigger>
|
|
<DialogContent className="sm:max-w-3xl">
|
|
<DialogHeader>
|
|
<DialogTitle>View Log</DialogTitle>
|
|
<DialogDescription>This is all content of the log</DialogDescription>
|
|
</DialogHeader>
|
|
<ScrollArea className="border-border relative h-[500px] w-full rounded-md border bg-black p-3 font-mono text-sm whitespace-pre-line text-gray-50">
|
|
{content}
|
|
<ScrollBar orientation="vertical" />
|
|
</ScrollArea>
|
|
</DialogContent>
|
|
</Dialog>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export const columns: ColumnDef<ServerLog>[] = [
|
|
{
|
|
accessorKey: 'name',
|
|
header: 'Event',
|
|
enableColumnFilter: true,
|
|
},
|
|
{
|
|
accessorKey: 'created_at_by_timezone',
|
|
header: 'Created At',
|
|
enableSorting: true,
|
|
},
|
|
{
|
|
id: 'actions',
|
|
enableColumnFilter: false,
|
|
enableSorting: false,
|
|
cell: ({ row }) => <LogActionCell row={row} />,
|
|
},
|
|
];
|