Giter Club home page Giter Club logo

Comments (3)

cambraatz avatar cambraatz commented on August 16, 2024 1

I ran into the same issue, the issue lies in the new React...where .params are no longer supported in class functions. I saw a comment on youtube that got me mostly there. My solution (does not include UseEffect() yet) was to convert Room() to a functional Component and implement useParams() instead of the original "props.match.params.roomCode".

import React, { Component, useState } from 'react';
import { useParams } from 'react-router-dom';

function Room() {
const { roomCode } = useParams()
const initialState = {
votesToSkip: 2,
guestCanPause: false,
isHost: false
}
const [roomData, setRoomData] = useState(initialState)

return(
    <div>
        <h3>{roomCode}</h3>
        <p>Votes: {roomData.votesToSkip}</p>
        <p>Guest Can Pause: {roomData.guestCanPause.toString()}</p>
        <p>Host: {roomData.isHost.toString()}</p>
    </div>
); 

}

export default Room;

from music-controller-web-app-tutorial.

Ayatade avatar Ayatade commented on August 16, 2024

Has this issue been fixed?

from music-controller-web-app-tutorial.

jonwright13 avatar jonwright13 commented on August 16, 2024

I managed to find a solution where I wrapped the Room class with a component to pass additional props to it.

function withParams(Component) {
return (props) => (
<Component {...props} params={useParams()} navigate={useNavigate()} />
);
}

and then at the bottom of the code:

export default withParams(Room);

This seemed to work well for me.

from music-controller-web-app-tutorial.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.