donavon/use-dark-mode

`global` variable in browser context is always undefined. I think you meant `globalThis`

cpakken opened this issue · 4 comments

const initialize = (storageKey, storageProvider, glbl = global) => {

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

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 />}
        />
    );
};