mirror of
https://github.com/supabase/supabase.git
synced 2026-06-22 02:02:51 +08:00
* Make the playwright tests always succeed. * Push a change to trigger the tests. * Try moving the continue-on-error on the failed step.
121 lines
4.0 KiB
TypeScript
121 lines
4.0 KiB
TypeScript
import * as Tooltip from '@radix-ui/react-tooltip'
|
|
import { PermissionAction } from '@supabase/shared-types/out/constants'
|
|
import { useState } from 'react'
|
|
import semver from 'semver'
|
|
import {
|
|
Button,
|
|
DropdownMenu,
|
|
DropdownMenuContent,
|
|
DropdownMenuItem,
|
|
DropdownMenuTrigger,
|
|
IconChevronDown,
|
|
IconMail,
|
|
IconUserPlus,
|
|
} from 'ui'
|
|
|
|
import { useCheckPermissions } from 'hooks'
|
|
import { IS_PLATFORM } from 'lib/constants'
|
|
import InviteUserModal from './InviteUserModal'
|
|
import CreateUserModal from './CreateUserModal'
|
|
|
|
export type AddUserDropdownProps = {
|
|
projectKpsVersion?: string
|
|
}
|
|
|
|
const AddUserDropdown = ({ projectKpsVersion }: AddUserDropdownProps) => {
|
|
const inviteEnabled = IS_PLATFORM
|
|
? semver.gte(
|
|
// @ts-ignore
|
|
semver.coerce(projectKpsVersion ?? 'kps-v2.5.4'),
|
|
semver.coerce('kps-v2.5.3')
|
|
)
|
|
: true
|
|
|
|
const canInviteUsers = useCheckPermissions(PermissionAction.AUTH_EXECUTE, 'invite_user')
|
|
const canCreateUsers = useCheckPermissions(PermissionAction.AUTH_EXECUTE, 'create_user')
|
|
|
|
const [inviteVisible, setInviteVisible] = useState(false)
|
|
const [createVisible, setCreateVisible] = useState(false)
|
|
|
|
return (
|
|
<>
|
|
<DropdownMenu>
|
|
<DropdownMenuTrigger asChild>
|
|
<Button type="primary" iconRight={<IconChevronDown strokeWidth={1.5} />}>
|
|
Add user
|
|
</Button>
|
|
</DropdownMenuTrigger>
|
|
<DropdownMenuContent side="bottom" align="end">
|
|
{inviteEnabled && (
|
|
<Tooltip.Root delayDuration={0}>
|
|
<Tooltip.Trigger className="w-full">
|
|
<DropdownMenuItem
|
|
className="space-x-2"
|
|
disabled={!canInviteUsers}
|
|
onClick={() => setInviteVisible(true)}
|
|
>
|
|
<IconMail size="small" />
|
|
<p>Send invitation</p>
|
|
</DropdownMenuItem>
|
|
</Tooltip.Trigger>
|
|
{!canInviteUsers && (
|
|
<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">
|
|
You need additional permissions to invite users
|
|
</span>
|
|
</div>
|
|
</Tooltip.Content>
|
|
</Tooltip.Portal>
|
|
)}
|
|
</Tooltip.Root>
|
|
)}
|
|
|
|
<Tooltip.Root delayDuration={0}>
|
|
<Tooltip.Trigger className="w-full text-left">
|
|
<DropdownMenuItem
|
|
className="space-x-2"
|
|
disabled={!canCreateUsers}
|
|
onClick={() => setCreateVisible(true)}
|
|
>
|
|
<IconUserPlus size="small" />
|
|
<p>Create new user</p>
|
|
</DropdownMenuItem>
|
|
</Tooltip.Trigger>
|
|
|
|
{!canCreateUsers && (
|
|
<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">
|
|
You need additional permissions to create users
|
|
</span>
|
|
</div>
|
|
</Tooltip.Content>
|
|
</Tooltip.Portal>
|
|
)}
|
|
</Tooltip.Root>
|
|
</DropdownMenuContent>
|
|
</DropdownMenu>
|
|
|
|
{inviteEnabled && <InviteUserModal visible={inviteVisible} setVisible={setInviteVisible} />}
|
|
<CreateUserModal visible={createVisible} setVisible={setCreateVisible} />
|
|
</>
|
|
)
|
|
}
|
|
|
|
export default AddUserDropdown
|