dashboard/src/components/themeManager.js
Bastian Meissner d2b35f7339 Fixes
- Fixed "Blackboard" theme
- Removed "fetch[]" functions, eliminating console warnings
- Fixed error where pressing "Apply" without having a theme selected would crash the site
2020-06-10 14:27:25 +02:00

38 lines
740 B
JavaScript

const defaultTheme = {
label: 'Classic',
value: 0,
mainColor: '#000000',
accentColor: '#1e272e',
backgroundColor: '#ffffff'
};
const setTheme = theme => {
if (theme !== undefined) {
localStorage.setItem('theme', theme);
}
window.location.reload();
};
const resetTheme = () => {
localStorage.removeItem('theme');
};
const getTheme = () => {
let selectedTheme = defaultTheme;
if (
localStorage.getItem('theme') &&
localStorage.getItem('theme') !== undefined
) {
selectedTheme = JSON.parse(localStorage.getItem('theme'));
}
return selectedTheme;
};
const selectedTheme = getTheme();
export { setTheme, resetTheme };
export default selectedTheme;