`global` variable in browser context is always undefined. I think you meant `globalThis`
cpakken opened this issue · 4 comments
use-dark-mode/src/initialize.js
Line 15 in 2959027
The global variable will only exist in node during ssr. globalThis
=== window
in browsers and globalThis
=== global
in node
yes, i am facing the same issue. As soon i use the hook, my app crashes with an error use-dark-mode.m.js:1 Uncaught ReferenceError: global is not defined
. I am using vite with react 17
The error goes away if i put var global = globalThis;
in my index.html
file
facing same problem
now created custom solution using
https://www.thisdot.co/blog/how-to-implement-a-dark-to-light-mode-feature-in-your-react-sass-project
and
https://www.geeksforgeeks.org/how-to-create-dark-mode-using-prefer-color-scheme-media-query/
I solved this by adding window.global = globalThis
in the file where I create the entry point to the DOM
Example:
import React from 'react';
import ReactDOM from 'react-dom/client';
import App from './App';
import './index.css';
window.global = globalThis;
ReactDOM.createRoot(document.getElementById('root')).render(
<React.StrictMode>
<App />
</React.StrictMode>
);
This will also work:
import useDarkMode from "use-dark-mode";
import { Switch } from "@nextui-org/react";
import { SVGProps } from "react";
export const ThemeSwitcher = () => {
const darkMode = useDarkMode(false, {
classNameDark: "dark",
classNameLight: "light",
global: window, // Just pass this as a config option
});
return (
<Switch
defaultSelected={darkMode.value}
onValueChange={darkMode.toggle}
size="lg"
color="warning"
startContent={<MoonIcon />}
endContent={<SunIcon />}
/>
);
};