mirror of
https://github.com/supabase/supabase.git
synced 2026-06-22 03:02:48 +08:00
116 lines
4.1 KiB
TypeScript
116 lines
4.1 KiB
TypeScript
import * as Tooltip from '@radix-ui/react-tooltip'
|
|
import dayjs from 'dayjs'
|
|
import { useRouter } from 'next/router'
|
|
import { useState } from 'react'
|
|
import { IconCheck, IconClipboard } from 'ui'
|
|
|
|
import { useParams } from 'common/hooks'
|
|
import { useProjectContext } from 'components/layouts/ProjectLayout/ProjectContext'
|
|
import Table from 'components/to-be-cleaned/Table'
|
|
import { useCustomDomainsQuery } from 'data/custom-domains/custom-domains-query'
|
|
import type { EdgeFunctionsResponse } from 'data/edge-functions/edge-functions-query'
|
|
|
|
interface EdgeFunctionsListItemProps {
|
|
function: EdgeFunctionsResponse
|
|
}
|
|
|
|
const EdgeFunctionsListItem = ({ function: item }: EdgeFunctionsListItemProps) => {
|
|
const router = useRouter()
|
|
const { ref } = useParams()
|
|
const { project } = useProjectContext()
|
|
const [isCopied, setIsCopied] = useState(false)
|
|
|
|
const { data: customDomainData } = useCustomDomainsQuery({ projectRef: ref })
|
|
|
|
// get the .co or .net TLD from the restUrl
|
|
const restUrl = project?.restUrl
|
|
const restUrlTld = restUrl !== undefined ? new URL(restUrl).hostname.split('.').pop() : 'co'
|
|
const functionUrl = `https://${ref}.supabase.${restUrlTld}/functions/v1/${item.slug}`
|
|
|
|
const endpoint =
|
|
customDomainData?.customDomain?.status === 'active'
|
|
? `https://${customDomainData.customDomain.hostname}/functions/v1/${item.slug}`
|
|
: functionUrl
|
|
|
|
return (
|
|
<Table.tr
|
|
key={item.id}
|
|
onClick={() => {
|
|
router.push(`/project/${ref}/functions/${item.slug}/details`)
|
|
}}
|
|
>
|
|
<Table.td>
|
|
<div className="flex items-center gap-2">
|
|
<p className="text-sm text-foreground">{item.name}</p>
|
|
</div>
|
|
</Table.td>
|
|
<Table.td>
|
|
<div className="text-xs text-foreground-light flex gap-2 items-center truncate">
|
|
<p className="font-mono truncate hidden md:inline">{endpoint}</p>
|
|
<button
|
|
type="button"
|
|
className="text-foreground-lighter hover:text-foreground transition"
|
|
onClick={(event: any) => {
|
|
function onCopy(value: any) {
|
|
setIsCopied(true)
|
|
navigator.clipboard.writeText(value).then()
|
|
setTimeout(function () {
|
|
setIsCopied(false)
|
|
}, 3000)
|
|
}
|
|
event.stopPropagation()
|
|
onCopy(endpoint)
|
|
}}
|
|
>
|
|
{isCopied ? (
|
|
<div className="text-brand">
|
|
<IconCheck size={14} strokeWidth={3} />
|
|
</div>
|
|
) : (
|
|
<div className="relative">
|
|
<div className="block">
|
|
<IconClipboard size={14} strokeWidth={1.5} />
|
|
</div>
|
|
</div>
|
|
)}
|
|
</button>
|
|
</div>
|
|
</Table.td>
|
|
<Table.td className="hidden 2xl:table-cell">
|
|
<p className="text-foreground-light">
|
|
{dayjs(item.created_at).format('DD MMM, YYYY HH:mm')}
|
|
</p>
|
|
</Table.td>
|
|
<Table.td className="lg:table-cell">
|
|
<Tooltip.Root delayDuration={0}>
|
|
<Tooltip.Trigger>
|
|
<div className="flex items-center space-x-2">
|
|
<p className="text-sm text-foreground-light">{dayjs(item.updated_at).fromNow()}</p>
|
|
</div>
|
|
</Tooltip.Trigger>
|
|
<Tooltip.Portal>
|
|
<Tooltip.Content side="bottom">
|
|
<Tooltip.Arrow className="radix-tooltip-arrow" />
|
|
<div
|
|
className={[
|
|
'rounded bg-alternative py-1 px-2 leading-none shadow',
|
|
'border border-background',
|
|
].join(' ')}
|
|
>
|
|
<span className="text-xs text-foreground">
|
|
Last updated on {dayjs(item.updated_at).format('DD MMM, YYYY HH:mm')}
|
|
</span>
|
|
</div>
|
|
</Tooltip.Content>
|
|
</Tooltip.Portal>
|
|
</Tooltip.Root>
|
|
</Table.td>
|
|
<Table.td className="lg:table-cell">
|
|
<p className="text-foreground-light">{item.version}</p>
|
|
</Table.td>
|
|
</Table.tr>
|
|
)
|
|
}
|
|
|
|
export default EdgeFunctionsListItem
|