import { useParams } from "react-router-dom"; import { useCustomerOne } from "../../Hooks/Customers"; import { Form, Spin, Watermark, Space, Tabs, Row, Col, Input, Button, } from "antd"; import { customerController } from "../../API/LayoutApi/customers"; import Notfound from "../../Utils/Notfound"; import { useCompanyOne } from "../../Hooks/Companies"; import { role } from "../../App"; import { useState } from "react"; // @ts-ignore import infoIcon from "../../assets/infoIcon.png"; // @ts-ignore import infoIconActive from "../../assets/infoIconActive.png"; const TabPane = Tabs.TabPane; type params = { readonly id: any; }; const CustomerEdit = () => { const { id } = useParams(); const { data, refetch, status } = useCustomerOne(id); const onSubmit = async (value: any) => { await customerController.customerPatch(value, id); refetch(); window.location.replace("/#/customers/"); }; const companyData = useCompanyOne(data?.id); const ClickDelete = () => { const shouldDelete = window.confirm( "Are you sure, you want to delete this Driver?" ); if (shouldDelete && id !== undefined) { customerController.deleteCustomerController(id).then((data: any) => { document.location.replace(`/#/customers`); }); } }; const [activeTab, setActiveTab] = useState("1"); return (
{status === "loading" ? ( ) : data ? ( setActiveTab(key)} > Information } key="1" >
{companyData?.data && ( )} {role === "Owner" && ( )}
) : ( )}
); }; export default CustomerEdit;