mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-17 21:26:22 -04:00
34 lines
852 B
TypeScript
34 lines
852 B
TypeScript
import { useCallback, useEffect } from 'react';
|
|
import { useSelector } from 'react-redux';
|
|
import { createSelector } from 'reselect';
|
|
import themes from 'Styles/Themes';
|
|
import AppState from './State/AppState';
|
|
|
|
function createThemeSelector() {
|
|
return createSelector(
|
|
(state: AppState) => state.settings.ui.item.theme || window.Radarr.theme,
|
|
(theme) => {
|
|
return theme;
|
|
}
|
|
);
|
|
}
|
|
|
|
function ApplyTheme() {
|
|
const theme = useSelector(createThemeSelector());
|
|
|
|
const updateCSSVariables = useCallback(() => {
|
|
Object.entries(themes[theme]).forEach(([key, value]) => {
|
|
document.documentElement.style.setProperty(`--${key}`, value);
|
|
});
|
|
}, [theme]);
|
|
|
|
// On Component Mount and Component Update
|
|
useEffect(() => {
|
|
updateCSSVariables();
|
|
}, [updateCSSVariables, theme]);
|
|
|
|
return null;
|
|
}
|
|
|
|
export default ApplyTheme;
|