chore: import upstream snapshot with attribution
Publish CLI Package / publish-npm (push) Waiting to run
Publish Python SDK / publish-pypi (push) Waiting to run
Publish TypeScript SDK / publish-npm (push) Waiting to run
CI / Migrate Dev DB (push) Has been skipped
CI / Detect Version (push) Has been cancelled
CI / Migrate DB (push) Has been cancelled
CI / Build Dev ECR (./docker/app.Dockerfile, ECR_APP) (push) Has been cancelled
CI / Build Dev ECR (./docker/db.Dockerfile, ECR_MIGRATIONS) (push) Has been cancelled
CI / Build Dev ECR (./docker/pii.Dockerfile, ECR_PII) (push) Has been cancelled
CI / Build Dev ECR (./docker/realtime.Dockerfile, ECR_REALTIME) (push) Has been cancelled
CI / Deploy Trigger.dev (Dev) (push) Has been cancelled
CI / Build AMD64 (./docker/app.Dockerfile, ECR_APP, ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Build AMD64 (./docker/db.Dockerfile, ECR_MIGRATIONS, ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Build AMD64 (./docker/pii.Dockerfile, ECR_PII, ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Build AMD64 (./docker/realtime.Dockerfile, ECR_REALTIME, ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/app.Dockerfile, ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/db.Dockerfile, ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/pii.Dockerfile, ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/realtime.Dockerfile, ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Check Docs Changes (push) Has been cancelled
CI / Process Docs (push) Has been cancelled
CI / Create GitHub Release (push) Has been cancelled
CI / Test and Build (push) Has been cancelled
Publish CLI Package / publish-npm (push) Waiting to run
Publish Python SDK / publish-pypi (push) Waiting to run
Publish TypeScript SDK / publish-npm (push) Waiting to run
CI / Migrate Dev DB (push) Has been skipped
CI / Detect Version (push) Has been cancelled
CI / Migrate DB (push) Has been cancelled
CI / Build Dev ECR (./docker/app.Dockerfile, ECR_APP) (push) Has been cancelled
CI / Build Dev ECR (./docker/db.Dockerfile, ECR_MIGRATIONS) (push) Has been cancelled
CI / Build Dev ECR (./docker/pii.Dockerfile, ECR_PII) (push) Has been cancelled
CI / Build Dev ECR (./docker/realtime.Dockerfile, ECR_REALTIME) (push) Has been cancelled
CI / Deploy Trigger.dev (Dev) (push) Has been cancelled
CI / Build AMD64 (./docker/app.Dockerfile, ECR_APP, ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Build AMD64 (./docker/db.Dockerfile, ECR_MIGRATIONS, ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Build AMD64 (./docker/pii.Dockerfile, ECR_PII, ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Build AMD64 (./docker/realtime.Dockerfile, ECR_REALTIME, ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/app.Dockerfile, ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/db.Dockerfile, ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/pii.Dockerfile, ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/realtime.Dockerfile, ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Check Docs Changes (push) Has been cancelled
CI / Process Docs (push) Has been cancelled
CI / Create GitHub Release (push) Has been cancelled
CI / Test and Build (push) Has been cancelled
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
export {
|
||||
type OrgRole,
|
||||
OrgRoleSelector,
|
||||
PermissionSelector,
|
||||
type PermissionType,
|
||||
} from './permission-selector'
|
||||
export {
|
||||
type CredentialRoleSource,
|
||||
credentialRoleLockReason,
|
||||
RoleLockTooltip,
|
||||
type WorkspaceRoleSource,
|
||||
workspaceRoleLockReason,
|
||||
} from './role-lock'
|
||||
@@ -0,0 +1,78 @@
|
||||
'use client'
|
||||
|
||||
import React from 'react'
|
||||
import { ButtonGroup, ButtonGroupItem, cn } from '@sim/emcn'
|
||||
import type { PermissionType } from '@/lib/workspaces/permissions/utils'
|
||||
|
||||
export type { PermissionType }
|
||||
|
||||
type SelectorSize = 'default' | 'compact'
|
||||
|
||||
interface PermissionSelectorProps {
|
||||
value: PermissionType
|
||||
onChange: (value: PermissionType) => void
|
||||
disabled?: boolean
|
||||
className?: string
|
||||
size?: SelectorSize
|
||||
}
|
||||
|
||||
const COMPACT_ITEM_CLASS = 'h-[22px] min-w-[38px] px-1.5 py-0 text-xs'
|
||||
|
||||
export const PermissionSelector = React.memo<PermissionSelectorProps>(
|
||||
({ value, onChange, disabled = false, className, size = 'default' }) => {
|
||||
const itemClass = size === 'compact' ? COMPACT_ITEM_CLASS : undefined
|
||||
return (
|
||||
<ButtonGroup
|
||||
value={value}
|
||||
onValueChange={(val) => onChange(val as PermissionType)}
|
||||
disabled={disabled}
|
||||
className={cn(disabled && 'cursor-not-allowed', className)}
|
||||
>
|
||||
<ButtonGroupItem value='read' className={itemClass} title='View only'>
|
||||
Read
|
||||
</ButtonGroupItem>
|
||||
<ButtonGroupItem value='write' className={itemClass} title='Edit content'>
|
||||
Write
|
||||
</ButtonGroupItem>
|
||||
<ButtonGroupItem value='admin' className={itemClass} title='Full access'>
|
||||
Admin
|
||||
</ButtonGroupItem>
|
||||
</ButtonGroup>
|
||||
)
|
||||
}
|
||||
)
|
||||
PermissionSelector.displayName = 'PermissionSelector'
|
||||
|
||||
export type OrgRole = 'admin' | 'member'
|
||||
|
||||
interface OrgRoleSelectorProps {
|
||||
value: OrgRole
|
||||
onChange: (value: OrgRole) => void
|
||||
disabled?: boolean
|
||||
className?: string
|
||||
size?: SelectorSize
|
||||
}
|
||||
|
||||
const COMPACT_ORG_ITEM_CLASS = 'h-[22px] min-w-[58px] px-1.5 py-0 text-xs'
|
||||
|
||||
export const OrgRoleSelector = React.memo<OrgRoleSelectorProps>(
|
||||
({ value, onChange, disabled = false, className, size = 'compact' }) => {
|
||||
const itemClass = size === 'compact' ? COMPACT_ORG_ITEM_CLASS : undefined
|
||||
return (
|
||||
<ButtonGroup
|
||||
value={value}
|
||||
onValueChange={(val) => onChange(val as OrgRole)}
|
||||
disabled={disabled}
|
||||
className={cn(disabled && 'cursor-not-allowed', className)}
|
||||
>
|
||||
<ButtonGroupItem value='member' className={itemClass} title='Organization member'>
|
||||
Member
|
||||
</ButtonGroupItem>
|
||||
<ButtonGroupItem value='admin' className={itemClass} title='Organization admin'>
|
||||
Admin
|
||||
</ButtonGroupItem>
|
||||
</ButtonGroup>
|
||||
)
|
||||
}
|
||||
)
|
||||
OrgRoleSelector.displayName = 'OrgRoleSelector'
|
||||
@@ -0,0 +1,54 @@
|
||||
'use client'
|
||||
|
||||
import type { ReactNode } from 'react'
|
||||
import { Tooltip } from '@sim/emcn'
|
||||
|
||||
export type WorkspaceRoleSource = 'owner' | 'explicit' | 'org-admin'
|
||||
export type CredentialRoleSource = 'explicit' | 'workspace-admin'
|
||||
|
||||
/**
|
||||
* Explanation shown when a workspace member's role is fixed by inheritance and
|
||||
* cannot be edited. Returns null for editable (`explicit`) roles.
|
||||
*/
|
||||
export function workspaceRoleLockReason(
|
||||
roleSource: WorkspaceRoleSource | undefined
|
||||
): string | null {
|
||||
if (roleSource === 'org-admin') return 'Organization admins are automatically workspace admins'
|
||||
if (roleSource === 'owner') return 'Workspace owner'
|
||||
return null
|
||||
}
|
||||
|
||||
/**
|
||||
* Explanation shown when a credential member's role is fixed because they are a
|
||||
* workspace admin. Returns null for editable (`explicit`) roles.
|
||||
*/
|
||||
export function credentialRoleLockReason(
|
||||
roleSource: CredentialRoleSource | undefined
|
||||
): string | null {
|
||||
if (roleSource === 'workspace-admin') {
|
||||
return 'Workspace admins are automatically credential admins'
|
||||
}
|
||||
return null
|
||||
}
|
||||
|
||||
interface RoleLockTooltipProps {
|
||||
reason: string | null
|
||||
children: ReactNode
|
||||
}
|
||||
|
||||
/**
|
||||
* Wraps a disabled role control in a tooltip explaining why the role is fixed.
|
||||
* Renders children unchanged when there is no lock reason.
|
||||
*/
|
||||
export function RoleLockTooltip({ reason, children }: RoleLockTooltipProps) {
|
||||
if (!reason) return <>{children}</>
|
||||
|
||||
return (
|
||||
<Tooltip.Root>
|
||||
<Tooltip.Trigger asChild>
|
||||
<div className='inline-flex'>{children}</div>
|
||||
</Tooltip.Trigger>
|
||||
<Tooltip.Content>{reason}</Tooltip.Content>
|
||||
</Tooltip.Root>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user