import { useState } from "react"; import { LineChart, Line, XAxis, YAxis, CartesianGrid, Tooltip, Legend, ResponsiveContainer, } from "recharts"; import { TProfilePutParams, prof } from "../../API/LayoutApi/profile"; import { Button, Col, DatePicker, Form, Input, Row, Select, Space, Spin, Table, Tabs, Watermark, } from "antd"; import TabPane from "antd/es/tabs/TabPane"; import { Link } from "react-router-dom"; import { useMyHistoryData, useMystatsData, useProfData, } from "../../Hooks/Profile"; // @ts-ignore import tagIcon from "../../assets/tagIcon.png"; import { role } from "../../App"; import ChangePassword from "./ChangePassword"; const { Option } = Select; const Profile = () => { const { data, refetch } = useProfData(); const [range, setRange] = useState(1); const onSubmit = async (value: TProfilePutParams) => { await prof.profPatch(value); refetch(); }; const moment = require("moment-timezone"); const nowUtcPlus5 = moment.tz("Asia/Tashkent"); const formattedTimeMinusFiveSeconds = nowUtcPlus5 .subtract(range, "days") .format("YYYY-MM-DDTHH:mm:ss"); const historyData = useMyHistoryData({ start_date: formattedTimeMinusFiveSeconds, }); const { RangePicker } = DatePicker; const currentDate = moment(); const start_date = `${currentDate.format("YYYY-MM")}-01 00:00:00`; const [startDate, setStartDate] = useState(start_date); const [endDate, setEndDate] = useState(undefined); const datePick = (a: any, b: any) => { if (b[0] && b[1]) { setStartDate(`${b[0]} 00:00:00`); setEndDate(`${b[1]} 23:59:59`); } }; const { data: lineData } = useMystatsData({ start_date: startDate, end_date: endDate, }); const formatDate = (dateString: string): string => { const date = new Date(dateString); return new Intl.DateTimeFormat("en-EN", { day: "2-digit", month: "short", }).format(date); }; const chartData = lineData?.daily_stats.map((stat: any) => ({ date: formatDate(stat.date), tasks: stat.number_of_tasks, })); return (
Information} key="1"> {data !== undefined && (
)} {data !== undefined && (
{data && data.team !== "" && ( )}
)}

My Statistics

Total

{lineData?.total_for_period}

{role === "Owner" || role === "Tech Support" ? "Tasks" : "Points"}

Average

{lineData?.avg_stats_for_period}

{role === "Owner" || role === "Tech Support" ? "Tasks a day" : "Points a day"}{" "}

Contribution

{lineData?.contribution}%

{" "} {role === "Owner" || role === "Tech Support" ? "to Business" : `to ${data?.team}`}{" "}

History} key="2"> ({ no: i + 1, task: { id: u.task }, action: u?.action, description: role !== "Owner" ? "You finished this task and earned another 5 points!" : `You ${u?.description.slice( u?.description.indexOf(" ") + 1 )}`, timestamp: u.timestamp ? moment(u.timestamp).format("DD.MM.YYYY, HH:mm") : "", key: u.id, }))} columns={[ { title: , dataIndex: "no", key: "no", width: "5%", }, { title: "Task", dataIndex: "task", key: "task", render: ({ id }: { id: number }) => ( {id} ), }, { title: "Action", dataIndex: "action", key: "action", }, { title: "Description", dataIndex: "description", key: "description", }, { title: "Timestamp", dataIndex: "timestamp", key: "timestamp", }, ]} scroll={{ x: "768px" }} /> Change Password} key="3"> ); }; export default Profile;