Compare commits

...

2 Commits

Author SHA1 Message Date
victorAnumudu 5d05da30ca no cache handler added 2024-11-30 09:39:12 +01:00
ameye 6e97121f96 Merge branch 'family_banner_reload' of WrenchBoard/Users-Wrench into master 2024-11-29 15:30:44 +00:00
7 changed files with 111 additions and 41 deletions
+1 -1
View File
@@ -5,7 +5,7 @@ import WrenchBoard from "../../assets/images/wrenchboard-logo-text.png";
import DarkModeContext from "../Contexts/DarkModeContext"; import DarkModeContext from "../Contexts/DarkModeContext";
export default function LoginLayout({ slogan, children }) { export default function AuthLayout2({ slogan, children }) {
// const bgImg = localImgLoad("images/left-wrenchboard.jpg"); // const bgImg = localImgLoad("images/left-wrenchboard.jpg");
const bgImgNig = localImgLoad("images/wrench-home-back-nigeria.jpg"); const bgImgNig = localImgLoad("images/wrench-home-back-nigeria.jpg");
const bgImgCom = localImgLoad("images/wrench-home-back-common.jpg"); const bgImgCom = localImgLoad("images/wrench-home-back-common.jpg");
+7 -4
View File
@@ -8,7 +8,7 @@ import AuthLayout from "../AuthLayout2";
import GoogleDownload from '../../../assets/images/download/andriod.jpg' import GoogleDownload from '../../../assets/images/download/andriod.jpg'
import IOSDownload from '../../../assets/images/download/apple.jpg' import IOSDownload from '../../../assets/images/download/apple.jpg'
export default function SignUp() { export default function SignUp({details}) {
const location = useLocation(); const location = useLocation();
// eslint-disable-next-line no-restricted-globals // eslint-disable-next-line no-restricted-globals
@@ -28,9 +28,9 @@ export default function SignUp() {
const [formData, setFormData] = useState({ const [formData, setFormData] = useState({
country: country ? country : "", country: country ? country : "",
first_name: "", first_name: details ? details.first_name : "",
last_name: "", last_name: details ? details.last_name : "",
email: "", email: details ? details.email : "",
password: "", password: "",
}); });
@@ -202,6 +202,7 @@ export default function SignUp() {
type="text" type="text"
value={formData.first_name} value={formData.first_name}
inputHandler={handleInputChange} inputHandler={handleInputChange}
disable={details.first_name}
/> />
</div> </div>
<div className="input-item flex-1"> <div className="input-item flex-1">
@@ -213,6 +214,7 @@ export default function SignUp() {
type="text" type="text"
value={formData.last_name} value={formData.last_name}
inputHandler={handleInputChange} inputHandler={handleInputChange}
disable={details.last_name}
/> />
</div> </div>
</div> </div>
@@ -225,6 +227,7 @@ export default function SignUp() {
type="email" type="email"
value={formData.email} value={formData.email}
inputHandler={handleInputChange} inputHandler={handleInputChange}
disable={details.email}
/> />
</div> </div>
<div className="input-item mb-4"> <div className="input-item mb-4">
+14 -17
View File
@@ -8,16 +8,13 @@ import { tableReload } from "../../store/TableReloads";
import LoadingSpinner from "../Spinners/LoadingSpinner"; import LoadingSpinner from "../Spinners/LoadingSpinner";
import HomeModal from "./HomeModal"; import HomeModal from "./HomeModal";
export default function FamilyDash({ MyActiveJobList=[], serverImg }) { export default function FamilyDash() {
// console.log("PROPS IN FAMILY DASH->", familyOffers?.result_list);
const dispatch = useDispatch(); const dispatch = useDispatch();
const [firstTimeModal, setFirstTimeModal] = useState(true) const [firstTimeModal, setFirstTimeModal] = useState(true)
const userApi = new usersService(); const userApi = new usersService();
// const trending = MyActiveJobList;
const { familyBannersList } = useSelector((state) => state.familyBannersList); const { familyBannersList } = useSelector((state) => state.familyBannersList);
@@ -25,21 +22,21 @@ export default function FamilyDash({ MyActiveJobList=[], serverImg }) {
const { userDetails } = useSelector((state) => state?.userDetails); const { userDetails } = useSelector((state) => state?.userDetails);
let [reloadBanner, setReloadBanner] = useState(0) // let [reloadBanner, setReloadBanner] = useState(0)
useEffect(()=>{ // useEffect(()=>{
if(reloadBanner >= 2){ // if(reloadBanner >= 2){
dispatch(tableReload({ type: "FAMILYBANNERSLIST" })); // RELOAD FAMILY BANNERS LIST EVERY 10 MINS // dispatch(tableReload({ type: "FAMILYBANNERSLIST" })); // RELOAD FAMILY BANNERS LIST EVERY 10 MINS
setReloadBanner(0) // setReloadBanner(0)
} // }
const timer = setInterval(()=>{ // const timer = setInterval(()=>{
setReloadBanner(prev => prev+1) // setReloadBanner(prev => prev+1)
},300000) // },300000)
return ()=>{ // return ()=>{
clearInterval(timer) // clearInterval(timer)
} // }
},[reloadBanner]) // },[reloadBanner])
return ( return (
<> <>
-2
View File
@@ -28,8 +28,6 @@ export default function Home(props) {
{userDetails && userDetails?.account_type == "FAMILY" ? ( {userDetails && userDetails?.account_type == "FAMILY" ? (
<FamilyDash <FamilyDash
account={userDetails} account={userDetails}
commonHeadData={commonHeadBanner?.data?.result_list}
serverImg = {userDetails?.session_image_server}
/> />
) : userDetails && userDetails?.account_type == "FULL" ? ( ) : userDetails && userDetails?.account_type == "FULL" ? (
<> <>
+7 -5
View File
@@ -6,6 +6,8 @@ import axios from 'axios'
function Default({ children }) { function Default({ children }) {
const location = useLocation() const location = useLocation()
const [nocache, setNoCache] = useState(false) // holds cache/nocache value
// dark mode setup // dark mode setup
const [theme, setTheme] = useState(null); const [theme, setTheme] = useState(null);
@@ -16,6 +18,10 @@ function Default({ children }) {
const queryParams = new URLSearchParams(location?.search); const queryParams = new URLSearchParams(location?.search);
const country = queryParams.get("cnt")?.toUpperCase(); const country = queryParams.get("cnt")?.toUpperCase();
const handleThemeSwitch = () => {
setTheme(theme === "dark" ? "light" : "dark");
};
const getLocation = () => { const getLocation = () => {
if (navigator.geolocation) { if (navigator.geolocation) {
navigator.geolocation.getCurrentPosition( navigator.geolocation.getCurrentPosition(
@@ -58,10 +64,6 @@ function Default({ children }) {
} }
}, [theme]); }, [theme]);
const handleThemeSwitch = () => {
setTheme(theme === "dark" ? "light" : "dark");
};
useEffect(()=>{ useEffect(()=>{
if(country){ if(country){
setCountryMode(country) setCountryMode(country)
@@ -75,7 +77,7 @@ function Default({ children }) {
return ( return (
<> <>
<DarkModeContext.Provider value={{ theme, handleThemeSwitch, countryMode }}> <DarkModeContext.Provider value={{ theme, handleThemeSwitch, countryMode, nocache, setNoCache }}>
{children && children} {children && children}
</DarkModeContext.Provider> </DarkModeContext.Provider>
</> </>
+13 -10
View File
@@ -1,4 +1,4 @@
import { useCallback, useEffect, useMemo, useState } from "react"; import { useCallback, useEffect, useMemo, useState, useContext } from "react";
import { useDispatch, useSelector } from "react-redux"; import { useDispatch, useSelector } from "react-redux";
import { Navigate, Outlet, useNavigate } from "react-router-dom"; import { Navigate, Outlet, useNavigate } from "react-router-dom";
import LoadingSpinner from "../components/Spinners/LoadingSpinner"; import LoadingSpinner from "../components/Spinners/LoadingSpinner";
@@ -15,12 +15,15 @@ import { familyBannersList } from "../store/FamilyBannerList";
import { familyResources } from "../store/FamilyResources"; import { familyResources } from "../store/FamilyResources";
import {familyWalletRedeemOptList} from '../store/FamilyWalletRedeemOpt' import {familyWalletRedeemOptList} from '../store/FamilyWalletRedeemOpt'
import { SocketValues } from "../components/Contexts/SocketIOContext"; import { SocketValues } from "../components/Contexts/SocketIOContext";
import DarkModeContext from '../components/Contexts/DarkModeContext'
const AuthRoute = ({ redirectPath = "/login", children }) => { const AuthRoute = ({ redirectPath = "/login", children }) => {
let {joinRoom} = SocketValues() // destructures 'SEND MESSAGE' and 'JOIN ROOM' FUNCTIONS FROM SOCKET let {joinRoom} = SocketValues() // destructures 'SEND MESSAGE' and 'JOIN ROOM' FUNCTIONS FROM SOCKET
const [nocache, setNoCache] = useState(false) // holds cache/nocache value // const [nocache, setNoCache] = useState(false) // holds cache/nocache value
const {nocache, setNoCache} = useContext(DarkModeContext); // Destructures nocache and set nocache from context API
const apiCall = useMemo(() => new usersService(), []); const apiCall = useMemo(() => new usersService(), []);
const dispatch = useDispatch(); const dispatch = useDispatch();
@@ -108,7 +111,7 @@ const AuthRoute = ({ redirectPath = "/login", children }) => {
//FUNCTION TO GET COMMON HEAD DATA //FUNCTION TO GET COMMON HEAD DATA
useEffect(() => { useEffect(() => {
if((!loggedIn && !isLogin.status) || account_type == 'FAMILY'){ // DO NOT CALL THIS, IF USER ACCOUNT TYPE IS FAMILY if((!loggedIn && !isLogin.status) || isLogin.loading || account_type == 'FAMILY'){ // DO NOT CALL THIS, IF USER ACCOUNT TYPE IS FAMILY
return return
} }
dispatch(commonHeadBanner({loading:true, data:{}})); dispatch(commonHeadBanner({loading:true, data:{}}));
@@ -186,7 +189,7 @@ const AuthRoute = ({ redirectPath = "/login", children }) => {
}, []); }, []);
useEffect(() => { useEffect(() => {
if((!loggedIn && !isLogin.status) || account_type == 'FAMILY'){ // DO NOT CALL THIS, IF USER ACCOUNT TYPE IS FAMILY if((!loggedIn && !isLogin.status) || isLogin.loading || account_type == 'FAMILY'){ // DO NOT CALL THIS, IF USER ACCOUNT TYPE IS FAMILY
return return
} }
const getMyJobList = async () => { const getMyJobList = async () => {
@@ -207,7 +210,7 @@ const AuthRoute = ({ redirectPath = "/login", children }) => {
//FUNCTION TO GET FULL USER WALLETS //FUNCTION TO GET FULL USER WALLETS
useEffect(() => { useEffect(() => {
if((!loggedIn && !isLogin.status) || account_type == 'FAMILY'){ // DO NOT CALL THIS, IF USER ACCOUNT TYPE IS FAMILY if((!loggedIn && !isLogin.status) || isLogin.loading || account_type == 'FAMILY'){ // DO NOT CALL THIS, IF USER ACCOUNT TYPE IS FAMILY
return return
} }
const getMyWalletList = async () => { const getMyWalletList = async () => {
@@ -229,7 +232,7 @@ const AuthRoute = ({ redirectPath = "/login", children }) => {
// FUNCTION TO GET MARKET JOB LIST // FUNCTION TO GET MARKET JOB LIST
useEffect(() => { useEffect(() => {
if((!loggedIn && !isLogin.status) || account_type == 'FAMILY'){ // DO NOT CALL THIS, IF USER ACCOUNT TYPE IS FAMILY if((!loggedIn && !isLogin.status) || isLogin.loading || account_type == 'FAMILY'){ // DO NOT CALL THIS, IF USER ACCOUNT TYPE IS FAMILY
return return
} }
// Getting market data // Getting market data
@@ -248,7 +251,7 @@ const AuthRoute = ({ redirectPath = "/login", children }) => {
//FUNCTION TO GET COMMON HEAD DATA //FUNCTION TO GET COMMON HEAD DATA
// useEffect(() => { // useEffect(() => {
// if((!loggedIn && !isLogin.status) || account_type == 'FAMILY'){ // DO NOT CALL THIS, IF USER ACCOUNT TYPE IS FAMILY // if((!loggedIn && !isLogin.status) || isLogin.loading || account_type == 'FAMILY'){ // DO NOT CALL THIS, IF USER ACCOUNT TYPE IS FAMILY
// return // return
// } // }
// apiCall // apiCall
@@ -268,7 +271,7 @@ const AuthRoute = ({ redirectPath = "/login", children }) => {
//FUNCTION TO GET FAMILY BANNERS //FUNCTION TO GET FAMILY BANNERS
useEffect(() => { useEffect(() => {
if((!loggedIn && !isLogin.status) || account_type == 'FULL'){ // DO NOT CALL THIS, IF USER ACCOUNT TYPE IS FULL if((!loggedIn && !isLogin.status) || isLogin.loading || isLogin.loading || account_type == 'FULL'){ // DO NOT CALL THIS, IF USER ACCOUNT TYPE IS FULL
return return
} }
const getFamilyBanners = async () => { // FUNCTION TO GET FAMILY BANNERS const getFamilyBanners = async () => { // FUNCTION TO GET FAMILY BANNERS
@@ -289,7 +292,7 @@ const AuthRoute = ({ redirectPath = "/login", children }) => {
//FUNCTION TO GET FAMILY RESOURCES //FUNCTION TO GET FAMILY RESOURCES
useEffect(() => { useEffect(() => {
if((!loggedIn && !isLogin.status) || account_type == 'FULL'){ // DO NOT CALL THIS, IF USER ACCOUNT TYPE IS FULL if((!loggedIn && !isLogin.status) || isLogin.loading || account_type == 'FULL'){ // DO NOT CALL THIS, IF USER ACCOUNT TYPE IS FULL
return return
} }
const getFamilyResourcesList = async () => { // FUNCTION TO GET FAMILY BANNERS const getFamilyResourcesList = async () => { // FUNCTION TO GET FAMILY BANNERS
@@ -307,7 +310,7 @@ const AuthRoute = ({ redirectPath = "/login", children }) => {
//FUNCTION TO GET FAMILY WALLET REDEEM OPTIONS //FUNCTION TO GET FAMILY WALLET REDEEM OPTIONS
useEffect(() => { useEffect(() => {
if((!loggedIn && !isLogin.status) || account_type == 'FULL'){ // DO NOT CALL THIS, IF USER ACCOUNT TYPE IS FULL if((!loggedIn && !isLogin.status) || isLogin.loading || account_type == 'FULL'){ // DO NOT CALL THIS, IF USER ACCOUNT TYPE IS FULL
return return
} }
const familyWalletRedeemOptions = async () => { // FUNCTION TO GET FAMILY WALLET REDDEM OPTIONS const familyWalletRedeemOptions = async () => { // FUNCTION TO GET FAMILY WALLET REDDEM OPTIONS
+69 -2
View File
@@ -1,12 +1,79 @@
import React from "react"; import React, {useState, useEffect} from "react";
import { useLocation } from "react-router-dom";
import usersService from '../services/UsersService'
import SignUp from "../components/AuthPages/SignUp/index2"; import SignUp from "../components/AuthPages/SignUp/index2";
import LoadingSpinner from '../components/Spinners/LoadingSpinner'
import AuthLayout from '../components/AuthPages/AuthLayout2'
function SignupPageTwo() { function SignupPageTwo() {
const api = new usersService()
const location = useLocation();
const queryParams = new URLSearchParams(location?.search);
const refer_link = queryParams.get("refer_link")?.toUpperCase();
const [reload, setReload] = useState(false)
let [details, setDetails] = useState({loading:true, error:false, data:{}})
useEffect(()=>{
setDetails({loading:true, error:false, data:{}})
if(refer_link){
// const timer = setTimeout(()=>{
// setDetails({loading:false, data:{
// first_name: 'Emeka',
// last_name: 'John',
// email: 'example@example.com'
// }})
// },[1000])
api.verifyEmail(refer_link).then(res => {
setDetails({loading:false, error:false, data:{}})
console.log('RES', rres)
}).catch(err => {
setDetails({loading:false, error:true, data:{}})
})
}else{
setDetails({loading:false, error:false, data:{}})
}
},[reload])
return ( return (
<> <>
<SignUp /> {details.loading ?
<LoadingSpinner size="32" color="sky-blue" height="h-screen" />
: details.error ?
<AuthLayout>
<ErrorComponent onClick={()=>setReload(prev => !prev)} />
</AuthLayout>
:
<SignUp details={details.data} />
}
</> </>
); );
} }
export default SignupPageTwo; export default SignupPageTwo;
const ErrorComponent = ({ onClick }) => (
<div className="input-area">
<div className="my-5">
<p className="text-[14px] leading-[19px] text-center text-[#181c32]">
This error occurs because you have already verified this link or the
link has expired. Try login or reset password. If none worked, try to
create the account from the start.
</p>
</div>
<div className="signin-area flex justify-center mb-3.5">
<button
onClick={onClick}
type="button"
className={`rounded-[0.475rem] mb-6 text-[15px] font-semibold text-[#009ef7] hover:text-white flex justify-center bg-[#f1faff] hover:bg-[#009ef7] transition-all duration-300 items-center py-[0.8875rem] px-[1.81rem]`}
>
<span>Try Again</span>
</button>
</div>
</div>
);