import { Space, TableColumnsType, Tooltip } from "antd"; import { Lesson } from "../../types/Item"; import { FaPlus } from "react-icons/fa"; import useModalHandler from "../../utils/useModalHandler"; import { ModalEnum } from "../../enums/Model"; import { useObjectToEdit } from "../../zustand/ObjectToEditState"; import { RiDeleteBin6Fill } from "react-icons/ri"; import { MdOutlineEdit } from "react-icons/md"; import { findLabelByValue } from "../../utils/findLabelByValue"; import { useTranslation } from "react-i18next"; import { hasAbility } from "../../utils/hasAbility"; import { ABILITIES_ENUM, ABILITIES_VALUES_ENUM } from "../../enums/abilities"; import { formatNumber } from "../../utils/formatNumber"; import { BsEyeFill } from "react-icons/bs"; import { useNavigate } from "react-router-dom"; import { canAddLesson, canDeleteLesson, canEditLesson, canShowLesson } from "../../utils/hasAbilityFn"; export const useColumns = () => { const { handel_open_model } = useModalHandler(); const { setObjectToEdit } = useObjectToEdit((state) => state); const navigate = useNavigate() const handelShow = (record: any) => { navigate(`${ABILITIES_ENUM.LESSON}/${record?.id}`); }; const handelDelete = (data: any) => { setObjectToEdit(data); handel_open_model(ModalEnum?.LESSON_DELETE); }; const handleEdit = (record: any) => { setObjectToEdit(record); handel_open_model(ModalEnum?.LESSON_EDIT); }; const [t] = useTranslation(); const columns: TableColumnsType = [ { title: t("columns.id"), dataIndex: "id", key: "id", align: "center", render: (text, record) => record?.id, }, { title: `${t("columns.name")}`, dataIndex: "name", key: "name", align: "center", render: (text, record) => record?.name, }, { title: canAddLesson ? ( ) : ( "" ), key: "actions", align: "end", className: "custom_add_button_column", render: (text, record, index) => { const className = index % 2 === 0 ? "even-row buttonAction" : "odd-row buttonAction"; return ( {canEditLesson && ( handleEdit(record)}> )} {canDeleteLesson && ( handelDelete(record)} size={22} style={{ color: "#C11313" }} /> )} {canShowLesson && ( handelShow(record)} size={22} style={{ color: "green" }} /> )} ); }, }, ]; return columns; };