Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Optimize url params updates #860

Merged
merged 1 commit into from
Nov 4, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
72 changes: 50 additions & 22 deletions apps/helixbox-app/src/providers/transfer-provider/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,27 +50,44 @@ export default function TransferProvider({ children }: PropsWithChildren<unknown
targetTokenRef.current = value;
}, []);

const isOpenedWithoutUrlParams = useRef(true);
const hasUserManuallyChangedTokenParams = useRef(false);
const hasUserManuallyChangedOtherParams = useRef(false);

useEffect(() => {
const params = new URLSearchParams(window.location.hash.split("?")[1]);

const pT = params.get(UrlSearchParamKey.TOKEN_CATEGORY);
const _token = tokenOptions.find(({ category }) => category === pT) || tokenOptions[0];
const _tokenOption = tokenOptions.find(({ category }) => category === pT);
const _token = _tokenOption || tokenOptions[0];

const pSC = params.get(UrlSearchParamKey.SOURCE_CHAIN);
const _sourceChainOptions = getSourceChainOptions(_token.category);
const _sourceChain = _sourceChainOptions.find(({ network }) => network === pSC) || _sourceChainOptions[0];
const _sourceChainOption = _sourceChainOptions.find(({ network }) => network === pSC);
const _sourceChain = _sourceChainOption || _sourceChainOptions[0];

const pST = params.get(UrlSearchParamKey.SOURCE_TOKEN);
const _sourceTokenOptions = getSourceTokenOptions(_sourceChain, _token.category);
const _sourceToken = _sourceTokenOptions.find(({ symbol }) => symbol === pST) || _sourceTokenOptions[0];
const _sourceTokenOption = _sourceTokenOptions.find(({ symbol }) => symbol === pST);
const _sourceToken = _sourceTokenOption || _sourceTokenOptions[0];

const pTC = params.get(UrlSearchParamKey.TARGET_CHAIN);
const _targetChainOptions = getTargetChainOptions(_sourceToken);
const _targetChain = _targetChainOptions.find(({ network }) => network === pTC) || _targetChainOptions[0];
const _targetChainOption = _targetChainOptions.find(({ network }) => network === pTC);
const _targetChain = _targetChainOption || _targetChainOptions[0];

const pTT = params.get(UrlSearchParamKey.TARGET_CHAIN);
const _targetTokenOptions = getTargetTokenOptions(_sourceToken, _targetChain);
const _targetToken = _targetTokenOptions.find(({ symbol }) => symbol === pTT) || _targetTokenOptions[0];
const _targetTokenOption = _targetTokenOptions.find(({ symbol }) => symbol === pTT);
const _targetToken = _targetTokenOption || _targetTokenOptions[0];

isOpenedWithoutUrlParams.current = !(
_tokenOption ||
_sourceChainOption ||
_sourceTokenOption ||
_targetChainOption ||
_targetTokenOption
);

sourceChainRef.current = _sourceChain;
sourceTokenRef.current = _sourceToken;
Expand All @@ -86,22 +103,27 @@ export default function TransferProvider({ children }: PropsWithChildren<unknown
}, [searchParams]);

const navigate = useNavigate();
const changeUrl = useCallback(
(onlyTokenCategory = false) => {
const params = onlyTokenCategory
? new URLSearchParams()
: new URLSearchParams(searchParamsRef.current.toString());
params.set(UrlSearchParamKey.TOKEN_CATEGORY, tokenRef.current.category);
if (!onlyTokenCategory) {
params.set(UrlSearchParamKey.SOURCE_CHAIN, sourceChainRef.current.network);
params.set(UrlSearchParamKey.SOURCE_TOKEN, sourceTokenRef.current.symbol);
params.set(UrlSearchParamKey.TARGET_CHAIN, targetChainRef.current.network);
params.set(UrlSearchParamKey.TARGET_TOKEN, targetTokenRef.current.symbol);
}
navigate(`?${params.toString()}`);
},
[navigate],
);
const changeUrl = useCallback(() => {
if (
isOpenedWithoutUrlParams.current &&
!hasUserManuallyChangedTokenParams.current &&
!hasUserManuallyChangedOtherParams.current
) {
return;
}
const justTokenCategoryChanged = isOpenedWithoutUrlParams.current && !hasUserManuallyChangedOtherParams.current;
const params = justTokenCategoryChanged
? new URLSearchParams()
: new URLSearchParams(searchParamsRef.current.toString());
params.set(UrlSearchParamKey.TOKEN_CATEGORY, tokenRef.current.category);
if (!justTokenCategoryChanged) {
params.set(UrlSearchParamKey.SOURCE_CHAIN, sourceChainRef.current.network);
params.set(UrlSearchParamKey.SOURCE_TOKEN, sourceTokenRef.current.symbol);
params.set(UrlSearchParamKey.TARGET_CHAIN, targetChainRef.current.network);
params.set(UrlSearchParamKey.TARGET_TOKEN, targetTokenRef.current.symbol);
}
navigate(`?${params.toString()}`);
}, [navigate]);

const [availableTokenOptions, setAvailableTokenOptions] = useState(tokenOptions);
const { loading: loadingAvailableTokenOptions, data: allSupportedChains } = useSupportedChains("");
Expand Down Expand Up @@ -167,14 +189,16 @@ export default function TransferProvider({ children }: PropsWithChildren<unknown

const handleTokenChange = useCallback(
(_token: typeof token) => {
hasUserManuallyChangedTokenParams.current = true;
setToken(_token);
changeUrl(true);
changeUrl();
},
[changeUrl, setToken],
);

const handleSourceChainChange = useCallback(
(_sourceChain: typeof sourceChain) => {
hasUserManuallyChangedOtherParams.current = true;
const _sourceTokenOptions = getSourceTokenOptions(_sourceChain, tokenRef.current.category);
const _sourceToken =
_sourceTokenOptions.find(({ symbol }) => symbol === sourceTokenRef.current.symbol) || _sourceTokenOptions[0];
Expand Down Expand Up @@ -204,6 +228,7 @@ export default function TransferProvider({ children }: PropsWithChildren<unknown

const handleSourceTokenChange = useCallback(
(_sourceToken: typeof sourceToken) => {
hasUserManuallyChangedOtherParams.current = true;
const _targetChainOptions = getTargetChainOptions(_sourceToken).filter((option) =>
supportedChainsRef.current
.at(0)
Expand All @@ -228,6 +253,7 @@ export default function TransferProvider({ children }: PropsWithChildren<unknown

const handleTargetChainChange = useCallback(
(_targetChain: typeof targetChain) => {
hasUserManuallyChangedOtherParams.current = true;
const _targetTokenOptions = getTargetTokenOptions(sourceTokenRef.current, _targetChain);
const _targetToken =
_targetTokenOptions.find(({ symbol }) => symbol === targetTokenRef.current.symbol) || _targetTokenOptions[0];
Expand All @@ -241,13 +267,15 @@ export default function TransferProvider({ children }: PropsWithChildren<unknown

const handleTargetTokenChange = useCallback(
(_targetToken: typeof targetToken) => {
hasUserManuallyChangedOtherParams.current = true;
setTargetToken(_targetToken);
changeUrl();
},
[changeUrl, setTargetToken],
);

const handleSwitch = useCallback(() => {
hasUserManuallyChangedOtherParams.current = true;
const _sourceChain = targetChainRef.current;
const _targetChain = sourceChainRef.current;

Expand Down
Loading