Commit b667662b authored by Zach Pomerantz's avatar Zach Pomerantz Committed by GitHub

fix: lazy load nft profile (#7361)

parent ed87df62
import { Box } from 'nft/components/Box' import { Box } from 'nft/components/Box'
import { assetList } from 'nft/components/collection/CollectionNfts.css' import { assetList } from 'nft/components/collection/CollectionNfts.css'
import { loadingAsset } from 'nft/css/loading.css' import { loadingAsset } from 'nft/css/loading.css'
import { ScreenBreakpointsPaddings } from 'nft/pages/collection/index.css'
import styled from 'styled-components' import styled from 'styled-components'
import { DEFAULT_WALLET_ASSET_QUERY_AMOUNT } from './ProfilePage' import { DEFAULT_WALLET_ASSET_QUERY_AMOUNT } from './ProfilePage'
const SkeletonPageWrapper = styled.div`
${ScreenBreakpointsPaddings};
padding-top: 40px;
width: 100%;
@media only screen and (max-width: ${({ theme }) => `${theme.breakpoint.sm}px`}) {
padding-top: 16px;
}
`
const SkeletonBodyWrapper = styled.div` const SkeletonBodyWrapper = styled.div`
display: flex; display: flex;
flex-direction: column; flex-direction: column;
...@@ -86,11 +75,3 @@ export const ProfileBodyLoadingSkeleton = () => { ...@@ -86,11 +75,3 @@ export const ProfileBodyLoadingSkeleton = () => {
</SkeletonBodyWrapper> </SkeletonBodyWrapper>
) )
} }
export const ProfilePageLoadingSkeleton = () => {
return (
<SkeletonPageWrapper>
<ProfileBodyLoadingSkeleton />
</SkeletonPageWrapper>
)
}
...@@ -7,10 +7,9 @@ import { ButtonPrimary } from 'components/Button' ...@@ -7,10 +7,9 @@ import { ButtonPrimary } from 'components/Button'
import { XXXL_BAG_WIDTH } from 'nft/components/bag/Bag' import { XXXL_BAG_WIDTH } from 'nft/components/bag/Bag'
import { ListPage } from 'nft/components/profile/list/ListPage' import { ListPage } from 'nft/components/profile/list/ListPage'
import { ProfilePage } from 'nft/components/profile/view/ProfilePage' import { ProfilePage } from 'nft/components/profile/view/ProfilePage'
import { ProfilePageLoadingSkeleton } from 'nft/components/profile/view/ProfilePageLoadingSkeleton'
import { useBag, useProfilePageState, useSellAsset, useWalletCollections } from 'nft/hooks' import { useBag, useProfilePageState, useSellAsset, useWalletCollections } from 'nft/hooks'
import { ProfilePageStateType } from 'nft/types' import { ProfilePageStateType } from 'nft/types'
import { Suspense, useEffect, useRef } from 'react' import { useEffect, useRef } from 'react'
import styled from 'styled-components' import styled from 'styled-components'
import { BREAKPOINTS } from 'theme' import { BREAKPOINTS } from 'theme'
import { ThemedText } from 'theme/components' import { ThemedText } from 'theme/components'
...@@ -60,7 +59,7 @@ const ConnectWalletButton = styled(ButtonPrimary)` ...@@ -60,7 +59,7 @@ const ConnectWalletButton = styled(ButtonPrimary)`
border: none; border: none;
` `
const ProfileContent = () => { export default function Profile() {
const sellPageState = useProfilePageState((state) => state.state) const sellPageState = useProfilePageState((state) => state.state)
const setSellPageState = useProfilePageState((state) => state.setProfilePageState) const setSellPageState = useProfilePageState((state) => state.setProfilePageState)
const resetSellAssets = useSellAsset((state) => state.reset) const resetSellAssets = useSellAsset((state) => state.reset)
...@@ -104,13 +103,3 @@ const ProfileContent = () => { ...@@ -104,13 +103,3 @@ const ProfileContent = () => {
</Trace> </Trace>
) )
} }
const Profile = () => {
return (
<Suspense fallback={<ProfilePageLoadingSkeleton />}>
<ProfileContent />
</Suspense>
)
}
export default Profile
...@@ -32,7 +32,7 @@ import Swap from './Swap' ...@@ -32,7 +32,7 @@ import Swap from './Swap'
const AppChrome = lazy(() => import('./AppChrome')) const AppChrome = lazy(() => import('./AppChrome'))
const NftExplore = lazy(() => import('nft/pages/explore')) const NftExplore = lazy(() => import('nft/pages/explore'))
const Collection = lazy(() => import('nft/pages/collection')) const Collection = lazy(() => import('nft/pages/collection'))
const Profile = lazy(() => import('nft/pages/profile/profile')) const Profile = lazy(() => import('nft/pages/profile'))
const Asset = lazy(() => import('nft/pages/asset/Asset')) const Asset = lazy(() => import('nft/pages/asset/Asset'))
const AddLiquidity = lazy(() => import('pages/AddLiquidity')) const AddLiquidity = lazy(() => import('pages/AddLiquidity'))
const RedirectDuplicateTokenIds = lazy(() => import('pages/AddLiquidity/redirects')) const RedirectDuplicateTokenIds = lazy(() => import('pages/AddLiquidity/redirects'))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment