Files
supabase/apps/studio/components/interfaces/Functions/EdgeFunctionRecentInvocations.tsx
Alaister Young ca2b50a0a7 chore(ui-patterns): collapse the admonition shim into ui-patterns/Admonition (#48377)
Follow-up to #48344: collapses the two resolution paths for the
Admonition module into one.

`src/admonition.tsx` was a back-compat shim re-exporting
`src/Admonition/`. Two ways to resolve one module is exactly what
produced the macOS self-import bug fixed in #48344, and the local
typecheck errors that #48374 worked around. This removes the shim and
standardizes on the PascalCase subpath, matching every other export in
the package.

**Changed:**

- Codemodded all 246 `ui-patterns/admonition` imports to
`ui-patterns/Admonition` (240 `.tsx`, 5 `.mdx`, 1 `.ts` across studio,
docs, www, design-system, and lite-studio)
- Pointed the 5 internal `'../admonition'` imports back at the
`'../Admonition'` directory

**Removed:**

- `packages/ui-patterns/src/admonition.tsx`, and its `./admonition`
entry in the exports map (regenerated with `pnpm gen:exports`)

## To test

- `grep -r "ui-patterns/admonition" --include='*.ts*'` → no hits
- `pnpm test:case-hazards` → passes
- `pnpm typecheck` → all 15 tasks green
- `pnpm --filter studio run lint:ratchet` → passes
- `pnpm --filter ui-patterns vitest run src/Admonition` → 11 tests pass

<!-- This is an auto-generated comment: release notes by coderabbit.ai
-->

## Summary by CodeRabbit

* **Bug Fixes**
* Standardized Admonition component imports across the application and
documentation.
* Improved compatibility with case-sensitive environments by using the
canonical component path.
  * Removed the legacy Admonition import entry point.

<!-- end of auto-generated comment: release notes by coderabbit.ai -->

---------

Co-authored-by: Alaister Young <10985857+alaister@users.noreply.github.com>
2026-07-29 00:48:56 +08:00

141 lines
5.3 KiB
TypeScript

import { useParams } from 'common'
import { Clock, ExternalLink, RefreshCw } from 'lucide-react'
import Link from 'next/link'
import { useRouter } from 'next/router'
import { Button, cn } from 'ui'
import { Admonition } from 'ui-patterns/Admonition'
import { GenericSkeletonLoader } from 'ui-patterns/ShimmeringLoader'
import { TimestampInfo } from 'ui-patterns/TimestampInfo'
import { parseEdgeFunctionEventMessage } from './EdgeFunctionRecentInvocations.utils'
import { LOGS_TABLES } from '@/components/interfaces/Settings/Logs/Logs.constants'
import useLogsPreview from '@/hooks/analytics/useLogsPreview'
interface EdgeFunctionRecentInvocationsProps {
functionId: string
functionSlug: string
}
export const EdgeFunctionRecentInvocations = ({
functionId,
functionSlug,
}: EdgeFunctionRecentInvocationsProps) => {
const { ref } = useParams()
const router = useRouter()
const { logData, isLoading, isSuccess, refresh } = useLogsPreview({
projectRef: ref as string,
table: LOGS_TABLES.fn_edge,
filterOverride: { function_id: functionId },
limit: 10,
})
return (
<div className="flex flex-col gap-y-3">
<div className="flex items-center justify-between">
<div>
<p className="text-sm">Recent Invocations</p>
<p className="text-xs text-foreground-light">
Latest invocation requests for this function
</p>
</div>
<Button
variant="default"
loading={isLoading}
disabled={isLoading}
icon={<RefreshCw size={14} />}
onClick={() => refresh()}
>
Refresh
</Button>
</div>
{isLoading && !isSuccess ? (
<GenericSkeletonLoader />
) : logData.length === 0 ? (
<Admonition
type="note"
title="No recent invocations"
description="Invocation logs will appear here when requests are made to this function"
/>
) : (
<div className="border rounded-md divide-y overflow-hidden">
{logData.map((log) => {
const statusCode = String(log.status_code ?? '')
const method = String(log.method ?? '')
const executionTime = log.execution_time_ms
const is2xx = statusCode.startsWith('2')
const is4xx = statusCode.startsWith('4')
const is5xx = statusCode.startsWith('5')
const logUrl = `/project/${ref}/functions/${functionSlug}/invocations?log=${log.id}`
return (
<div
key={log.id}
role="button"
tabIndex={0}
onClick={() => router.push(logUrl)}
onKeyDown={(e) => {
if (e.key === 'Enter' || e.key === ' ') {
e.preventDefault()
router.push(logUrl)
}
}}
className="group flex items-center font-mono px-3 py-2 gap-3 bg-surface-100 cursor-pointer hover:bg-surface-200 transition-colors"
>
<span className="text-xs text-foreground-light whitespace-nowrap">
<TimestampInfo utcTimestamp={log.timestamp!} format="DD MMM YY, HH:mm:ss" />
</span>
<div className="flex items-center">
{statusCode ? (
<div
className={cn(
'flex items-center justify-center border px-1.5 py-0.5 rounded-sm text-xs font-mono',
is2xx && 'text-brand border-brand bg-brand-300',
is4xx && 'text-warning border-warning bg-warning-300',
is5xx && 'text-destructive border-destructive bg-destructive-300',
!is2xx &&
!is4xx &&
!is5xx &&
'text-foreground-light border-default bg-surface-200'
)}
>
{statusCode}
</div>
) : (
<span className="text-xs text-foreground-lighter">-</span>
)}
</div>
<span className="text-xs text-foreground-light">{method || '-'}</span>
{executionTime !== undefined && (
<span className="flex items-center gap-1 text-xs text-foreground-light">
<Clock size={12} className="text-foreground-muted" />
{Number(executionTime).toFixed(0)}ms
</span>
)}
<span className="flex-1 text-xs text-foreground-light truncate">
{parseEdgeFunctionEventMessage(
String(log.event_message ?? ''),
method,
statusCode
)}
</span>
<ExternalLink
size={14}
className="shrink-0 text-foreground-muted opacity-0 group-hover:opacity-100 transition-opacity"
/>
</div>
)
})}
<Link
href={`/project/${ref}/functions/${functionSlug}/invocations`}
className="flex items-center justify-center py-2 text-xs text-foreground-light hover:text-foreground transition-colors"
>
View all invocations
</Link>
</div>
)}
</div>
)
}