clean up on unused APIs
This commit was merged in pull request #794.
This commit is contained in:
@@ -61,15 +61,14 @@ export default function FullAccountDash(props) {
|
||||
<AccountDashboard className="mb-4" bannerList={props.bannerList} offersList={props.offersList} imageServer={props.imageServer} />
|
||||
)}
|
||||
|
||||
{
|
||||
// props?.dashTypes !== "undefined" &&
|
||||
// props.offersList?.data?.result_list?.length ? (
|
||||
// <MyOffersTable
|
||||
// MyActiveOffersList={props.offersList?.data}
|
||||
// className="mb-10"
|
||||
// />
|
||||
// )
|
||||
// :
|
||||
{/* {props?.dashTypes !== "undefined" &&
|
||||
props.offersList?.data?.result_list?.length ? (
|
||||
<MyOffersTable
|
||||
MyActiveOffersList={props.offersList?.data}
|
||||
className="mb-10"
|
||||
/>
|
||||
)
|
||||
:
|
||||
props.MyActiveJobList?.data?.length ? (
|
||||
<>
|
||||
<div className="w-full mb-5 flex justify-between items-center gap-1">
|
||||
@@ -83,7 +82,7 @@ export default function FullAccountDash(props) {
|
||||
imageServer={props.offersList?.data?.session_image_server}
|
||||
/>
|
||||
</>
|
||||
) : null}
|
||||
) : null} */}
|
||||
</div>
|
||||
</>
|
||||
);
|
||||
|
||||
@@ -14,19 +14,19 @@ export default function Home(props) {
|
||||
|
||||
const { userDetails } = useSelector((state) => state?.userDetails);
|
||||
|
||||
const [MyActiveJobList, setMyActiveJobList] = useState({loading:true, data:[]}); // STATE TO HOLD ACTIVE/CURRENT TASKS
|
||||
// const [MyActiveJobList, setMyActiveJobList] = useState({loading:true, data:[]}); // STATE TO HOLD ACTIVE/CURRENT TASKS
|
||||
|
||||
const getMyActiveJobList = async () => { // FUNCTION TO POPULATE ACTIVE/CURRENT TASK LIST
|
||||
try {
|
||||
const res = await userApi.getMyActiveTaskList();
|
||||
setMyActiveJobList({loading:false, data:res?.data?.result_list});
|
||||
// setMyActiveJobList(res?.data?.result_list);
|
||||
} catch (error) {
|
||||
setMyActiveJobList({loading:false, data:[]});
|
||||
// setMyActiveJobList([]);
|
||||
console.log("Error getting tasks");
|
||||
}
|
||||
};
|
||||
// const getMyActiveJobList = async () => { // FUNCTION TO POPULATE ACTIVE/CURRENT TASK LIST
|
||||
// try {
|
||||
// const res = await userApi.getMyActiveTaskList();
|
||||
// setMyActiveJobList({loading:false, data:res?.data?.result_list});
|
||||
// // setMyActiveJobList(res?.data?.result_list);
|
||||
// } catch (error) {
|
||||
// setMyActiveJobList({loading:false, data:[]});
|
||||
// // setMyActiveJobList([]);
|
||||
// console.log("Error getting tasks");
|
||||
// }
|
||||
// };
|
||||
|
||||
// FUNCTION TO GET DASH DATA TO DETERMINE CURRENT TASK DUE TIME
|
||||
// const getHomeDate = () => {
|
||||
@@ -53,11 +53,11 @@ export default function Home(props) {
|
||||
// }
|
||||
// };
|
||||
|
||||
useEffect(() => {
|
||||
if(userDetails?.account_type == 'FULL'){
|
||||
getMyActiveJobList();
|
||||
}
|
||||
}, []);
|
||||
// useEffect(() => {
|
||||
// if(userDetails?.account_type == 'FULL'){
|
||||
// getMyActiveJobList();
|
||||
// }
|
||||
// }, []);
|
||||
|
||||
return (
|
||||
<Layout>
|
||||
@@ -78,7 +78,7 @@ export default function Home(props) {
|
||||
bannerList={props.bannerList}
|
||||
dashTypes={props.dashTypes}
|
||||
// offersList={MyOffersList}
|
||||
MyActiveJobList={MyActiveJobList}
|
||||
// MyActiveJobList={MyActiveJobList}
|
||||
offersList={props.offersList}
|
||||
imageServer={props.imageServer}
|
||||
/>
|
||||
|
||||
Reference in New Issue
Block a user