From a913740f12f42793a281a74bb7560d2e74e2685e Mon Sep 17 00:00:00 2001 From: jinhojang6 Date: Sat, 2 Nov 2024 02:38:45 +0900 Subject: [PATCH] chore: fix misc. ui issues --- .../Dashboard/OperatorGrid/OperatorCard.tsx | 14 +++++++++++--- src/components/HamburgerMenu/HamburgerMenu.tsx | 1 + src/components/Header/Navbar/Navbar.tsx | 4 ---- src/components/Toast/Toast.tsx | 13 +++++++++++-- src/components/WalletConnect/WalletConnect.tsx | 9 +++++++++ .../Dashboard/DashboardContainer.tsx | 18 +++++++----------- 6 files changed, 39 insertions(+), 20 deletions(-) diff --git a/src/components/Dashboard/OperatorGrid/OperatorCard.tsx b/src/components/Dashboard/OperatorGrid/OperatorCard.tsx index a35c37c7a5..e3d8e0fc93 100644 --- a/src/components/Dashboard/OperatorGrid/OperatorCard.tsx +++ b/src/components/Dashboard/OperatorGrid/OperatorCard.tsx @@ -36,7 +36,7 @@ const OperatorCard: React.FC = ({ walletAddress, }) - const handleStake = (operatorId: string) => { + const handleStake = async (operatorId: string) => { setIsStaked((prev) => !prev) if (isStaked) { @@ -46,7 +46,11 @@ const OperatorCard: React.FC = ({ }) queryClient.invalidateQueries('getUserInfo' as any) - refetch() + const res = await refetch() + const newInfo = res.data + + updateCache(newInfo) + setUserInfo(newInfo) } else { stake.mutateAsync({ operator_id: operatorId, @@ -54,7 +58,11 @@ const OperatorCard: React.FC = ({ }) queryClient.invalidateQueries('getUserInfo' as any) - refetch() + const res = await refetch() + const newInfo = res.data + + updateCache(newInfo) + setUserInfo(newInfo) } } diff --git a/src/components/HamburgerMenu/HamburgerMenu.tsx b/src/components/HamburgerMenu/HamburgerMenu.tsx index 46a35c3efd..9fc0f81e11 100644 --- a/src/components/HamburgerMenu/HamburgerMenu.tsx +++ b/src/components/HamburgerMenu/HamburgerMenu.tsx @@ -12,6 +12,7 @@ const Button = styled.button` height: 28px; border: 1px solid rgb(var(--lsd-border-primary)); background: transparent; + flex-shrink: 0; cursor: pointer; @media (min-width: ${breakpoints.md}px) { diff --git a/src/components/Header/Navbar/Navbar.tsx b/src/components/Header/Navbar/Navbar.tsx index 19df168105..538d8ea8a2 100644 --- a/src/components/Header/Navbar/Navbar.tsx +++ b/src/components/Header/Navbar/Navbar.tsx @@ -93,10 +93,6 @@ const Navigation = styled.ul` } @media (max-width: ${breakpoints.md}px) { - display: none; - } - - @media (max-width: 768px) { display: flex; flex-direction: column; align-items: flex-start; diff --git a/src/components/Toast/Toast.tsx b/src/components/Toast/Toast.tsx index 86150508de..abdf13eb0d 100644 --- a/src/components/Toast/Toast.tsx +++ b/src/components/Toast/Toast.tsx @@ -1,6 +1,8 @@ import { breakpoints } from '@/configs/ui.configs' import styled from '@emotion/styled' +import { useAtomValue } from 'jotai' import { useEffect, useState } from 'react' +import { userInfoAtom } from '../../../atoms/userInfo' const ToastContainer = styled.div` position: relative; @@ -36,6 +38,7 @@ const ToastContainer = styled.div` const Toast: React.FC = () => { const [time, setTime] = useState('DD:HH:mm:ss') + const userInfo = useAtomValue(userInfoAtom) useEffect(() => { const targetTime = new Date('2024-11-04T13:00:00Z').getTime() @@ -75,8 +78,14 @@ const Toast: React.FC = () => { return ( - Logos Ordinals Mint Begins November 4, 2024 at 1PM UTC - Time remaining: {time} + {userInfo?.message?.length > 0 ? ( + userInfo.message + ) : ( + <> + Logos Ordinals Mint Begins November 4, 2024 at 1PM UTC + Time remaining: {time} + + )} ) } diff --git a/src/components/WalletConnect/WalletConnect.tsx b/src/components/WalletConnect/WalletConnect.tsx index e7a1023336..76f5d547c4 100644 --- a/src/components/WalletConnect/WalletConnect.tsx +++ b/src/components/WalletConnect/WalletConnect.tsx @@ -4,6 +4,7 @@ import styled from '@emotion/styled' import { useAtom } from 'jotai' import { useRouter } from 'next/router' import React, { useEffect, useRef, useState } from 'react' +import useGetUserInfo from '../../../apis/operators/useGetUserInfo' import { userInfoAtom } from '../../../atoms/userInfo' import { walletAddressAtom } from '../../../atoms/wallet' import { api } from '../../../common/api' @@ -25,11 +26,19 @@ const Dropdown: React.FC = () => { const [isExpanded, setIsExpanded] = useState(false) const [walletAddress, setWalletAddress] = useAtom(walletAddressAtom) + console.log('walletAddress', walletAddress) + const router = useRouter() const { referral_code, referral_address, referral_source } = router.query const [userInfo, setUserInfo] = useAtom(userInfoAtom) + + useGetUserInfo({ + walletAddress, + setUserInfo, + }) + const [showMultiPass, setShowMultiPass] = useState(false) const walletHandlers = { diff --git a/src/containers/Dashboard/DashboardContainer.tsx b/src/containers/Dashboard/DashboardContainer.tsx index b22f328946..782093fd63 100644 --- a/src/containers/Dashboard/DashboardContainer.tsx +++ b/src/containers/Dashboard/DashboardContainer.tsx @@ -3,7 +3,7 @@ import { OperatorPanel } from '@/components/Dashboard/OperatorPanel' import { ProgressBar } from '@/components/Dashboard/ProgressBar' import { breakpoints } from '@/configs/ui.configs' import styled from '@emotion/styled' -import { useAtom, useSetAtom } from 'jotai' +import { useAtom } from 'jotai' import React, { useEffect } from 'react' // import useGetUserXP from '../../../apis/general/useGetUserXP' import useGetUserInfo from '../../../apis/operators/useGetUserInfo' @@ -20,15 +20,11 @@ const DashboardContainer: React.FC = ({ children, ...props }) => { - const setUserInfo = useSetAtom(userInfoAtom) + const [userInfo, setUserInfo] = useAtom(userInfoAtom) const [walletAddress, setWalletAddress] = useAtom(walletAddressAtom) - const { - data: userInfoData, - isLoading: isUserInfoLoading, - refetch, - } = useGetUserInfo({ + const { isLoading: isUserInfoLoading, refetch } = useGetUserInfo({ walletAddress, setUserInfo, }) @@ -36,15 +32,15 @@ const DashboardContainer: React.FC = ({ useEffect(() => { const walletAddress = sessionStorage.getItem('walletAddress') - if (walletAddress && userInfoData == null) { + if (walletAddress && userInfo == null) { refetch() setWalletAddress(walletAddress) } - }, [setUserInfo, walletAddress, userInfoData, refetch, setWalletAddress]) + }, [setUserInfo, walletAddress, userInfo, refetch, setWalletAddress]) - const processedOperators = processMyOperators(userInfoData?.operators) + const processedOperators = processMyOperators(userInfo?.operators) - console.log('processedOperators', processedOperators) + // console.log('processedOperators', processedOperators) // const { data: userXP } = useGetUserXP({ // enabled: !!walletAddress && walletAddress.length > 0,