GithubHelp home page GithubHelp logo

Bug: Typescript + React about react HOT 4 OPEN

Erfan2001 avatar Erfan2001 commented on April 25, 2024
Bug: Typescript + React

from react.

Comments (4)

devjiwonchoi avatar devjiwonchoi commented on April 25, 2024 1

For issue 1, if your project was working fine but is coming up with an issue and you just want to just resolve it,
just pass type any since you are not passing any type to the App.

ctx.renderPage = () =>
  originalRenderPage({
    enhanceApp: (App: any) => (props: any) => sheets.collect(<App {...props} />),
  });

const initialProps = await Document.getInitialProps(ctx);
// resetServerContext();
return {
  ...initialProps,
  styles: [...React.Children.toArray(initialProps.styles), sheets.getStyleElement()],
};

For issue 2, set Object.values(t) as T[keyof T];

export class Global {
  static entries<T>(t: T) {
    return Object.entries(t) as [keyof T, T[keyof T]][];
  }

  static keys<T>(t: T) {
    return Object.keys(t) as (keyof T)[];
  }

  static values<T>(t: T): T[keyof T][] {
    return Object.values(t) as T[keyof T];
  }
}

from react.

MeenuyD avatar MeenuyD commented on April 25, 2024

Hello, @Erfan2001 can you please give the code where you have encountered this error?

from react.

Erfan2001 avatar Erfan2001 commented on April 25, 2024

Hi @MeenuyD
Thanks for your response.
Yeah, problems have happened on these occasions:

1) First error:

ctx.renderPage = () =>
    originalRenderPage({
      enhanceApp: (App) => (props) => sheets.collect(<App {...props} />),
    });

  const initialProps = await Document.getInitialProps(ctx);
  //   resetServerContext();
  return {
    ...initialProps,
    // Styles fragment is rendered after the app and page rendering finish.
    styles: [...React.Children.toArray(initialProps.styles), sheets.getStyleElement()],
  };

2) second error:

export class Global {
  static entries<T>(t: T) {
    return Object.entries(t) as [keyof T, T[keyof T]][];
  }
  static keys<T>(t: T) {
    return Object.keys(t) as (keyof T)[];
  }

  static values<T>(t: T) {
    return Object.values(t);
  }
} 

from react.

github-actions avatar github-actions commented on April 25, 2024

This issue has been automatically marked as stale. If this issue is still affecting you, please leave any comment (for example, "bump"), and we'll keep it open. We are sorry that we haven't been able to prioritize it yet. If you have any new additional information, please include it with your comment!

from react.

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.