mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-06 05:57:35 +03:00
* Auto theme preference added * Fix lint * Add and use AUTO from consts * Add shared custom hook to get current theme * Moved up 'Auto' choice * AUTO -> AUTO_THEME_ID & extract useCurrentTheme to file * Liberalise theme setting * Add tests
This commit is contained in:
parent
fa479f0a9a
commit
3e0e11c01e
8 changed files with 235 additions and 8 deletions
|
@ -15,11 +15,11 @@ import {
|
|||
setVolume,
|
||||
clearQueue,
|
||||
} from '../actions'
|
||||
import themes from '../themes'
|
||||
import config from '../config'
|
||||
import PlayerToolbar from './PlayerToolbar'
|
||||
import { sendNotification, baseUrl } from '../utils'
|
||||
import { keyMap } from '../hotkeys'
|
||||
import useCurrentTheme from '../themes/useCurrentTheme'
|
||||
|
||||
const useStyle = makeStyles((theme) => ({
|
||||
audioTitle: {
|
||||
|
@ -58,8 +58,7 @@ const AudioTitle = React.memo(({ audioInfo, isMobile, className }) => {
|
|||
|
||||
const Player = () => {
|
||||
const translate = useTranslate()
|
||||
const currentTheme = useSelector((state) => state.theme)
|
||||
const theme = themes[currentTheme] || themes.DarkTheme
|
||||
const theme = useCurrentTheme()
|
||||
const playerTheme = (theme.player && theme.player.theme) || 'dark'
|
||||
const dataProvider = useDataProvider()
|
||||
const dispatch = useDispatch()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue