feat: master-user-role
This commit is contained in:
parent
2d82441c15
commit
f59cf236de
|
|
@ -0,0 +1,10 @@
|
||||||
|
import FormMasterUserRole from '@/components/form/form-master-user-role'
|
||||||
|
import { Card } from '@nextui-org/react'
|
||||||
|
|
||||||
|
export default function CreateMasterUserRolePage() {
|
||||||
|
return (
|
||||||
|
<Card className="h-[96vh] rounded-md my- ml-3 border bg-transparent">
|
||||||
|
<FormMasterUserRole />
|
||||||
|
</Card>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,24 @@
|
||||||
|
"use client"
|
||||||
|
import { AddIcon } from "@/components/icons";
|
||||||
|
import MasterRoleTable from "@/components/table/master-role-table";
|
||||||
|
import { Button, Card } from "@nextui-org/react";
|
||||||
|
import Link from "next/link";
|
||||||
|
|
||||||
|
export default function MasterRolePage() {
|
||||||
|
return (
|
||||||
|
<div className="h-[96vh] overflow-x-hidden overflow-y-scroll gap-0 grid rounded-lg border-2 ml-4">
|
||||||
|
<div className="px-4">
|
||||||
|
<Card className="rounded-md my-5 pl-5 py-2">
|
||||||
|
<Link href="/admin/master-role/create">
|
||||||
|
<Button size="md" color="primary" className="w-min">
|
||||||
|
<AddIcon />New Role
|
||||||
|
</Button>
|
||||||
|
</Link>
|
||||||
|
</Card>
|
||||||
|
<Card className="rounded-md my-5">
|
||||||
|
<MasterRoleTable />
|
||||||
|
</Card>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,164 @@
|
||||||
|
'use client'
|
||||||
|
import { error } from '@/config/swal';
|
||||||
|
import { createMasterUser } from '@/service/master-user';
|
||||||
|
import { createMasterUserRole } from '@/service/master-user-role';
|
||||||
|
import { MasterUser } from '@/types/globals';
|
||||||
|
import { zodResolver } from '@hookform/resolvers/zod';
|
||||||
|
import { Button, Card, Input, Radio, RadioGroup, Select, SelectItem, Selection, Textarea } from '@nextui-org/react'
|
||||||
|
import Link from 'next/link';
|
||||||
|
import { useRouter } from 'next/navigation';
|
||||||
|
import React, { useState } from 'react'
|
||||||
|
import { useForm } from 'react-hook-form';
|
||||||
|
import Swal from 'sweetalert2';
|
||||||
|
import withReactContent from 'sweetalert2-react-content';
|
||||||
|
import { z } from 'zod';
|
||||||
|
|
||||||
|
const masterUserSchema = z.object({
|
||||||
|
code: z.string().min(1, { message: "Required" }),
|
||||||
|
description: z.string().min(1, { message: "Required" }),
|
||||||
|
levelNumber: z.string().min(1, { message: "Required" }),
|
||||||
|
name: z.string().min(1, { message: "Required" }),
|
||||||
|
});
|
||||||
|
|
||||||
|
export default function FormMasterUserRole() {
|
||||||
|
const router = useRouter();
|
||||||
|
const MySwal = withReactContent(Swal);
|
||||||
|
const [code, setCode] = useState<string>();
|
||||||
|
const [description, setDescription] = useState<string>();
|
||||||
|
const [levelNumber, setLevelNumber] = useState<any>(1);
|
||||||
|
const [name, setName] = useState<string>();
|
||||||
|
|
||||||
|
const formOptions = { resolver: zodResolver(masterUserSchema) };
|
||||||
|
type MicroIssueSchema = z.infer<typeof masterUserSchema>;
|
||||||
|
const {
|
||||||
|
register,
|
||||||
|
control,
|
||||||
|
handleSubmit,
|
||||||
|
setValue,
|
||||||
|
formState: { errors },
|
||||||
|
} = useForm<MicroIssueSchema>(formOptions);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
async function save(data: any) {
|
||||||
|
const formData = {
|
||||||
|
code: code,
|
||||||
|
description: description,
|
||||||
|
level_number: levelNumber,
|
||||||
|
name: name,
|
||||||
|
};
|
||||||
|
|
||||||
|
console.log("Form MasterUser:", formData);
|
||||||
|
const response = await createMasterUserRole(formData);
|
||||||
|
|
||||||
|
if (response?.error) {
|
||||||
|
error(response.message);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
successSubmit("/admin/master-role");
|
||||||
|
};
|
||||||
|
|
||||||
|
function successSubmit(redirect: any) {
|
||||||
|
MySwal.fire({
|
||||||
|
title: "Sukses",
|
||||||
|
icon: "success",
|
||||||
|
confirmButtonColor: "#3085d6",
|
||||||
|
confirmButtonText: "OK",
|
||||||
|
}).then((result) => {
|
||||||
|
if (result.isConfirmed) {
|
||||||
|
router.push(redirect);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
async function onSubmit(data: any) {
|
||||||
|
MySwal.fire({
|
||||||
|
title: "Simpan Data",
|
||||||
|
text: "",
|
||||||
|
icon: "warning",
|
||||||
|
showCancelButton: true,
|
||||||
|
cancelButtonColor: "#d33",
|
||||||
|
confirmButtonColor: "#3085d6",
|
||||||
|
confirmButtonText: "Simpan",
|
||||||
|
}).then((result) => {
|
||||||
|
if (result.isConfirmed) {
|
||||||
|
save(data);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div className='mx-5 my-5 overflow-y-auto'>
|
||||||
|
<form method="POST" onSubmit={handleSubmit(onSubmit)}>
|
||||||
|
<Card className='rounded-md p-5 space-y-5'>
|
||||||
|
<div>
|
||||||
|
<Input
|
||||||
|
type="text"
|
||||||
|
{...register("code")}
|
||||||
|
label="Code"
|
||||||
|
variant='bordered'
|
||||||
|
placeholder="Enter Text"
|
||||||
|
labelPlacement='outside'
|
||||||
|
value={code}
|
||||||
|
onChange={(e) => setCode(e.target.value)}
|
||||||
|
/>
|
||||||
|
{errors.code?.message}
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<Input
|
||||||
|
type="text"
|
||||||
|
{...register("name")}
|
||||||
|
label="Role"
|
||||||
|
variant='bordered'
|
||||||
|
placeholder="Enter Text"
|
||||||
|
labelPlacement='outside'
|
||||||
|
value={name}
|
||||||
|
onChange={(e) => setName(e.target.value)}
|
||||||
|
/>
|
||||||
|
{errors.name?.message}
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<Textarea
|
||||||
|
label="Description"
|
||||||
|
{...register("description")}
|
||||||
|
labelPlacement="outside"
|
||||||
|
placeholder="Enter Text"
|
||||||
|
value={description}
|
||||||
|
onValueChange={setDescription}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<Input
|
||||||
|
type="text"
|
||||||
|
{...register("levelNumber")}
|
||||||
|
label="Level Number"
|
||||||
|
variant='bordered'
|
||||||
|
placeholder="Enter Text"
|
||||||
|
labelPlacement='outside'
|
||||||
|
value={levelNumber}
|
||||||
|
/>
|
||||||
|
{errors.code?.message}
|
||||||
|
</div>
|
||||||
|
<div className='flex justify-end gap-3'>
|
||||||
|
<Link href={`/admin/master-role`}>
|
||||||
|
<Button
|
||||||
|
color='danger'
|
||||||
|
variant="ghost"
|
||||||
|
>
|
||||||
|
Cancel
|
||||||
|
</Button>
|
||||||
|
</Link>
|
||||||
|
<Button
|
||||||
|
type="submit"
|
||||||
|
color='primary'
|
||||||
|
variant="solid"
|
||||||
|
>
|
||||||
|
Save
|
||||||
|
</Button>
|
||||||
|
</div>
|
||||||
|
</Card>
|
||||||
|
</form>
|
||||||
|
</div >
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
@ -182,7 +182,7 @@ const sideBarDummyData = [
|
||||||
name: "Master User Role",
|
name: "Master User Role",
|
||||||
moduleId: 656,
|
moduleId: 656,
|
||||||
moduleName: "Form Validation",
|
moduleName: "Form Validation",
|
||||||
modulePathUrl: "/admin/master-user-role",
|
modulePathUrl: "/admin/master-role",
|
||||||
parentId: -1,
|
parentId: -1,
|
||||||
icon: <FormValidationIcon />,
|
icon: <FormValidationIcon />,
|
||||||
position: 1,
|
position: 1,
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,291 @@
|
||||||
|
"use client";
|
||||||
|
import {
|
||||||
|
CreateIconIon,
|
||||||
|
DeleteIcon,
|
||||||
|
DotsYIcon,
|
||||||
|
EyeIconMdi
|
||||||
|
} from "@/components/icons";
|
||||||
|
import { error } from "@/config/swal";
|
||||||
|
import { deleteMasterUser } from "@/service/master-user";
|
||||||
|
import { deleteMasterUserRole, listUserRole } from "@/service/master-user-role";
|
||||||
|
import { MasterUser, MasterUserRole } from "@/types/globals";
|
||||||
|
import { Button } from "@nextui-org/button";
|
||||||
|
import {
|
||||||
|
Chip,
|
||||||
|
ChipProps,
|
||||||
|
Dropdown,
|
||||||
|
DropdownItem,
|
||||||
|
DropdownMenu,
|
||||||
|
DropdownTrigger,
|
||||||
|
Spinner,
|
||||||
|
Table,
|
||||||
|
TableBody,
|
||||||
|
TableCell,
|
||||||
|
TableColumn,
|
||||||
|
TableHeader,
|
||||||
|
TableRow
|
||||||
|
} from "@nextui-org/react";
|
||||||
|
import Link from "next/link";
|
||||||
|
import { Key, useCallback, useEffect, useState } from "react";
|
||||||
|
import Swal from "sweetalert2";
|
||||||
|
import withReactContent from "sweetalert2-react-content";
|
||||||
|
|
||||||
|
type UserObject = {
|
||||||
|
id: number;
|
||||||
|
user: string;
|
||||||
|
status: string;
|
||||||
|
projectName: string;
|
||||||
|
avatar: string;
|
||||||
|
};
|
||||||
|
|
||||||
|
const statusColorMap = {
|
||||||
|
active: "success",
|
||||||
|
paused: "danger",
|
||||||
|
vacation: "warning",
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
export default function MasterRoleTable() {
|
||||||
|
const MySwal = withReactContent(Swal);
|
||||||
|
const [role, setRole] = useState<MasterUserRole[]>([]);
|
||||||
|
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
initState();
|
||||||
|
}, []);
|
||||||
|
|
||||||
|
async function initState() {
|
||||||
|
const res = await listUserRole();
|
||||||
|
setRole(res.data?.data);
|
||||||
|
|
||||||
|
console.log("List Users", res.data.data);
|
||||||
|
}
|
||||||
|
|
||||||
|
type TableRow = (typeof usersTable)[0];
|
||||||
|
|
||||||
|
const columns = [
|
||||||
|
|
||||||
|
{ name: "No", uid: "id" },
|
||||||
|
{ name: "Role", uid: "name" },
|
||||||
|
{ name: "Description", uid: "description" },
|
||||||
|
{ name: "Code", uid: "code" },
|
||||||
|
{ name: "Level Number", uid: "level_number" },
|
||||||
|
// { name: "Status Id", uid: "status_id" },
|
||||||
|
{ name: "Aksi", uid: "actions" },
|
||||||
|
];
|
||||||
|
|
||||||
|
|
||||||
|
async function doDelete(id: any) {
|
||||||
|
// loading();
|
||||||
|
const resDelete = await deleteMasterUserRole(id);
|
||||||
|
|
||||||
|
if (resDelete?.error) {
|
||||||
|
error(resDelete.message);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
close();
|
||||||
|
successSubmit();
|
||||||
|
}
|
||||||
|
|
||||||
|
const handleDelete = (id: any) => {
|
||||||
|
MySwal.fire({
|
||||||
|
title: "Hapus Data",
|
||||||
|
icon: "warning",
|
||||||
|
showCancelButton: true,
|
||||||
|
cancelButtonColor: "#3085d6",
|
||||||
|
confirmButtonColor: "#d33",
|
||||||
|
confirmButtonText: "Hapus",
|
||||||
|
}).then((result) => {
|
||||||
|
if (result.isConfirmed) {
|
||||||
|
doDelete(id);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
function successSubmit() {
|
||||||
|
MySwal.fire({
|
||||||
|
title: "Sukses",
|
||||||
|
icon: "success",
|
||||||
|
confirmButtonColor: "#3085d6",
|
||||||
|
confirmButtonText: "OK",
|
||||||
|
}).then((result) => {
|
||||||
|
if (result.isConfirmed) {
|
||||||
|
initState()
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
// const statusOptions = [
|
||||||
|
// { name: "Active", uid: "active" },
|
||||||
|
// { name: "Paused", uid: "paused" },
|
||||||
|
// { name: "Vacation", uid: "vacation" },
|
||||||
|
// ];
|
||||||
|
|
||||||
|
const usersTable = [
|
||||||
|
{
|
||||||
|
id: 1,
|
||||||
|
user: "Olivia Rhya",
|
||||||
|
status: "active",
|
||||||
|
projectName: "Xtreme admin",
|
||||||
|
avatar: "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSa8Luglga9J2R3Bxt_PsWZISUHQWODD6_ZTAJ5mIQgxYCAE-YbkY81faTqp-hSA_jVPTs&usqp=CAU",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 2,
|
||||||
|
user: "Barbara Steele",
|
||||||
|
status: "cancel",
|
||||||
|
projectName: "Adminpro admin",
|
||||||
|
avatar: "https://cdn.icon-icons.com/icons2/2859/PNG/512/avatar_face_man_boy_male_profile_smiley_happy_people_icon_181661.png",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 3,
|
||||||
|
user: "Leonardo Gordon",
|
||||||
|
status: "pending",
|
||||||
|
projectName: "Monster admin",
|
||||||
|
avatar: "https://cdn.icon-icons.com/icons2/2859/PNG/512/avatar_face_man_boy_male_profile_smiley_happy_people_icon_181657.png",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 4,
|
||||||
|
user: "Evelyn Pope",
|
||||||
|
status: "cancel",
|
||||||
|
projectName: "Materialpro admin",
|
||||||
|
avatar: "https://cdn.icon-icons.com/icons2/3708/PNG/512/man_person_people_avatar_icon_230017.png",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 5,
|
||||||
|
user: "Tommy Garza",
|
||||||
|
status: "cancel",
|
||||||
|
projectName: "Elegant admin",
|
||||||
|
avatar: "https://cdn.icon-icons.com/icons2/1736/PNG/512/4043275-avatar-man-person-punk_113271.png",
|
||||||
|
},
|
||||||
|
|
||||||
|
|
||||||
|
];
|
||||||
|
|
||||||
|
const renderCell = useCallback(
|
||||||
|
(role: MasterUserRole, columnKey: Key) => {
|
||||||
|
const cellValue = role[columnKey as keyof MasterUserRole];
|
||||||
|
const statusColorMap: Record<string, ChipProps["color"]> = {
|
||||||
|
active: "primary",
|
||||||
|
cancel: "danger",
|
||||||
|
pending: "success",
|
||||||
|
};
|
||||||
|
|
||||||
|
switch (columnKey) {
|
||||||
|
case "id":
|
||||||
|
return (
|
||||||
|
<div>{role.id}</div>
|
||||||
|
)
|
||||||
|
|
||||||
|
case "status":
|
||||||
|
return (
|
||||||
|
<Chip
|
||||||
|
className="capitalize "
|
||||||
|
// color={statusColorMap[role.status]}
|
||||||
|
size="lg"
|
||||||
|
variant="flat"
|
||||||
|
>
|
||||||
|
<div className="flex flex-row items-center gap-2 justify-center">
|
||||||
|
{cellValue}
|
||||||
|
</div>
|
||||||
|
</Chip>
|
||||||
|
);
|
||||||
|
|
||||||
|
case "actions":
|
||||||
|
return (
|
||||||
|
<div className="relative flex justify-star items-center gap-2">
|
||||||
|
<Dropdown className="lg:min-w-[150px] bg-black text-white shadow border ">
|
||||||
|
<DropdownTrigger>
|
||||||
|
<Button isIconOnly size="lg" variant="light">
|
||||||
|
<DotsYIcon className="text-default-300" />
|
||||||
|
</Button>
|
||||||
|
</DropdownTrigger>
|
||||||
|
<DropdownMenu>
|
||||||
|
<DropdownItem
|
||||||
|
|
||||||
|
>
|
||||||
|
|
||||||
|
<Link
|
||||||
|
href={`/admin/article/detail/${role.id}`}
|
||||||
|
>
|
||||||
|
<EyeIconMdi className="inline mr-2 mb-1" />
|
||||||
|
Detail
|
||||||
|
</Link>
|
||||||
|
|
||||||
|
</DropdownItem>
|
||||||
|
<DropdownItem
|
||||||
|
|
||||||
|
>
|
||||||
|
|
||||||
|
<Link
|
||||||
|
href={`/admin/article/edit/${role.id}`}
|
||||||
|
|
||||||
|
>
|
||||||
|
<CreateIconIon className="inline mr-2 mb-1" />
|
||||||
|
Edit
|
||||||
|
</Link>
|
||||||
|
|
||||||
|
</DropdownItem>
|
||||||
|
<DropdownItem
|
||||||
|
onClick={() => handleDelete(role.id)}
|
||||||
|
>
|
||||||
|
|
||||||
|
<DeleteIcon
|
||||||
|
color="red"
|
||||||
|
width={20}
|
||||||
|
height={16}
|
||||||
|
className="inline mr-2 mb-1"
|
||||||
|
/>
|
||||||
|
Delete
|
||||||
|
|
||||||
|
</DropdownItem>
|
||||||
|
|
||||||
|
</DropdownMenu>
|
||||||
|
</Dropdown>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
|
||||||
|
default:
|
||||||
|
return cellValue;
|
||||||
|
}
|
||||||
|
}, []);
|
||||||
|
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
|
||||||
|
<div className="mx-5 my-5">
|
||||||
|
<div className="flex flex-col items-center rounded-2xl">
|
||||||
|
<Table
|
||||||
|
// selectionMode="multiple"
|
||||||
|
aria-label="micro issue table"
|
||||||
|
className="rounded-2xl"
|
||||||
|
classNames={{
|
||||||
|
th: "bg-white dark:bg-black text-black dark:text-white border-b-1 text-md",
|
||||||
|
base: "bg-white dark:bg-black border",
|
||||||
|
wrapper: "min-h-[50px] bg-transpararent text-black dark:text-white ",
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
<TableHeader columns={columns}>
|
||||||
|
{(column) => (
|
||||||
|
<TableColumn key={column.uid}>{column.name}</TableColumn>
|
||||||
|
)}
|
||||||
|
</TableHeader>
|
||||||
|
<TableBody
|
||||||
|
items={role}
|
||||||
|
emptyContent={"No data to display."}
|
||||||
|
loadingContent={<Spinner label="Loading..." />}
|
||||||
|
>
|
||||||
|
{(item) => (
|
||||||
|
<TableRow key={item.id}>
|
||||||
|
{(columnKey) => (
|
||||||
|
<TableCell>{renderCell(item, columnKey)}</TableCell>
|
||||||
|
)}
|
||||||
|
</TableRow>
|
||||||
|
)}
|
||||||
|
</TableBody>
|
||||||
|
</Table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,20 @@
|
||||||
|
import { httpDeleteInterceptor, httpGet, httpPost } from "./http-config/axios-base-service";
|
||||||
|
|
||||||
|
export async function listUserRole() {
|
||||||
|
const headers = {
|
||||||
|
"content-type": "application/json",
|
||||||
|
};
|
||||||
|
return await httpGet(`/user-roles`, headers);
|
||||||
|
}
|
||||||
|
|
||||||
|
export async function createMasterUserRole(data: any) {
|
||||||
|
const headers = {
|
||||||
|
"content-type": "application/json",
|
||||||
|
};
|
||||||
|
const pathUrl = `/user-roles`;
|
||||||
|
return await httpPost(pathUrl, headers, data);
|
||||||
|
}
|
||||||
|
|
||||||
|
export async function deleteMasterUserRole(id: string) {
|
||||||
|
return await httpDeleteInterceptor(`/user-roles/${id}`);
|
||||||
|
}
|
||||||
|
|
@ -42,3 +42,15 @@ export type MasterUser = {
|
||||||
workType: string
|
workType: string
|
||||||
};
|
};
|
||||||
|
|
||||||
|
export type MasterUserRole = {
|
||||||
|
id: number,
|
||||||
|
name: string,
|
||||||
|
description: string,
|
||||||
|
code: string,
|
||||||
|
level_number: number,
|
||||||
|
status_id: number,
|
||||||
|
created_by_id: string | number,
|
||||||
|
is_active: true,
|
||||||
|
created_at: string,
|
||||||
|
updated_at: string
|
||||||
|
};
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue