1
Fork 0
mirror of https://github.com/pds-nest/nest.git synced 2024-11-22 13:04:19 +00:00
pds-2021-g2-nest/nest_frontend/contexts/ContextTheme.js

20 lines
632 B
JavaScript
Raw Normal View History

2021-05-11 14:37:15 +00:00
import { createContext } from "react"
2021-04-21 13:37:12 +00:00
/**
2021-05-22 02:44:08 +00:00
* A React Context containing an object with the following elements:
2021-04-26 16:36:41 +00:00
* - `theme` - A string containing the name of the current theme.
* - `setTheme` - A function that allows changing the `theme`.
*
2021-04-26 16:36:41 +00:00
* If trying to access the context from outside a provider, the theme will be `ThemeDark`, and the function will display
* an error in the console.
*
* @type {React.Context}
*/
2021-04-26 16:36:41 +00:00
const ContextTheme = createContext({
isSet: false,
theme: "ThemeDark",
2021-05-17 23:44:34 +00:00
setTheme: () => console.error("Trying to setTheme while outside a ContextTheme.Provider!"),
2021-04-26 16:36:41 +00:00
})
2021-04-21 13:37:12 +00:00
export default ContextTheme