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

20 lines
638 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-04-26 16:36:41 +00:00
* A context containing an object with the following elements:
* - `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",
setTheme: () => console.error("Provato a eseguire setTheme mentre fuori da un ContextTheme.Provider!"),
2021-04-26 16:36:41 +00:00
})
2021-04-21 13:37:12 +00:00
export default ContextTheme