mirror of
https://github.com/supabase/supabase.git
synced 2026-05-11 19:26:38 +08:00
This PR migrates the whole monorepo to use Tailwind v4: - Removed `@tailwindcss/container-queries` plugin since it's included by default in v4, - Bump all instances of Tailwind to v4. Made minimal changes to the shared config to remove non-supported features (`alpha` mentions), - Migrate all apps to be compatible with v4 configs, - Fix the `typography.css` import in 3 apps, - Add missing rules which were included by default in v3, - Run `pnpm dlx @tailwindcss/upgrade` on all apps, which renames a lot of classes - Rename all misnamed classes according to https://tailwindcss.com/docs/upgrade-guide#renamed-utilities in all apps. --------- Co-authored-by: Jordi Enric <jordi.err@gmail.com>
121 lines
3.9 KiB
TypeScript
121 lines
3.9 KiB
TypeScript
import { PermissionAction } from '@supabase/shared-types/out/constants'
|
|
import { Edit, MoreVertical, Trash } from 'lucide-react'
|
|
import {
|
|
Button,
|
|
DropdownMenu,
|
|
DropdownMenuContent,
|
|
DropdownMenuItem,
|
|
DropdownMenuSeparator,
|
|
DropdownMenuTrigger,
|
|
TableCell,
|
|
TableRow,
|
|
Tooltip,
|
|
TooltipContent,
|
|
TooltipTrigger,
|
|
} from 'ui'
|
|
import { TimestampInfo } from 'ui-patterns'
|
|
|
|
import CopyButton from '@/components/ui/CopyButton'
|
|
import type { OAuthApp } from '@/data/oauth/oauth-apps-query'
|
|
import { useAsyncCheckPermissions } from '@/hooks/misc/useCheckPermissions'
|
|
|
|
export interface OAuthAppRowProps {
|
|
app: OAuthApp
|
|
onSelectEdit: () => void
|
|
onSelectDelete: () => void
|
|
}
|
|
|
|
export const OAuthAppRow = ({ app, onSelectEdit, onSelectDelete }: OAuthAppRowProps) => {
|
|
const { can: canUpdateOAuthApps } = useAsyncCheckPermissions(
|
|
PermissionAction.UPDATE,
|
|
'approved_oauth_apps'
|
|
)
|
|
const { can: canDeleteOAuthApps } = useAsyncCheckPermissions(
|
|
PermissionAction.DELETE,
|
|
'approved_oauth_apps'
|
|
)
|
|
|
|
return (
|
|
<TableRow>
|
|
<TableCell className="w-[62px] min-w-[62px] max-w-[62px]">
|
|
<div
|
|
className="w-[30px] h-[30px] rounded-full bg-no-repeat bg-cover bg-center border border-control flex items-center justify-center text-xs"
|
|
style={{ backgroundImage: app.icon ? `url('${app.icon}')` : 'none' }}
|
|
>
|
|
{!!app.icon ? '' : `${app.name[0]}`}
|
|
</div>
|
|
</TableCell>
|
|
<TableCell>
|
|
<p title={app.name} className="truncate">
|
|
{app.name}
|
|
</p>
|
|
</TableCell>
|
|
<TableCell>
|
|
<div className="flex items-center gap-x-2">
|
|
<p className="text-xs font-mono truncate" title={app.client_id}>
|
|
{app.client_id}
|
|
</p>
|
|
<CopyButton type="default" iconOnly text={app.client_id ?? ''} className="px-1" />
|
|
</div>
|
|
</TableCell>
|
|
<TableCell>
|
|
<TimestampInfo
|
|
utcTimestamp={app.created_at ?? ''}
|
|
labelFormat="DD/MM/YYYY, HH:mm:ss"
|
|
className="text-sm"
|
|
/>
|
|
</TableCell>
|
|
<TableCell className="text-right">
|
|
<DropdownMenu>
|
|
<DropdownMenuTrigger asChild>
|
|
<Button type="default" icon={<MoreVertical />} className="px-1" />
|
|
</DropdownMenuTrigger>
|
|
<DropdownMenuContent align="end" side="bottom" className="w-32">
|
|
<Tooltip>
|
|
<TooltipTrigger asChild>
|
|
<DropdownMenuItem
|
|
key="edit"
|
|
disabled={!canUpdateOAuthApps}
|
|
className="space-x-2 pointer-events-auto!"
|
|
onClick={() => {
|
|
if (canUpdateOAuthApps) onSelectEdit()
|
|
}}
|
|
>
|
|
<Edit size={16} />
|
|
<p>Edit app</p>
|
|
</DropdownMenuItem>
|
|
</TooltipTrigger>
|
|
{!canUpdateOAuthApps && (
|
|
<TooltipContent side="left">
|
|
You need additional permissions to edit apps
|
|
</TooltipContent>
|
|
)}
|
|
</Tooltip>
|
|
<DropdownMenuSeparator />
|
|
<Tooltip>
|
|
<TooltipTrigger asChild>
|
|
<DropdownMenuItem
|
|
disabled={!canDeleteOAuthApps}
|
|
className="space-x-2 pointer-events-auto!"
|
|
key="delete"
|
|
onClick={() => {
|
|
if (canDeleteOAuthApps) onSelectDelete()
|
|
}}
|
|
>
|
|
<Trash size={16} />
|
|
<p>Delete app</p>
|
|
</DropdownMenuItem>
|
|
</TooltipTrigger>
|
|
{!canDeleteOAuthApps && (
|
|
<TooltipContent side="left">
|
|
You need additional permissions to delete apps
|
|
</TooltipContent>
|
|
)}
|
|
</Tooltip>
|
|
</DropdownMenuContent>
|
|
</DropdownMenu>
|
|
</TableCell>
|
|
</TableRow>
|
|
)
|
|
}
|