2026-01-13 13:30:51 +08:00
|
|
|
|
import AuthenticatedLayout from '@/Layouts/AuthenticatedLayout';
|
|
|
|
|
|
import { Head, Link, useForm } from '@inertiajs/react';
|
|
|
|
|
|
import { Shield, ArrowLeft, Check, AlertCircle } from 'lucide-react';
|
|
|
|
|
|
import { Button } from '@/Components/ui/button';
|
|
|
|
|
|
import { Input } from '@/Components/ui/input';
|
|
|
|
|
|
import { Label } from '@/Components/ui/label';
|
|
|
|
|
|
import { Checkbox } from '@/Components/ui/checkbox';
|
|
|
|
|
|
import { FormEvent } from 'react';
|
|
|
|
|
|
|
|
|
|
|
|
interface Permission {
|
|
|
|
|
|
id: number;
|
|
|
|
|
|
name: string;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
interface GroupedPermission {
|
|
|
|
|
|
key: string;
|
|
|
|
|
|
name: string;
|
|
|
|
|
|
permissions: Permission[];
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
interface Role {
|
|
|
|
|
|
id: number;
|
|
|
|
|
|
name: string;
|
2026-01-13 17:00:58 +08:00
|
|
|
|
display_name: string;
|
2026-01-13 13:30:51 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
interface Props {
|
|
|
|
|
|
role: Role;
|
|
|
|
|
|
groupedPermissions: GroupedPermission[];
|
|
|
|
|
|
currentPermissions: string[];
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
export default function RoleEdit({ role, groupedPermissions, currentPermissions }: Props) {
|
|
|
|
|
|
const { data, setData, put, processing, errors } = useForm({
|
|
|
|
|
|
name: role.name,
|
2026-01-13 17:00:58 +08:00
|
|
|
|
display_name: role.display_name || '',
|
2026-01-13 13:30:51 +08:00
|
|
|
|
permissions: currentPermissions,
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
const handleSubmit = (e: FormEvent) => {
|
|
|
|
|
|
e.preventDefault();
|
|
|
|
|
|
put(route('roles.update', role.id));
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
const togglePermission = (name: string) => {
|
|
|
|
|
|
if (data.permissions.includes(name)) {
|
|
|
|
|
|
setData('permissions', data.permissions.filter(p => p !== name));
|
|
|
|
|
|
} else {
|
|
|
|
|
|
setData('permissions', [...data.permissions, name]);
|
|
|
|
|
|
}
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
const toggleGroup = (groupPermissions: Permission[]) => {
|
|
|
|
|
|
const groupNames = groupPermissions.map(p => p.name);
|
|
|
|
|
|
const allSelected = groupNames.every(name => data.permissions.includes(name));
|
|
|
|
|
|
|
|
|
|
|
|
if (allSelected) {
|
|
|
|
|
|
// Unselect all
|
|
|
|
|
|
setData('permissions', data.permissions.filter(p => !groupNames.includes(p)));
|
|
|
|
|
|
} else {
|
|
|
|
|
|
// Select all
|
|
|
|
|
|
const newPermissions = [...data.permissions];
|
|
|
|
|
|
groupNames.forEach(name => {
|
|
|
|
|
|
if (!newPermissions.includes(name)) newPermissions.push(name);
|
|
|
|
|
|
});
|
|
|
|
|
|
setData('permissions', newPermissions);
|
|
|
|
|
|
}
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
const translateAction = (permissionName: string) => {
|
|
|
|
|
|
const parts = permissionName.split('.');
|
|
|
|
|
|
if (parts.length < 2) return permissionName;
|
|
|
|
|
|
const action = parts[1];
|
|
|
|
|
|
|
|
|
|
|
|
const map: Record<string, string> = {
|
|
|
|
|
|
'view': '檢視',
|
|
|
|
|
|
'create': '新增',
|
|
|
|
|
|
'edit': '編輯',
|
|
|
|
|
|
'delete': '刪除',
|
|
|
|
|
|
'publish': '發布',
|
2026-01-13 17:00:58 +08:00
|
|
|
|
'adjust': '新增 / 調整',
|
2026-01-13 13:30:51 +08:00
|
|
|
|
'transfer': '調撥',
|
2026-01-13 17:00:58 +08:00
|
|
|
|
'safety_stock': '安全庫存設定',
|
2026-01-13 13:30:51 +08:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
return map[action] || action;
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
|
<AuthenticatedLayout
|
|
|
|
|
|
breadcrumbs={[
|
|
|
|
|
|
{ label: '系統管理', href: '#' },
|
|
|
|
|
|
{ label: '角色與權限', href: route('roles.index') },
|
|
|
|
|
|
{ label: '編輯角色', href: route('roles.edit', role.id), isPage: true },
|
|
|
|
|
|
]}
|
|
|
|
|
|
>
|
|
|
|
|
|
<Head title={`編輯角色 - ${role.name}`} />
|
|
|
|
|
|
|
2026-01-13 17:00:58 +08:00
|
|
|
|
<div className="container mx-auto p-6 max-w-7xl">
|
|
|
|
|
|
<form onSubmit={handleSubmit} className="space-y-6">
|
|
|
|
|
|
{/* Header Area */}
|
|
|
|
|
|
<div>
|
|
|
|
|
|
<Link href={route('roles.index')}>
|
|
|
|
|
|
<Button
|
|
|
|
|
|
variant="outline"
|
|
|
|
|
|
type="button"
|
|
|
|
|
|
className="gap-2 button-outlined-primary mb-2"
|
|
|
|
|
|
>
|
|
|
|
|
|
<ArrowLeft className="h-4 w-4" />
|
|
|
|
|
|
返回角色與權限
|
|
|
|
|
|
</Button>
|
|
|
|
|
|
</Link>
|
|
|
|
|
|
|
|
|
|
|
|
<div className="flex items-center justify-between">
|
|
|
|
|
|
<div>
|
|
|
|
|
|
<h1 className="text-2xl font-bold text-grey-0 flex items-center gap-2">
|
2026-01-16 14:36:24 +08:00
|
|
|
|
<Shield className="h-6 w-6 text-primary-main" />
|
2026-01-13 17:00:58 +08:00
|
|
|
|
編輯角色
|
|
|
|
|
|
</h1>
|
|
|
|
|
|
<p className="text-gray-500 mt-1">
|
|
|
|
|
|
修改角色資料與權限設定
|
|
|
|
|
|
</p>
|
|
|
|
|
|
</div>
|
2026-01-13 13:30:51 +08:00
|
|
|
|
<Button
|
|
|
|
|
|
type="submit"
|
2026-01-13 17:00:58 +08:00
|
|
|
|
className="button-filled-primary"
|
2026-01-13 13:30:51 +08:00
|
|
|
|
disabled={processing}
|
|
|
|
|
|
>
|
|
|
|
|
|
<Check className="h-4 w-4 mr-2" />
|
|
|
|
|
|
儲存變更
|
|
|
|
|
|
</Button>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
{/* Role Name */}
|
|
|
|
|
|
<div className="bg-white p-6 rounded-xl border border-gray-200 shadow-sm">
|
2026-01-13 17:00:58 +08:00
|
|
|
|
<div className="grid grid-cols-1 md:grid-cols-2 gap-6">
|
|
|
|
|
|
<div className="space-y-2">
|
|
|
|
|
|
<Label htmlFor="display_name">顯示名稱 (中文/自定義)</Label>
|
|
|
|
|
|
<Input
|
|
|
|
|
|
id="display_name"
|
|
|
|
|
|
placeholder="例如:行政管理員"
|
|
|
|
|
|
value={data.display_name}
|
|
|
|
|
|
onChange={e => setData('display_name', e.target.value)}
|
|
|
|
|
|
/>
|
|
|
|
|
|
{errors.display_name && (
|
|
|
|
|
|
<p className="text-sm text-red-500">{errors.display_name}</p>
|
|
|
|
|
|
)}
|
|
|
|
|
|
<p className="text-xs text-gray-500">
|
|
|
|
|
|
這是在介面上看到的名稱。
|
|
|
|
|
|
</p>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
2026-01-13 13:30:51 +08:00
|
|
|
|
<div className="space-y-2">
|
2026-01-13 17:00:58 +08:00
|
|
|
|
<Label htmlFor="name">英文代號 (系統識別用)</Label>
|
2026-01-13 13:30:51 +08:00
|
|
|
|
<Input
|
|
|
|
|
|
id="name"
|
|
|
|
|
|
value={data.name}
|
|
|
|
|
|
onChange={e => setData('name', e.target.value)}
|
|
|
|
|
|
className="font-mono bg-gray-50"
|
2026-01-13 17:00:58 +08:00
|
|
|
|
disabled={role.name === 'super-admin'}
|
2026-01-13 13:30:51 +08:00
|
|
|
|
/>
|
|
|
|
|
|
{errors.name && (
|
|
|
|
|
|
<p className="text-sm text-red-500">{errors.name}</p>
|
|
|
|
|
|
)}
|
|
|
|
|
|
{role.name === 'super-admin' ? (
|
|
|
|
|
|
<div className="flex items-center gap-2 text-amber-600 text-sm mt-2">
|
|
|
|
|
|
<AlertCircle className="h-4 w-4" />
|
|
|
|
|
|
<span>超級管理員角色名稱不可修改</span>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
) : (
|
|
|
|
|
|
<p className="text-xs text-gray-500">
|
|
|
|
|
|
請使用英文字母與連字號,例如: <code>warehouse-staff</code>
|
|
|
|
|
|
</p>
|
|
|
|
|
|
)}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
{/* Permissions Matrix */}
|
|
|
|
|
|
<div className="space-y-4">
|
|
|
|
|
|
<h2 className="text-lg font-bold text-grey-0">權限設定</h2>
|
|
|
|
|
|
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
|
|
|
|
|
|
{groupedPermissions.map((group) => {
|
|
|
|
|
|
const allGroupSelected = group.permissions.every(p => data.permissions.includes(p.name));
|
|
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
|
<div key={group.key} className="bg-white rounded-xl border border-gray-200 shadow-sm overflow-hidden flex flex-col">
|
|
|
|
|
|
<div className="bg-gray-50 px-4 py-3 border-b border-gray-200 flex items-center justify-between">
|
|
|
|
|
|
<span className="font-medium text-gray-700">{group.name}</span>
|
|
|
|
|
|
<Button
|
|
|
|
|
|
type="button"
|
|
|
|
|
|
variant="ghost"
|
|
|
|
|
|
size="sm"
|
|
|
|
|
|
onClick={() => toggleGroup(group.permissions)}
|
2026-01-16 14:36:24 +08:00
|
|
|
|
className="text-xs h-7 text-primary-main hover:text-primary-main hover:bg-primary-main/10"
|
2026-01-13 13:30:51 +08:00
|
|
|
|
>
|
|
|
|
|
|
{allGroupSelected ? '取消全選' : '全選'}
|
|
|
|
|
|
</Button>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div className="p-4 flex-1">
|
|
|
|
|
|
<div className="space-y-3">
|
|
|
|
|
|
{group.permissions.map((permission) => (
|
|
|
|
|
|
<div key={permission.id} className="flex items-start space-x-3">
|
|
|
|
|
|
<Checkbox
|
|
|
|
|
|
id={permission.name}
|
|
|
|
|
|
checked={data.permissions.includes(permission.name)}
|
|
|
|
|
|
onCheckedChange={() => togglePermission(permission.name)}
|
|
|
|
|
|
/>
|
|
|
|
|
|
<div className="grid gap-1.5 leading-none">
|
|
|
|
|
|
<label
|
|
|
|
|
|
htmlFor={permission.name}
|
|
|
|
|
|
className="text-sm font-medium leading-none peer-disabled:cursor-not-allowed peer-disabled:opacity-70 cursor-pointer"
|
|
|
|
|
|
>
|
|
|
|
|
|
{translateAction(permission.name)}
|
|
|
|
|
|
</label>
|
|
|
|
|
|
<p className="text-[10px] text-gray-400 font-mono">
|
|
|
|
|
|
{permission.name}
|
|
|
|
|
|
</p>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
))}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
);
|
|
|
|
|
|
})}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</form>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</AuthenticatedLayout>
|
|
|
|
|
|
);
|
|
|
|
|
|
}
|