| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115 |
- import dayjs from 'dayjs'
- import { includes, sortBy } from 'lodash'
- import { Check, ChevronRight, Loader2, X } from 'lucide-react'
- import { useRouter } from 'next/router'
- import { pgmqQueueTable } from './Queues.utils'
- import Table from '@/components/to-be-cleaned/Table'
- import { useQueuesMetricsQuery } from '@/data/database-queues/database-queues-metrics-query'
- import { PostgresQueue } from '@/data/database-queues/database-queues-query'
- import { useTablesQuery } from '@/data/tables/tables-query'
- import { useSelectedProjectQuery } from '@/hooks/misc/useSelectedProject'
- import { DATETIME_FORMAT } from '@/lib/constants'
- interface QueuesRowsProps {
- queues: PostgresQueue[]
- filterString: string
- }
- const QueueRow = ({ queue }: { queue: PostgresQueue }) => {
- const router = useRouter()
- const { data: selectedProject } = useSelectedProjectQuery()
- const { data: queueTables } = useTablesQuery({
- projectRef: selectedProject?.ref,
- connectionString: selectedProject?.connectionString,
- schema: 'pgmq',
- })
- const queueTable = queueTables?.find((x) => x.name === pgmqQueueTable(queue.queue_name))
- const isRlsEnabled = !!queueTable?.rls_enabled
- const { data: metrics, isPending: isLoading } = useQueuesMetricsQuery(
- {
- queueName: queue.queue_name,
- projectRef: selectedProject?.ref,
- connectionString: selectedProject?.connectionString,
- },
- {
- staleTime: 30 * 1000, // 30 seconds, talk with Oli whether this is ok to call every minute
- }
- )
- const type = queue.is_partitioned ? 'Partitioned' : queue.is_unlogged ? 'Unlogged' : 'Basic'
- return (
- <Table.tr
- key={queue.queue_name}
- onClick={() => {
- router.push(
- `/project/${selectedProject?.ref}/integrations/queues/queues/${queue.queue_name}`
- )
- }}
- >
- <Table.td className="truncate">
- <p title={queue.queue_name}>{queue.queue_name}</p>
- </Table.td>
- <Table.td className="table-cell overflow-auto">
- <p title={type.toLocaleLowerCase()} className="truncate">
- {type}
- </p>
- </Table.td>
- <Table.td className="table-cell">
- <div className="flex justify-center">
- {isRlsEnabled ? <Check size={14} className="text-brand" /> : <X size={14} />}
- </div>
- </Table.td>
- <Table.td className="table-cell">
- <p title={queue.created_at}>{dayjs(queue.created_at).format(DATETIME_FORMAT)}</p>
- </Table.td>
- <Table.td className="table-cell">
- <div className="flex justify-center">
- {isLoading ? (
- <Loader2 className="animate-spin" size={16} />
- ) : (
- <p>
- {metrics?.queue_length} {metrics?.method === 'estimated' ? '(Approximate)' : null}
- </p>
- )}
- </div>
- </Table.td>
- <Table.td>
- <div className="flex items-center justify-end">
- <ChevronRight size="18" />
- </div>
- </Table.td>
- </Table.tr>
- )
- }
- export const QueuesRows = ({ queues: fetchedQueues, filterString }: QueuesRowsProps) => {
- const filteredQueues = fetchedQueues.filter((x) =>
- includes(x.queue_name.toLowerCase(), filterString.toLowerCase())
- )
- const queues = sortBy(filteredQueues, (func) => func.queue_name.toLocaleLowerCase())
- if (queues.length === 0 && filterString.length > 0) {
- return (
- <Table.tr>
- <Table.td colSpan={5}>
- <p className="text-sm text-foreground">No results found</p>
- <p className="text-sm text-foreground-light">
- Your search for "{filterString}" did not return any results
- </p>
- </Table.td>
- </Table.tr>
- )
- }
- return (
- <>
- {queues.map((q) => (
- <QueueRow key={q.queue_name} queue={q} />
- ))}
- </>
- )
- }
|