d25d482dc2
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
79 lines
2.4 KiB
TypeScript
79 lines
2.4 KiB
TypeScript
'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'
|