mirror of
https://github.com/Sevichecc/m-oauth.git
synced 2025-04-30 06:59:29 +08:00
43 lines
1.1 KiB
TypeScript
43 lines
1.1 KiB
TypeScript
"use client";
|
|
|
|
import { MethodType } from "./InputForm";
|
|
import { Checkbox } from "@/components/ui/checkbox";
|
|
|
|
interface ScopeCheckboxProps {
|
|
scope: string;
|
|
method: MethodType;
|
|
field: any;
|
|
}
|
|
|
|
const ScopeItem: React.FC<ScopeCheckboxProps> = ({ scope, method, field }) => {
|
|
|
|
|
|
return (
|
|
<div className={`items-top flex space-x-2 hover:cursor-pointer`}>
|
|
<Checkbox
|
|
id={scope}
|
|
checked={field.value?.includes(scope)}
|
|
onCheckedChange={(checked) => {
|
|
return checked
|
|
? field.onChange([...field.value, scope])
|
|
: field.onChange(
|
|
field.value?.filter((value: string) => value !== scope)
|
|
);
|
|
}}
|
|
/>
|
|
<div className="grid gap-1.5 leading-none">
|
|
<label
|
|
htmlFor={scope}
|
|
className="text-sm font-medium leading-none hover:cursor-pointer peer-disabled:cursor-not-allowed peer-disabled:opacity-70"
|
|
>
|
|
{method == "admin" && (
|
|
<span className="text-slate-500">{scope.split(":")[1]} : </span>
|
|
)}
|
|
{scope.split(":").slice(-1)}
|
|
</label>
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default ScopeItem;
|