Skip to content
  • Unlock Pro
  • Log in with GitHub
Profile
OverviewSolutions
10
Comments
2
Kyle Johnson
@11kyle

All comments

  • Emre Kalfa•180
    @rustysym
    Submitted over 1 year ago

    Rock, Paper, Scissors | (NextJS,TailwindCSS,Framer Motion)

    #framer-motion#react#tailwind-css#next
    1
    Kyle Johnson•250
    @11kyle
    Posted over 1 year ago

    Hey Emre! Great job on your solution! I checked into your question and have some feedback.

    • Score takes a negative value.

    This can be fixed by wrapping your setScore((score) => score -1) inside an if statement like so

    if (score > 0) {
      setScore((score) => score - 1)
    }
    
    • Score doesn't seem to be updating correctly

    You are right on thinking it is the useEffect hook that is causing problems here. useEffect gets called on initial render and again every time anything in the dependency array changes. You also never want to update anything from the dependency array from inside the useEffect. This could cause an infinite loop. In your case, the useEffect is running a minimum of 2 times and that is part of why you are seeing weird scores. The way your game is setup you can actually leave the dependency array empty like so

     useEffect(() => {
       onSelect();
     }, []);
    

    In addition, there's a weird thing happening with useState inside your GameContext.js. useState actually takes 'time' to update its value. It's just a part of react. When you setState and then ask your function to do something with it, it is using the previous value. You can replace houseSelection with number inside your function like so

    const onSelect = () => {
      const userSelect = GameRules[selection].value;
      const number = Math.floor(Math.random() * 3);
      setHouseSelection(number);
    
      setTimeout(() => {
        setShow(true);
        if (GameRules[number].beats.includes(userSelect)) {
          setResult("You Lose");
          setScore((score) => score - 1);
        } else {
          if (GameRules[number].value == userSelect) {
            setResult("Tie");
          } else {
            setResult("You Win");
            setScore((score) => score + 1);
          }
        }
      }, 3000);
    };
    
    Marked as helpful
  • Lucas Matheus•400
    @Lukiticas
    Submitted almost 3 years ago

    NFT cards with animations and themes!

    #styled-components#react
    1
    Kyle Johnson•250
    @11kyle
    Posted almost 3 years ago

    Great work! I really like that you took the challenge and added your own twist. The only negative thing I noticed is the colors used. I feel like the neon green text with a green background is hard for the eye to pickup.

    As for your question about when to use article, h2, etc. Here's a very good link on what elements should be used and why. Some key benefits to using the right elements include better readability and improved SEO.

    MDN Semantics

    Marked as helpful
Frontend Mentor logo

Stay up to datewith new challenges, featured solutions, selected articles, and our latest news

Frontend Mentor

  • Unlock Pro
  • Contact us
  • FAQs
  • Become a partner

Explore

  • Learning paths
  • Challenges
  • Solutions
  • Articles

Community

  • Discord
  • Guidelines

For companies

  • Hire developers
  • Train developers
© Frontend Mentor 2019 - 2025
  • Terms
  • Cookie Policy
  • Privacy Policy
  • License

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub