feat: add link to organization details in data-table
This commit is contained in:
parent
0f8267a984
commit
0420b37cc9
@ -1,4 +1,307 @@
|
|||||||
|
|
||||||
|
import { useState } from "react";
|
||||||
|
import Image from "next/image";
|
||||||
|
import { useSession } from "next-auth/react";
|
||||||
|
import { useQuery, useMutation, useQueryClient } from "@tanstack/react-query";
|
||||||
|
import { ColumnDef } from "@tanstack/react-table";
|
||||||
|
import axios from "axios";
|
||||||
|
import { DropdownMenu } from "radix-ui";
|
||||||
|
import FloatingLabelInput from "#/components/floatingLabelInput";
|
||||||
|
import { Modal } from "#/components/modal";
|
||||||
|
import Table from "#/components/table/table";
|
||||||
|
import Form from "#/components/form/form";
|
||||||
|
import { icons } from "#/assets/icons";
|
||||||
|
import { adminSchema, companySchema } from "#/schema";
|
||||||
|
import { Admin, Company } from "#/types";
|
||||||
|
import Link from "next/link";
|
||||||
|
|
||||||
|
export default function Organizations() {
|
||||||
|
const { data: session, status } = useSession();
|
||||||
|
const [open, setOpen] = useState(false);
|
||||||
|
const [openModal, setOpenModal] = useState(false);
|
||||||
|
const [openDeleteModal, setOpenDeleteModal] = useState(false);
|
||||||
|
const [openEditModal, setOpenEditModal] = useState(false);
|
||||||
|
const [selectedAdminId, setSelectedAdminId] = useState<string | null>(null);
|
||||||
|
|
||||||
|
const queryClient = useQueryClient();
|
||||||
|
|
||||||
|
const {
|
||||||
|
data: companies,
|
||||||
|
refetch,
|
||||||
|
isLoading,
|
||||||
|
} = useQuery({
|
||||||
|
enabled: status === "authenticated",
|
||||||
|
queryKey: ["companies"],
|
||||||
|
queryFn: async () => {
|
||||||
|
try {
|
||||||
|
const response = await axios.get(
|
||||||
|
"https://private-docs-api.intside.co/companies",
|
||||||
|
{
|
||||||
|
headers: {
|
||||||
|
Authorization: `Bearer ${session?.user.access_token}`,
|
||||||
|
},
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
|
if (response.data) {
|
||||||
|
return response.data.data as Company[];
|
||||||
|
}
|
||||||
|
} catch (error) {
|
||||||
|
console.error(error);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
const {
|
||||||
|
data: users,
|
||||||
|
} = useQuery({
|
||||||
|
enabled: status === "authenticated",
|
||||||
|
queryKey: ["organizations"],
|
||||||
|
queryFn: async () => {
|
||||||
|
try {
|
||||||
|
const response = await axios.get(
|
||||||
|
"https://private-docs-api.intside.co/users",
|
||||||
|
{
|
||||||
|
headers: { Authorization: `Bearer ${session?.user.access_token}` },
|
||||||
|
}
|
||||||
|
);
|
||||||
|
return response.data.data.map((user: Admin) => ({
|
||||||
|
id: user.id,
|
||||||
|
name: `${user.first_name} ${user.last_name}`,
|
||||||
|
}));
|
||||||
|
} catch (error) {
|
||||||
|
console.error(error);
|
||||||
|
return [];
|
||||||
|
}
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
const createMutation = useMutation({
|
||||||
|
mutationFn: async (data: {
|
||||||
|
name: string;
|
||||||
|
description: string;
|
||||||
|
status: string;
|
||||||
|
is_premium: string;
|
||||||
|
owner: string;
|
||||||
|
}) => {
|
||||||
|
try {
|
||||||
|
const response = await axios.post(
|
||||||
|
"https://private-docs-api.intside.co/companies/",
|
||||||
|
data,
|
||||||
|
{ headers: { Authorization: `Bearer ${session?.user.access_token}` } }
|
||||||
|
);
|
||||||
|
|
||||||
|
if (response.status === 200 || response.status === 201) {
|
||||||
|
console.log("ajout réussie !");
|
||||||
|
setOpenModal(false);
|
||||||
|
}
|
||||||
|
} catch (error) {
|
||||||
|
console.error("Erreur lors de la création", error);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
onSuccess: () => {
|
||||||
|
queryClient.invalidateQueries({ queryKey: ["organizations"] });
|
||||||
|
refetch();
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
const updateMutation = useMutation({
|
||||||
|
mutationFn: async (data: {
|
||||||
|
id: string;
|
||||||
|
last_name: string;
|
||||||
|
first_name: string;
|
||||||
|
email: string;
|
||||||
|
}) => {
|
||||||
|
try {
|
||||||
|
const response = await axios.put(
|
||||||
|
`https://private-docs-api.intside.co/companies/${data.id}/`,
|
||||||
|
data,
|
||||||
|
{ headers: { Authorization: `Bearer ${session?.user.access_token}` } }
|
||||||
|
);
|
||||||
|
|
||||||
|
if (response.status === 200 || response.status === 201) {
|
||||||
|
console.log("modification réussie !");
|
||||||
|
setOpenEditModal(false);
|
||||||
|
}
|
||||||
|
} catch (error) {
|
||||||
|
console.error("Erreur lors de la mise à jour", error);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
onSuccess: () => {
|
||||||
|
queryClient.invalidateQueries({ queryKey: ["organizations"] });
|
||||||
|
refetch();
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
const deleteMutation = useMutation({
|
||||||
|
mutationFn: async (id: string) => {
|
||||||
|
try {
|
||||||
|
const response = await axios.delete(
|
||||||
|
`https://private-docs-api.intside.co/companies/${id}/`,
|
||||||
|
{
|
||||||
|
headers: { Authorization: `Bearer ${session?.user.access_token}` },
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
|
if (response.status === 200 || response.status === 201) {
|
||||||
|
console.log("Suppresion réussie !");
|
||||||
|
setOpenDeleteModal(false);
|
||||||
|
}
|
||||||
|
} catch (error) {
|
||||||
|
console.error("Erreur lors de la suppression", error);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
onSuccess: () => {
|
||||||
|
queryClient.invalidateQueries({ queryKey: ["organizations"] });
|
||||||
|
refetch();
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
const bulkDeleteMutation = useMutation({
|
||||||
|
mutationFn: async (ids: string[]) => {
|
||||||
|
try {
|
||||||
|
const deletePromises = ids.map((id) =>
|
||||||
|
axios.delete(`https://private-docs-api.intside.co/companies/${id}/`, {
|
||||||
|
headers: { Authorization: `Bearer ${session?.user.access_token}` },
|
||||||
|
})
|
||||||
|
);
|
||||||
|
await Promise.all(deletePromises);
|
||||||
|
} catch (error) {
|
||||||
|
console.error("Erreur lors de la suppression groupée", error);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
onSuccess: () => {
|
||||||
|
queryClient.invalidateQueries({ queryKey: ["organizations"] });
|
||||||
|
refetch();
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
const columns: ColumnDef<Company>[] = [
|
||||||
|
{
|
||||||
|
accessorKey: "name",
|
||||||
|
header: "Organisations",
|
||||||
|
cell: ({ row }) => {
|
||||||
|
const company = row.original;
|
||||||
|
return (
|
||||||
|
<Link href={`/admin/organizations/${company.id}`}>
|
||||||
|
<p className="text-blue-600 hover:underline">{company.name}</p>
|
||||||
|
</Link>
|
||||||
|
);
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
accessorKey: "total_users",
|
||||||
|
header: "Utilisateurs",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
header: "Administrateurs",
|
||||||
|
cell: ({ row }) => {
|
||||||
|
const value = String(row.original.owner.first_name) + " " + String(row.original.owner.last_name)
|
||||||
|
const initials = String(row.original.owner.first_name[0]) + String(row.original.owner.last_name[0])
|
||||||
|
return(
|
||||||
|
<div className="flex space-x-2 items-center">
|
||||||
|
<div className="flex items-center justify-center bg-[#DCDCFE] text-[#246BFD] w-10 h-10 rounded-full">
|
||||||
|
{initials}
|
||||||
|
</div>
|
||||||
|
<p>{value}</p>
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
accessorKey: "owner.email",
|
||||||
|
header: "Adresse e-mail"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
accessorKey: "status",
|
||||||
|
header: "Statut",
|
||||||
|
cell: ({ cell }) => {
|
||||||
|
const status = String(cell.getValue())
|
||||||
|
return (
|
||||||
|
<p
|
||||||
|
className={`rounded-full px-2 py-1 font-medium text-sm w-20 h-6 text-center
|
||||||
|
${
|
||||||
|
status === "active" ? "bg-[#ECF9E8] text-[#49C91E]" :
|
||||||
|
status === "inactive" ? "bg-[#E7EBF3] text-[#9FA8BC]" :
|
||||||
|
status === "pending" ? "bg-[#EAF7FC] text-[#30B2EA]" :
|
||||||
|
status === "blocked" ? "bg-[#FDEBE8] text-[#F33F19]" :
|
||||||
|
""
|
||||||
|
}
|
||||||
|
`}
|
||||||
|
>
|
||||||
|
{
|
||||||
|
status === "active" ? "Actif" :
|
||||||
|
status === "inactive" ? "Inactif" :
|
||||||
|
status === "pending" ? "En attente" :
|
||||||
|
status === "blocked" ? "Bloquée" :
|
||||||
|
""
|
||||||
|
}
|
||||||
|
</p>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "delete",
|
||||||
|
cell: ({ row }) => {
|
||||||
|
const company = row.original;
|
||||||
|
return (
|
||||||
|
<div className="flex justify-end p-2 space-x-2"
|
||||||
|
// onClick={() => { mutate(id) }}
|
||||||
|
>
|
||||||
|
|
||||||
|
{/* Modal de suppression */}
|
||||||
|
<Modal
|
||||||
|
open={openDeleteModal && selectedAdminId === company.id}
|
||||||
|
onOpenChange={(isOpen) => {
|
||||||
|
if (!isOpen) {
|
||||||
|
setSelectedAdminId(null);
|
||||||
|
setOpenDeleteModal(false);
|
||||||
|
}
|
||||||
|
}}
|
||||||
|
trigger={
|
||||||
|
<div
|
||||||
|
onClick={() => {
|
||||||
|
setSelectedAdminId(company.id);
|
||||||
|
setOpenDeleteModal(true);
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
<Image
|
||||||
|
alt="Supprimer"
|
||||||
|
src={icons.trash}
|
||||||
|
className="cursor-pointer"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
}
|
||||||
|
title="Supprimer une organisation"
|
||||||
|
content={
|
||||||
|
<div>
|
||||||
|
<p>Voulez-vous vraiment supprimer cette organisation ?</p>
|
||||||
|
<div className="grid grid-cols-2 gap-3 mt-3">
|
||||||
|
<button
|
||||||
|
className="bg-blue-100 text-blue-600 py-2 px-4 rounded-full cursor-pointer"
|
||||||
|
onClick={() => {
|
||||||
|
setOpenDeleteModal(false);
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
Annuler
|
||||||
|
</button>
|
||||||
|
<button
|
||||||
|
className="bg-red-500 text-white py-2 px-4 rounded-full hover:bg-red-600 cursor-pointer"
|
||||||
|
onClick={() => {
|
||||||
|
deleteMutation.mutate(company.id);
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
Supprimer
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
|
||||||
export default function Organizations (){
|
export default function Organizations (){
|
||||||
return (
|
return (
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user