Giter Site home page Giter Site logo

Comments (3)

danieldelcore avatar danieldelcore commented on June 2, 2024

In fact this might be reproducible on the website. I could have sworn this theme switcher updated the color scheme of the editor but now it looks like it does nothing 🤔

image

from sandpack.

danieldelcore avatar danieldelcore commented on June 2, 2024

Ok, it seems to be fixed after downgrading to "@codesandbox/sandpack-react": "2.0.22" 😅

Here's a new repro link with a broken switcher https://codesandbox.io/p/sandbox/dank-wood-9gtfp5?file=%2Fpackage.json%3A8%2C45

from sandpack.

danieldelcore avatar danieldelcore commented on June 2, 2024

Looks like the issue was introduced in 2.11.0, possibly in this PR 🤔 #1050

My guess, we might need to add prefferedTheme to the deps array and update it even if themeFromProps is auto:

https://github.com/codesandbox/sandpack/pull/1050/files#diff-ef320de67c942aac6167958e5b1f652adb01179be4aba48f40651de9cea7c50cR80

  React.useEffect(() => {
-    if (themeFromProps !== "auto") return;
+   if (themeFromProps !== "auto") {
+      setPreferredTheme(setPreferredTheme);
+      return;
+   }

    const colorSchemeChange = ({ matches }: MediaQueryListEvent) => {
      setPreferredTheme(matches ? "dark" : "light");
    };

    window
      .matchMedia("(prefers-color-scheme: dark)")
      .addEventListener("change", colorSchemeChange);

    return () => {
      window
        .matchMedia("(prefers-color-scheme: dark)")
        .removeEventListener("change", colorSchemeChange);
    };
  }, [themeFromProps]);

from sandpack.

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.