2025-07-25 09:34:28 -04:00
|
|
|
import { useState } from 'react';
|
|
|
|
|
|
2025-07-25 11:29:45 -04:00
|
|
|
export default function PermissionIndicator({ userRole, isPublic, showTooltip = true }) {
|
2025-07-25 09:34:28 -04:00
|
|
|
const [showDetails, setShowDetails] = useState(false);
|
|
|
|
|
|
|
|
|
|
const getRoleInfo = (role) => {
|
|
|
|
|
switch (role) {
|
|
|
|
|
case 'owner':
|
|
|
|
|
return {
|
|
|
|
|
icon: '👑',
|
|
|
|
|
label: 'Owner',
|
|
|
|
|
color: '#f59e0b',
|
|
|
|
|
permissions: ['View', 'Edit', 'Delete', 'Manage Users', 'Change Visibility']
|
|
|
|
|
};
|
|
|
|
|
case 'editor':
|
|
|
|
|
return {
|
|
|
|
|
icon: '✏️',
|
|
|
|
|
label: 'Editor',
|
|
|
|
|
color: '#10b981',
|
|
|
|
|
permissions: ['View', 'Edit', 'Add/Remove Cards']
|
|
|
|
|
};
|
|
|
|
|
case 'viewer':
|
|
|
|
|
return {
|
|
|
|
|
icon: '👁️',
|
|
|
|
|
label: 'Viewer',
|
|
|
|
|
color: '#6b7280',
|
|
|
|
|
permissions: ['View Only']
|
|
|
|
|
};
|
|
|
|
|
default:
|
|
|
|
|
return {
|
|
|
|
|
icon: '🔒',
|
|
|
|
|
label: 'No Access',
|
|
|
|
|
color: '#ef4444',
|
|
|
|
|
permissions: []
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
2025-07-25 11:29:45 -04:00
|
|
|
const getVisibilityInfo = (isPublic) => {
|
|
|
|
|
if (isPublic) {
|
|
|
|
|
return {
|
|
|
|
|
icon: '🌍',
|
|
|
|
|
label: 'Public',
|
|
|
|
|
color: '#10b981',
|
|
|
|
|
description: 'Visible in community, invite-only editing'
|
|
|
|
|
};
|
|
|
|
|
} else {
|
|
|
|
|
return {
|
|
|
|
|
icon: '🔒',
|
|
|
|
|
label: 'Private',
|
|
|
|
|
color: '#6b7280',
|
|
|
|
|
description: 'Hidden from community, invite-only editing'
|
|
|
|
|
};
|
2025-07-25 09:34:28 -04:00
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const roleInfo = getRoleInfo(userRole);
|
2025-07-25 11:29:45 -04:00
|
|
|
const visibilityInfo = getVisibilityInfo(isPublic);
|
2025-07-25 09:34:28 -04:00
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<div className="flex items-center space-x-2">
|
|
|
|
|
{/* Role Badge */}
|
|
|
|
|
{userRole && (
|
|
|
|
|
<div className="relative">
|
|
|
|
|
<div
|
|
|
|
|
className="flex items-center space-x-1 px-2 py-1 rounded-full text-xs font-medium cursor-pointer"
|
|
|
|
|
style={{
|
|
|
|
|
backgroundColor: `${roleInfo.color}20`,
|
|
|
|
|
color: roleInfo.color,
|
|
|
|
|
border: `1px solid ${roleInfo.color}40`
|
|
|
|
|
}}
|
|
|
|
|
onMouseEnter={() => showTooltip && setShowDetails(true)}
|
|
|
|
|
onMouseLeave={() => setShowDetails(false)}
|
|
|
|
|
>
|
|
|
|
|
<span>{roleInfo.icon}</span>
|
|
|
|
|
<span>{roleInfo.label}</span>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
{/* Role Tooltip */}
|
|
|
|
|
{showDetails && showTooltip && (
|
|
|
|
|
<div
|
|
|
|
|
className="absolute bottom-full left-0 mb-2 p-3 rounded-lg shadow-lg z-10 min-w-48"
|
|
|
|
|
style={{ backgroundColor: 'var(--bg-secondary)', border: '1px solid var(--border)' }}
|
|
|
|
|
>
|
|
|
|
|
<div className="text-sm font-medium mb-2" style={{ color: 'var(--text-primary)' }}>
|
|
|
|
|
{roleInfo.icon} {roleInfo.label} Permissions:
|
|
|
|
|
</div>
|
|
|
|
|
<ul className="text-xs space-y-1" style={{ color: 'var(--text-secondary)' }}>
|
|
|
|
|
{roleInfo.permissions.map((permission, index) => (
|
|
|
|
|
<li key={index} className="flex items-center space-x-1">
|
|
|
|
|
<span className="text-green-500">✓</span>
|
|
|
|
|
<span>{permission}</span>
|
|
|
|
|
</li>
|
|
|
|
|
))}
|
|
|
|
|
</ul>
|
|
|
|
|
</div>
|
|
|
|
|
)}
|
|
|
|
|
</div>
|
|
|
|
|
)}
|
|
|
|
|
|
|
|
|
|
{/* Visibility Badge */}
|
2025-07-25 11:29:45 -04:00
|
|
|
{isPublic !== undefined && (
|
2025-07-25 09:34:28 -04:00
|
|
|
<div className="relative">
|
|
|
|
|
<div
|
|
|
|
|
className="flex items-center space-x-1 px-2 py-1 rounded-full text-xs font-medium cursor-pointer"
|
|
|
|
|
style={{
|
|
|
|
|
backgroundColor: `${visibilityInfo.color}20`,
|
|
|
|
|
color: visibilityInfo.color,
|
|
|
|
|
border: `1px solid ${visibilityInfo.color}40`
|
|
|
|
|
}}
|
|
|
|
|
onMouseEnter={() => showTooltip && setShowDetails(true)}
|
|
|
|
|
onMouseLeave={() => setShowDetails(false)}
|
|
|
|
|
>
|
|
|
|
|
<span>{visibilityInfo.icon}</span>
|
|
|
|
|
<span>{visibilityInfo.label}</span>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
{/* Visibility Tooltip */}
|
|
|
|
|
{showDetails && showTooltip && (
|
|
|
|
|
<div
|
|
|
|
|
className="absolute bottom-full right-0 mb-2 p-3 rounded-lg shadow-lg z-10 min-w-48"
|
|
|
|
|
style={{ backgroundColor: 'var(--bg-secondary)', border: '1px solid var(--border)' }}
|
|
|
|
|
>
|
|
|
|
|
<div className="text-sm font-medium mb-1" style={{ color: 'var(--text-primary)' }}>
|
|
|
|
|
{visibilityInfo.icon} {visibilityInfo.label}
|
|
|
|
|
</div>
|
|
|
|
|
<p className="text-xs" style={{ color: 'var(--text-secondary)' }}>
|
|
|
|
|
{visibilityInfo.description}
|
|
|
|
|
</p>
|
|
|
|
|
</div>
|
|
|
|
|
)}
|
|
|
|
|
</div>
|
|
|
|
|
)}
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Utility component for inline permission checks
|
|
|
|
|
export function CanEdit({ userRole, children }) {
|
|
|
|
|
const canEdit = ['owner', 'editor'].includes(userRole);
|
|
|
|
|
return canEdit ? children : null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export function CanManage({ userRole, children }) {
|
|
|
|
|
const canManage = userRole === 'owner';
|
|
|
|
|
return canManage ? children : null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export function PermissionGate({ userRole, requiredRole, children, fallback = null }) {
|
|
|
|
|
const roleHierarchy = { viewer: 1, editor: 2, owner: 3 };
|
|
|
|
|
const userLevel = roleHierarchy[userRole] || 0;
|
|
|
|
|
const requiredLevel = roleHierarchy[requiredRole] || 0;
|
|
|
|
|
|
|
|
|
|
return userLevel >= requiredLevel ? children : fallback;
|
|
|
|
|
}
|