Persist subscriber ID in local storage
This commit is contained in:
parent
aa9aed89f2
commit
cf6729603e
@ -15,9 +15,7 @@ const ConnectWallet = () => {
|
|||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
|
|
||||||
if (session) {
|
if (session) {
|
||||||
navigate("/sign-with-nitro-key", {
|
navigate("/sign-with-nitro-key");
|
||||||
state: location.state
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
}, [session, navigate, location]);
|
}, [session, navigate, location]);
|
||||||
|
|
||||||
|
@ -48,6 +48,8 @@ const OnboardingSuccess = () => {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
localStorage.removeItem('subscriberIdHash');
|
||||||
|
|
||||||
setParticipant(participant);
|
setParticipant(participant);
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
console.error("Error fetching participants", error);
|
console.error("Error fetching participants", error);
|
||||||
|
@ -25,17 +25,17 @@ const SignWithCosmos = () => {
|
|||||||
|
|
||||||
const navigate = useNavigate();
|
const navigate = useNavigate();
|
||||||
|
|
||||||
const {message: innerMessage, cosmosAddress, receivedEthSig: ethSignature, subscriberIdHash} = location.state as {
|
const {message: innerMessage, cosmosAddress, receivedEthSig: ethSignature} = location.state as {
|
||||||
message?: {
|
message?: {
|
||||||
msg: string;
|
msg: string;
|
||||||
address: string;
|
address: string;
|
||||||
};
|
};
|
||||||
cosmosAddress?: string;
|
cosmosAddress?: string;
|
||||||
receivedEthSig?: string;
|
receivedEthSig?: string;
|
||||||
subscriberIdHash?: string;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
const ethAddress = innerMessage!.address;
|
const ethAddress = innerMessage!.address;
|
||||||
|
const subscriberIdHash = localStorage.getItem('subscriberIdHash');
|
||||||
|
|
||||||
const createCosmosClient = useCallback(async (endpoint: string) => {
|
const createCosmosClient = useCallback(async (endpoint: string) => {
|
||||||
return await StargateClient.connect(endpoint);
|
return await StargateClient.connect(endpoint);
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
import React, { useState, useMemo, useEffect } from "react";
|
import React, { useState, useMemo, useEffect } from "react";
|
||||||
import { useLocation, useNavigate } from "react-router-dom";
|
import { useNavigate } from "react-router-dom";
|
||||||
import { enqueueSnackbar } from "notistack";
|
import { enqueueSnackbar } from "notistack";
|
||||||
import canonicalStringify from "canonical-json";
|
import canonicalStringify from "canonical-json";
|
||||||
|
|
||||||
@ -27,7 +27,6 @@ const SignWithNitroKey = () => {
|
|||||||
}, [session, signClient, checkPersistedState]);
|
}, [session, signClient, checkPersistedState]);
|
||||||
|
|
||||||
const navigate = useNavigate();
|
const navigate = useNavigate();
|
||||||
const location = useLocation();
|
|
||||||
const [ethAddress, setEthAddress] = useState("");
|
const [ethAddress, setEthAddress] = useState("");
|
||||||
const [ethSignature, setEthSignature] = useState("");
|
const [ethSignature, setEthSignature] = useState("");
|
||||||
|
|
||||||
@ -35,6 +34,15 @@ const SignWithNitroKey = () => {
|
|||||||
|
|
||||||
const [isLoading, setIsLoading] = useState(false);
|
const [isLoading, setIsLoading] = useState(false);
|
||||||
|
|
||||||
|
const subscriberIdHash = localStorage.getItem('subscriberIdHash');
|
||||||
|
|
||||||
|
useEffect(()=>{
|
||||||
|
if(!subscriberIdHash){
|
||||||
|
setIsLoading(false)
|
||||||
|
enqueueSnackbar("Subscriber ID not found. Please verify your email and try again", { variant: "error" });
|
||||||
|
}
|
||||||
|
}, [subscriberIdHash])
|
||||||
|
|
||||||
const message = useMemo(() => {
|
const message = useMemo(() => {
|
||||||
return {
|
return {
|
||||||
msg: "Register my account as a participant on the Laconic network",
|
msg: "Register my account as a participant on the Laconic network",
|
||||||
@ -68,20 +76,11 @@ const SignWithNitroKey = () => {
|
|||||||
},
|
},
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
const state = location.state as {
|
|
||||||
subscriberIdHash?: string
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!state.subscriberIdHash) {
|
|
||||||
throw new Error("Subscriber ID not found. Please verify your email and try again")
|
|
||||||
}
|
|
||||||
|
|
||||||
navigate("/sign-with-cosmos", {
|
navigate("/sign-with-cosmos", {
|
||||||
state: {
|
state: {
|
||||||
message,
|
message,
|
||||||
cosmosAddress,
|
cosmosAddress,
|
||||||
receivedEthSig,
|
receivedEthSig,
|
||||||
subscriberIdHash: state.subscriberIdHash,
|
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
@ -19,6 +19,11 @@ const Thanks: React.FC = () => {
|
|||||||
const [err, setErr] = useState<string>();
|
const [err, setErr] = useState<string>();
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
|
const localSubscriberIdHash = localStorage.getItem('localSubscriberIdHash');
|
||||||
|
if(localSubscriberIdHash){
|
||||||
|
navigate('/connect-wallet');
|
||||||
|
}
|
||||||
|
|
||||||
const queryParams = new URLSearchParams(location.search);
|
const queryParams = new URLSearchParams(location.search);
|
||||||
const token = queryParams.get('jwt_token');
|
const token = queryParams.get('jwt_token');
|
||||||
|
|
||||||
@ -38,14 +43,12 @@ const Thanks: React.FC = () => {
|
|||||||
throw new Error("Token has expired");
|
throw new Error("Token has expired");
|
||||||
}
|
}
|
||||||
|
|
||||||
const subscriberIdBytes = ethers.utils.toUtf8Bytes(decoded.subscriber_id)
|
const subscriberIdBytes = ethers.utils.toUtf8Bytes(decoded.subscriber_id);
|
||||||
const subscriberIdHash = ethers.utils.sha256(subscriberIdBytes);
|
const subscriberIdHash = ethers.utils.sha256(subscriberIdBytes);
|
||||||
|
|
||||||
navigate('/connect-wallet', {
|
localStorage.setItem('subscriberIdHash', subscriberIdHash);
|
||||||
state:{
|
|
||||||
subscriberIdHash
|
navigate('/connect-wallet');
|
||||||
}
|
|
||||||
});
|
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
setErr(String(error));
|
setErr(String(error));
|
||||||
}
|
}
|
||||||
|
@ -45,12 +45,13 @@ const UserVerification = () => {
|
|||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (applicationSubmitted && kycId !== '') {
|
if (applicationSubmitted && kycId !== '') {
|
||||||
const kycIdHash = ethers.utils.sha256(ethers.utils.toUtf8Bytes(kycId));
|
const kycIdHash = ethers.utils.sha256(ethers.utils.toUtf8Bytes(kycId));
|
||||||
|
localStorage.setItem('subscriberIdHash', kycIdHash);
|
||||||
|
|
||||||
navigate("/sign-with-cosmos", {
|
navigate("/sign-with-cosmos", {
|
||||||
state: {
|
state: {
|
||||||
message,
|
message,
|
||||||
cosmosAddress,
|
cosmosAddress,
|
||||||
receivedEthSig,
|
receivedEthSig,
|
||||||
subscriberIdHash: kycIdHash,
|
|
||||||
}})
|
}})
|
||||||
}
|
}
|
||||||
}, [applicationSubmitted, kycId, navigate, cosmosAddress, message, receivedEthSig]);
|
}, [applicationSubmitted, kycId, navigate, cosmosAddress, message, receivedEthSig]);
|
||||||
|
Loading…
Reference in New Issue
Block a user