Commit 755f2adb authored by Ramadevi Guduri's avatar Ramadevi Guduri

reportsuiand slice

parent 09e51d5b
import React, { useEffect ,useState} from 'react'
import { useDispatch, useSelector } from 'react-redux'
import { fetchReportstableData } from '../../redux/reducers/exporttableslice';
import { setPastMonth,setPastTwoMonths,setPastsixMonths,setPasttwelvemonths } from '../../redux/reducers/exporttableslice';
import React, { useEffect, useState } from "react";
import { useDispatch, useSelector } from "react-redux";
import {
fetchReportstableData,
fetchReportesActivitiesData,
} from "../../redux/reducers/exporttableslice";
import { fetchReportees } from "../../redux/reducers/reporteesSlice";
import { convertUTCToLocal } from "../../utils/commonFunctions";
import Table from "../../components/table";
function Exporttable() {
const dispatch = useDispatch()
const dispatch = useDispatch();
const { user } = useSelector((state) => state.userDetails);
const { totalReporteesData } = useSelector((state) => state.totalreportees);
const [selectedOption, setSelectedOption] = useState('');
const { activitiesData } = useSelector((state) => state.totalreportees);
const { reportees, loading, totalCount, currPage, pagesCount } = useSelector(
(state) => state.reportees
);
const [selectedEmployee, setSelectedEmployee] = useState(0);
const [fromDate, setFromDate] = useState("");
const [toDate, setToDate] = useState("");
const [inputValue, setInputValue] = useState('');
console.log(activitiesData, "activitiesData");
const calculateDateRange = (monthsAgo) => {
const toDate = new Date().toISOString().split("T")[0];
const fromDate = new Date();
fromDate.setMonth(fromDate.getMonth() - monthsAgo);
const fromDateFormatted = fromDate.toISOString().split("T")[0];
return { fromDate: fromDateFormatted, toDate };
};
const handleDropdownChange = (event) => {
const selectedValue = event.target.value;
setSelectedOption(selectedValue);
if (selectedValue === 'pastMonth') {
dispatch(setPastMonth());
} else if (selectedValue === 'pastthreeMonth') {
dispatch(setPastTwoMonths());
} else if (selectedValue === 'pastsixMonth'){
dispatch(setPastsixMonths());
} else if (selectedValue === 'pasttwelvemonth')
dispatch(setPasttwelvemonths());
let fromDate, toDate;
if (selectedValue === "pastMonth") {
({ fromDate, toDate } = calculateDateRange(1));
} else if (selectedValue === "pastthreeMonth") {
({ fromDate, toDate } = calculateDateRange(3));
} else if (selectedValue === "pastsixMonth") {
({ fromDate, toDate } = calculateDateRange(6));
} else if (selectedValue === "pasttwelvemonth") {
({ fromDate, toDate } = calculateDateRange(12));
}
setFromDate(fromDate);
setToDate(toDate);
};
const handleView = (e) => {
e.preventDefault();
let data = {
empId: Number(selectedEmployee),
fromDate: fromDate,
toDate: toDate,
};
console.log(data, "data");
dispatch(fetchReportesActivitiesData(data));
};
useEffect(() => {
dispatch(fetchReportstableData({
if (user) {
let data = {
reportees: user.reportees,
page: 1,
perPage: user.reportees.length
}))
perPage: user.reportees.length,
};
dispatch(fetchReportees(data));
}
}, [user]);
if (totalReporteesData?.length > 0)
const headers = [
{ title: "Activity Name", id: "aName" },
{
title: "Date",
id: "recorded_date",
render: (value) => convertUTCToLocal(value),
},
{ title: "Rated By", id: "ratedBy" },
{
title: "Score",
id: "score",
render: (value) => (
<div className="w-[35px] px-3 bg-blue-400 rounded-full text-white font-bold text-center p-[4px]">
{value}
</div>
),
},
{
title: "Comments",
id: "comments",
render: (value) => (
<span className="listData" title={value}>
{value}
</span>
),
},
];
if (reportees?.length > 0) {
return (
<div>
<div className="" >
<div className="text-blue-800 py-3 pl-2 text-center"> Genarate Report</div>
<div className={` overflow-auto sm:rounded-lg p-4 bg-gray-100`}>
<div className="text-blue-800 py-3 pl-2 text-center">
{" "}
Genarate Report
</div>
<div>
<form className=" p-2 text-[12px]" >
<form className=" p-2 text-[12px]">
<div className="flex items-center justify-evenly ">
<div className='flex items-center'>
<label htmlFor="countries" className='font-semibold'>Select Employee: </label>
<select className="bg-gray-50 ml-2 w-[200px] border border-gray-300 text-gray-900 text-sm rounded-sm focus:ring-blue-500 focus:border-blue-500 block p-2.5 dark:bg-gray-700" >
<option id="" value="">Select</option>
{
totalReporteesData && totalReporteesData.map((reportee) => <option>{reportee?.empName}</option>)
}
<div className="flex items-center">
<label htmlFor="countries" className="font-semibold">
Select Employee:{" "}
</label>
<select
onChange={(e) => setSelectedEmployee(e.target.value)}
value={selectedEmployee}
className="bg-gray-50 ml-2 w-[200px] border border-gray-300 text-gray-900 text-sm rounded-sm focus:ring-blue-500 focus:border-blue-500 block p-2.5 dark:bg-gray-700"
>
<option id="" value="">
Select
</option>
{reportees &&
reportees.map((reportee) => (
<option
key={reportee.empId}
id={reportee.empId}
value={reportee.empId}
>
{reportee?.empName}
</option>
))}
</select>
</div>
<div className='flex items-center'>
<label htmlFor="countries" className='font-semibold'>Select Period:</label>
<select value={selectedOption} onChange={handleDropdownChange} className="bg-gray-50 ml-2 w-[200px] border border-gray-300 text-gray-900 text-sm focus:ring-blue-500 focus:border-blue-500 block p-2.5 dark:bg-gray-700 " >
<option id="" value="">Select</option>
<option id="" value="pastMonth">Past 1 months</option>
<option id="" value="pastthreeMonth">Past 3 months</option>
<option id="" value="pastsixMonth">Past 6 months</option>
<option id="" value="pasttwelvemonth">Past year</option>
<div className="flex items-center">
<label htmlFor="countries" className="font-semibold">
Select Period:
</label>
<select
onChange={handleDropdownChange}
className="bg-gray-50 ml-2 w-[200px] border border-gray-300 text-gray-900 text-sm focus:ring-blue-500 focus:border-blue-500 block p-2.5 dark:bg-gray-700 "
>
<option id="" value="">
Select
</option>
<option id="" value="pastMonth">
Past 1 months
</option>
<option id="" value="pastthreeMonth">
Past 3 months
</option>
<option id="" value="pastsixMonth">
Past 6 months
</option>
<option id="" value="pasttwelvemonth">
Past year
</option>
</select>
</div>
<div className='flex'>
<button className="px-8 py-2 ml-5 w-[100px] h-[40px] bg-green-500 text-white font-semibold rounded-md">View</button>
<button type="button" className="px-3 py-2 ml-5 w-[100px] h-[40px] bg-red-500 font-semibold text-white rounded-md">Download</button>
<div className="flex">
<button
className="px-8 py-2 ml-5 w-[100px] h-[40px] bg-blue-500 text-white font-semibold rounded-md"
onClick={(e) => handleView(e)}
>
View
</button>
<button
disabled={true}
type="button"
className="px-3 py-2 ml-5 w-[100px] h-[40px] bg-gray-500 font-semibold text-white rounded-md"
>
Download
</button>
</div>
</div>
</form>
</div>
</div>
<div className='mx-20 items-center justify-center '>
{ activitiesData?.length > 0 && (
<Table headers={headers} loading={loading} data={activitiesData} />
)}
{/* {
activitiesData?.length>0 && <div className='mx-20 items-center justify-center '>
<div className='mt-5'>
<div className='max-w-sm ml-4'>
<div className="relative">
......@@ -83,9 +197,9 @@ function Exporttable() {
</div>
</div>
<div className="p-4">
<table className="border-2 border-collapse w-full border-[#B7B7B7]">
<thead>
<tr >
<table className="w-full text-sm text-left rtl:text-right text-gray-500 bg-transparent justify-center border-separate border-spacing-y-2">
<thead className="text-xs text-gray-700 uppercase bg-gray-50">
<tr className="mb-2">
<th className="border-2 p-2 border-[#B7B7B7] text-start font-medium bg-[#D9D9D9] w-4/12">
ACTIVITY NAME
......@@ -104,53 +218,37 @@ function Exporttable() {
</thead>
<tbody>
<tr>
<td className="border-2 p-2 border-[#B7B7B7] bg-white">
ABC
</td>
<td className="border-2 p-2 border-[#B7B7B7] bg-white">
01/01/2024
</td>
<td className="border-2 p-2 border-[#B7B7B7] bg-white">
5
</td>
<td className="border-2 p-2 border-[#B7B7B7] bg-white">
VERY GOOD
</td>
</tr>
<tr>
<td className="border-2 p-2 border-[#B7B7B7] bg-white">
XYZ
</td>
<td className="border-2 p-2 border-[#B7B7B7] bg-white">
01/01/2024
</td>
<td className="border-2 p-2 border-[#B7B7B7] bg-white">
4
</td>
<td className="border-2 p-2 border-[#B7B7B7] bg-white">
GOOD
</td>
{activitiesData.map((activitie)=>
<tr className="bg-white hover:bg-gray-300 ">
<td className="px-6 py-2 " >{activitie.aName}</td>
<td className="px-6 py-2 " >{convertUTCToLocal(activitie.recorded_date)}</td>
<td className="px-6 py-2 " >{activitie.score}</td>
<td className="px-6 py-2 " >{activitie.comments}</td>
</tr>
)}
</tbody>
</table>
</div>
</div>
} */}
</div>
)
else
return <div classNameName="w-full h-full">
<p className="text-center align-middle pt-14 pb-14 text-blue-500 font-bold">No records to display</p>
</div>
);
} else {
return (
<div classNameName="w-full h-full">
<p className="text-center align-middle pt-14 pb-14 text-blue-500 font-bold">
No records to display
</p>
</div>
);
}
}
export default Exporttable
\ No newline at end of file
export default Exporttable;
......@@ -3,16 +3,17 @@ import { base_url } from "../../utils/constants";
import axios from "axios";
const initialState = {
totalReporteesData: [],
activitiesData:null,
// totalReporteesData: [],
activitiesData:[],
loading: false,
error: null,
fromDate: null,
toDate: null,
};
export const fetchReportstableData = createAsyncThunk("getreportees", async (data) => {
return await axios.post(`${base_url}/getreportees`, data)
export const fetchReportesActivitiesData = createAsyncThunk("gettotalactivities", async (data) => {
return await axios.post(`${base_url}/getActivities`, data)
.then((response) => response.data);
});
......@@ -23,57 +24,28 @@ const exporttableSlice = createSlice({
resetReporteesTableData:() => {
return initialState
},
setPastMonth: (state) => {
const toDate = new Date();
const fromDate = new Date();
fromDate.setMonth(fromDate.getMonth() - 1);
state.fromDate = fromDate;
state.toDate = toDate;
console.log(fromDate,toDate)
},
setPastTwoMonths: (state) => {
const toDate = new Date();
const fromDate = new Date();
fromDate.setMonth(fromDate.getMonth() - 3);
state.fromDate = fromDate;
state.toDate = toDate;
console.log(fromDate,toDate)
},
setPastsixMonths: (state) => {
const toDate = new Date();
const fromDate = new Date();
fromDate.setMonth(fromDate.getMonth() - 6);
state.fromDate = fromDate;
state.toDate = toDate;
console.log(fromDate,toDate)
},
setPasttwelvemonths: (state) => {
const toDate = new Date();
const fromDate = new Date();
fromDate.setMonth(fromDate.getMonth() - 12);
state.fromDate = fromDate;
state.toDate = toDate;
console.log(fromDate,toDate)
},
},
extraReducers: (builder) => {
builder.addCase(fetchReportstableData.pending, (state) => {
builder.addCase(fetchReportesActivitiesData.pending, (state) => {
state.loading = true;
state.error = "pending";
});
builder.addCase(fetchReportstableData.fulfilled, (state, action) => {
builder.addCase(fetchReportesActivitiesData.fulfilled, (state, action) => {
console.log(action.payload.activities)
state.loading = false;
state.totalReporteesData = action.payload.data;
state.activitiesData = action.payload.activities ;
state.error = "";
});
builder.addCase(fetchReportstableData.rejected, (state, action) => {
builder.addCase(fetchReportesActivitiesData.rejected, (state, action) => {
state.loading = false;
state.totalReporteesData = null;
state.activitiesData = null;
state.error = action.error || "Something went wrong!";
});
},
});
export const {resetReporteesTableData,setPastMonth,setPastTwoMonths,setPastsixMonths,setPasttwelvemonths} = exporttableSlice.actions;
export const {resetReporteesTableData} = exporttableSlice.actions;
export default exporttableSlice.reducer;
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment