-
Notifications
You must be signed in to change notification settings - Fork 93
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
fix: Refont domain registration step 2 #993
Merged
Merged
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
3558c0b
fix: Refont domain registration step 2
Verifieddanny 6417461
fix:remove duplicate csss property
Verifieddanny f7b1eaa
Fix: added required changes
Verifieddanny 35085da
fix: update grid layout for nftSection and remove redundant property …
Verifieddanny 89765ad
package-lock.json removed
Verifieddanny 4eaa566
fix: removed "Your Nft"
Verifieddanny 375e175
styling
Marchand-Nicolas File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,67 +1,66 @@ | ||
import React, { FunctionComponent, useState } from "react"; | ||
import styles from "../../styles/components/profilePic.module.css"; | ||
import NftCard from "../UI/nftCard"; | ||
import { debounce } from "../../utils/debounceService"; | ||
import WarningMessage from "../UI/warningMessage"; | ||
import PfpSkeleton from "./skeletons/pfpSkeleton"; | ||
|
||
type PfpGalleryProps = { | ||
userNfts: StarkscanNftProps[]; | ||
isLoading?: boolean; | ||
selectPfp: (nft: StarkscanNftProps) => void; | ||
selectedPfp?: StarkscanNftProps | null; | ||
}; | ||
|
||
const PfpGallery: FunctionComponent<PfpGalleryProps> = ({ | ||
userNfts, | ||
isLoading = false, | ||
selectPfp, | ||
selectedPfp, | ||
}) => { | ||
const [isHovered, setIsHovered] = useState<string | null>(null); | ||
|
||
const handleMouseEnter = debounce((id: string) => setIsHovered(id), 50); | ||
const handleMouseLeave = debounce(() => setIsHovered(null), 50); | ||
|
||
return ( | ||
<> | ||
<div> | ||
<p className={styles.subtitle}>Your NFTs</p> | ||
<h2 className={styles.title}>Choose your NFT Profile picture</h2> | ||
<div className={styles.nftSection}> | ||
{isLoading ? ( | ||
<PfpSkeleton /> | ||
) : userNfts && userNfts.length > 0 ? ( | ||
userNfts.map((nft, index) => { | ||
if (!nft.image_url) return null; | ||
return ( | ||
<div | ||
key={index} | ||
onMouseEnter={() => handleMouseEnter(nft.token_id)} | ||
onMouseLeave={handleMouseLeave} | ||
> | ||
<NftCard | ||
image={nft.image_url as string} | ||
name={nft.name as string} | ||
selectPicture={() => selectPfp(nft)} | ||
isHovered={isHovered === nft.token_id} | ||
isSelected={selectedPfp?.token_id === nft.token_id} | ||
/> | ||
</div> | ||
); | ||
}) | ||
) : ( | ||
<div className="flex flex-col align-middle items-center"> | ||
<img src="/visuals/notFound.webp" alt="Not found" width={201} /> | ||
<WarningMessage> | ||
You don't own any whitelisted NFTs yet | ||
</WarningMessage> | ||
</div> | ||
)} | ||
</div> | ||
</div> | ||
</> | ||
); | ||
}; | ||
|
||
export default PfpGallery; | ||
import React, { FunctionComponent, useState } from "react"; | ||
import styles from "../../styles/components/profilePic.module.css"; | ||
import NftCard from "../UI/nftCard"; | ||
import { debounce } from "../../utils/debounceService"; | ||
import WarningMessage from "../UI/warningMessage"; | ||
import PfpSkeleton from "./skeletons/pfpSkeleton"; | ||
|
||
type PfpGalleryProps = { | ||
userNfts: StarkscanNftProps[]; | ||
isLoading?: boolean; | ||
selectPfp: (nft: StarkscanNftProps) => void; | ||
selectedPfp?: StarkscanNftProps | null; | ||
}; | ||
|
||
const PfpGallery: FunctionComponent<PfpGalleryProps> = ({ | ||
userNfts, | ||
isLoading = false, | ||
selectPfp, | ||
selectedPfp, | ||
}) => { | ||
const [isHovered, setIsHovered] = useState<string | null>(null); | ||
|
||
const handleMouseEnter = debounce((id: string) => setIsHovered(id), 50); | ||
const handleMouseLeave = debounce(() => setIsHovered(null), 50); | ||
|
||
return ( | ||
<> | ||
<div> | ||
<h2 className={styles.title}>Choose your NFT Profile picture</h2> | ||
<div className={styles.nftSection}> | ||
{isLoading ? ( | ||
<PfpSkeleton /> | ||
) : userNfts && userNfts.length > 0 ? ( | ||
userNfts.map((nft, index) => { | ||
if (!nft.image_url) return null; | ||
return ( | ||
<div | ||
key={index} | ||
onMouseEnter={() => handleMouseEnter(nft.token_id)} | ||
onMouseLeave={handleMouseLeave} | ||
> | ||
<NftCard | ||
image={nft.image_url as string} | ||
name={nft.name as string} | ||
selectPicture={() => selectPfp(nft)} | ||
isHovered={isHovered === nft.token_id} | ||
isSelected={selectedPfp?.token_id === nft.token_id} | ||
/> | ||
</div> | ||
); | ||
}) | ||
) : ( | ||
<div className="flex flex-col align-middle items-center"> | ||
<img src="/visuals/notFound.webp" alt="Not found" width={201} /> | ||
<WarningMessage> | ||
You don't own any whitelisted NFTs yet | ||
</WarningMessage> | ||
</div> | ||
)} | ||
</div> | ||
</div> | ||
</> | ||
); | ||
}; | ||
|
||
export default PfpGallery; |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🛠️ Refactor suggestion
Avoid using array index as key.
Using array index as key prop can lead to rendering issues if the array items are reordered, filtered, or modified. Consider using a more stable unique identifier like
nft.token_id
.📝 Committable suggestion