mirror of
https://github.com/usebruno/bruno.git
synced 2024-11-22 07:53:34 +01:00
Merge branch 'main' of github.com:usebruno/bruno
This commit is contained in:
commit
cdddf8af76
@ -13,7 +13,7 @@ const Theme = () => {
|
|||||||
theme: storedTheme
|
theme: storedTheme
|
||||||
},
|
},
|
||||||
validationSchema: Yup.object({
|
validationSchema: Yup.object({
|
||||||
theme: Yup.string().oneOf(['light', 'dark']).required('theme is required')
|
theme: Yup.string().oneOf(['light', 'dark', 'system']).required('theme is required')
|
||||||
}),
|
}),
|
||||||
onSubmit: (values) => {
|
onSubmit: (values) => {
|
||||||
setStoredTheme(values.theme);
|
setStoredTheme(values.theme);
|
||||||
@ -55,6 +55,22 @@ const Theme = () => {
|
|||||||
<label htmlFor="dark-theme" className="ml-1 cursor-pointer select-none">
|
<label htmlFor="dark-theme" className="ml-1 cursor-pointer select-none">
|
||||||
Dark
|
Dark
|
||||||
</label>
|
</label>
|
||||||
|
|
||||||
|
<input
|
||||||
|
id="system-theme"
|
||||||
|
className="ml-4 cursor-pointer"
|
||||||
|
type="radio"
|
||||||
|
name="theme"
|
||||||
|
onChange={(e) => {
|
||||||
|
formik.handleChange(e);
|
||||||
|
formik.handleSubmit();
|
||||||
|
}}
|
||||||
|
value="system"
|
||||||
|
checked={formik.values.theme === 'system'}
|
||||||
|
/>
|
||||||
|
<label htmlFor="system-theme" className="ml-1 cursor-pointer select-none">
|
||||||
|
System
|
||||||
|
</label>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</StyledWrapper>
|
</StyledWrapper>
|
||||||
|
@ -1,15 +1,23 @@
|
|||||||
import themes from 'themes/index';
|
import themes from 'themes/index';
|
||||||
import useLocalStorage from 'hooks/useLocalStorage/index';
|
import useLocalStorage from 'hooks/useLocalStorage/index';
|
||||||
|
|
||||||
import { createContext, useContext } from 'react';
|
import { createContext, useContext, useEffect, useState } from 'react';
|
||||||
import { ThemeProvider as SCThemeProvider } from 'styled-components';
|
import { ThemeProvider as SCThemeProvider } from 'styled-components';
|
||||||
|
|
||||||
export const ThemeContext = createContext();
|
export const ThemeContext = createContext();
|
||||||
export const ThemeProvider = (props) => {
|
export const ThemeProvider = (props) => {
|
||||||
const isBrowserThemeLight = window.matchMedia('(prefers-color-scheme: light)').matches;
|
const isBrowserThemeLight = window.matchMedia('(prefers-color-scheme: light)').matches;
|
||||||
const [storedTheme, setStoredTheme] = useLocalStorage('bruno.theme', isBrowserThemeLight ? 'light' : 'dark');
|
const [displayedTheme, setDisplayedTheme] = useState(isBrowserThemeLight ? 'light' : 'dark');
|
||||||
|
const [storedTheme, setStoredTheme] = useLocalStorage('bruno.theme', 'system');
|
||||||
|
|
||||||
const theme = themes[storedTheme];
|
useEffect(() => {
|
||||||
|
window.matchMedia('(prefers-color-scheme: light)').addEventListener('change', (e) => {
|
||||||
|
if (storedTheme !== 'system') return;
|
||||||
|
setDisplayedTheme(e.matches ? 'light' : 'dark');
|
||||||
|
});
|
||||||
|
}, []);
|
||||||
|
|
||||||
|
const theme = storedTheme === 'system' ? themes[displayedTheme] : themes[storedTheme];
|
||||||
const themeOptions = Object.keys(themes);
|
const themeOptions = Object.keys(themes);
|
||||||
const value = {
|
const value = {
|
||||||
theme,
|
theme,
|
||||||
|
Loading…
Reference in New Issue
Block a user