Files
smoothschedule/frontend/src/pages/platform/PlatformUsers.tsx
poduck b10426fbdb feat: Add photo galleries to services, resource types management, and UI improvements
Major features:
- Add drag-and-drop photo gallery to Service create/edit modals
- Add Resource Types management section to Settings (CRUD for custom types)
- Add edit icon consistency to Resources table (pencil icon in actions)
- Improve Services page with drag-to-reorder and customer preview mockup

Backend changes:
- Add photos JSONField to Service model with migration
- Add ResourceType model with category (STAFF/OTHER), description fields
- Add ResourceTypeViewSet with CRUD operations
- Add service reorder endpoint for display order

Frontend changes:
- Services page: two-column layout, drag-reorder, photo upload
- Settings page: Resource Types tab with full CRUD modal
- Resources page: Edit icon in actions column instead of row click
- Sidebar: Payments link visibility based on role and paymentsEnabled
- Update types.ts with Service.photos and ResourceTypeDefinition

Note: Removed photos from ResourceType (kept only for Service)

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-28 01:11:53 -05:00

156 lines
7.5 KiB
TypeScript

import React, { useState } from 'react';
import { useTranslation } from 'react-i18next';
import { Search, Filter, Eye, Shield, User as UserIcon } from 'lucide-react';
import { usePlatformUsers } from '../../hooks/usePlatform';
interface PlatformUsersProps {
onMasquerade: (targetUser: { id: number; username?: string; name?: string; email?: string; role?: string }) => void;
}
const PlatformUsers: React.FC<PlatformUsersProps> = ({ onMasquerade }) => {
const { t } = useTranslation();
const [searchTerm, setSearchTerm] = useState('');
const [roleFilter, setRoleFilter] = useState<string>('all');
const { data: users, isLoading, error } = usePlatformUsers();
const filteredUsers = (users || []).filter(u => {
const matchesSearch = (u.name || '').toLowerCase().includes(searchTerm.toLowerCase()) ||
u.email.toLowerCase().includes(searchTerm.toLowerCase()) ||
u.username.toLowerCase().includes(searchTerm.toLowerCase());
const matchesRole = roleFilter === 'all' || u.role === roleFilter;
return matchesSearch && matchesRole;
});
const getRoleBadgeColor = (role: string) => {
switch(role) {
case 'superuser': return 'bg-purple-100 text-purple-800 dark:bg-purple-900/30 dark:text-purple-300';
case 'platform_manager':
case 'platform_support': return 'bg-indigo-100 text-indigo-800 dark:bg-indigo-900/30 dark:text-indigo-300';
case 'owner': return 'bg-blue-100 text-blue-800 dark:bg-blue-900/30 dark:text-blue-300';
case 'staff': return 'bg-green-100 text-green-800 dark:bg-green-900/30 dark:text-green-300';
case 'customer': return 'bg-gray-100 text-gray-800 dark:bg-gray-700 dark:text-gray-300';
default: return 'bg-gray-100 text-gray-800';
}
};
const handleMasquerade = (platformUser: any) => {
// Pass user info to masquerade - we only need the id
onMasquerade({
id: platformUser.id,
username: platformUser.username,
name: platformUser.full_name || platformUser.username,
email: platformUser.email,
role: platformUser.role || 'customer',
});
};
if (isLoading) {
return (
<div className="flex items-center justify-center h-64">
<div className="text-gray-500 dark:text-gray-400">{t('common.loading')}</div>
</div>
);
}
if (error) {
return (
<div className="flex items-center justify-center h-64">
<div className="text-red-500">{t('errors.generic')}</div>
</div>
);
}
return (
<div className="space-y-6">
<div className="flex flex-col sm:flex-row sm:items-center justify-between gap-4">
<div>
<h2 className="text-2xl font-bold text-gray-900 dark:text-white">{t('platform.userDirectory')}</h2>
<p className="text-gray-500 dark:text-gray-400">{t('platform.userDirectoryDescription')}</p>
</div>
</div>
<div className="flex flex-col sm:flex-row gap-4 bg-white dark:bg-gray-800 p-4 rounded-xl border border-gray-200 dark:border-gray-700 shadow-sm">
<div className="relative flex-1">
<Search className="absolute left-3 top-1/2 -translate-y-1/2 text-gray-400" size={18} />
<input
type="text"
placeholder={t('platform.searchUsers')}
value={searchTerm}
onChange={(e) => setSearchTerm(e.target.value)}
className="w-full pl-10 pr-4 py-2 bg-gray-50 dark:bg-gray-700 border border-gray-200 dark:border-gray-600 rounded-lg focus:outline-none focus:ring-2 focus:ring-indigo-500 dark:text-white"
/>
</div>
<select
value={roleFilter}
onChange={(e) => setRoleFilter(e.target.value)}
className="px-4 py-2 bg-gray-50 dark:bg-gray-700 border border-gray-200 dark:border-gray-600 rounded-lg focus:outline-none focus:ring-2 focus:ring-indigo-500 text-gray-700 dark:text-gray-200"
>
<option value="all">{t('platform.allRoles')}</option>
<option value="superuser">{t('platform.roles.superuser')}</option>
<option value="platform_manager">{t('platform.roles.platformManager')}</option>
<option value="owner">{t('platform.roles.businessOwner')}</option>
<option value="staff">{t('platform.roles.staff')}</option>
<option value="customer">{t('platform.roles.customer')}</option>
</select>
</div>
<div className="bg-white dark:bg-gray-800 rounded-xl border border-gray-200 dark:border-gray-700 shadow-sm overflow-hidden">
<table className="w-full text-sm text-left">
<thead className="text-xs text-gray-500 dark:text-gray-400 uppercase bg-gray-50 dark:bg-gray-900/50 border-b border-gray-200 dark:border-gray-700">
<tr>
<th className="px-6 py-4 font-medium">{t('platform.user')}</th>
<th className="px-6 py-4 font-medium">{t('platform.role')}</th>
<th className="px-6 py-4 font-medium">{t('platform.email')}</th>
<th className="px-6 py-4 font-medium text-right">{t('common.actions')}</th>
</tr>
</thead>
<tbody className="divide-y divide-gray-100 dark:divide-gray-700">
{filteredUsers.map((u) => (
<tr key={u.id} className="hover:bg-gray-50 dark:hover:bg-gray-700/50 transition-colors">
<td className="px-6 py-4 font-medium text-gray-900 dark:text-white">
<div className="flex items-center gap-3">
<div className="w-8 h-8 rounded-full bg-indigo-100 dark:bg-indigo-900 flex items-center justify-center text-indigo-600 dark:text-indigo-300 font-semibold text-sm">
{(u.name || u.username).charAt(0).toUpperCase()}
</div>
<div>
<div>{u.name || u.username}</div>
{u.business_name && (
<div className="text-xs text-gray-500 dark:text-gray-400">{u.business_name}</div>
)}
</div>
</div>
</td>
<td className="px-6 py-4">
<span className={`inline-flex items-center px-2.5 py-0.5 rounded-full text-xs font-medium capitalize ${getRoleBadgeColor(u.role || 'customer')}`}>
{(u.role || 'customer').replace(/_/g, ' ')}
</span>
</td>
<td className="px-6 py-4 text-gray-500 dark:text-gray-400 font-mono text-xs">
{u.email}
</td>
<td className="px-6 py-4 text-right">
<button
onClick={() => handleMasquerade(u)}
className="text-indigo-600 hover:text-indigo-500 dark:text-indigo-400 dark:hover:text-indigo-300 font-medium text-xs inline-flex items-center gap-1 px-3 py-1 border border-indigo-200 dark:border-indigo-800 rounded-lg hover:bg-indigo-50 dark:hover:bg-indigo-900/30 transition-colors"
disabled={u.is_superuser}
title={u.is_superuser ? 'Cannot masquerade as superuser' : `Masquerade as ${u.name || u.username}`}
>
<Eye size={14} /> {t('platform.masquerade')}
</button>
</td>
</tr>
))}
</tbody>
</table>
{filteredUsers.length === 0 && (
<div className="p-8 text-center text-gray-500 dark:text-gray-400">
{t('platform.noUsersFound')}
</div>
)}
</div>
</div>
);
};
export default PlatformUsers;