File size: 918 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
import { useFetchers } from '@remix-run/react'
import { useHints } from './useHints'
import { useRequestInfo } from './useRequestInfo'
/**
* If the user's changing their theme mode preference, this will return the
* value it's being changed to.
*/
export function useOptimisticThemeMode() {
const fetchers = useFetchers()
const themeFetcher = fetchers.find(f => f.formAction === '/')
if (themeFetcher && themeFetcher.formData) {
return themeFetcher.formData.get('theme') as string
}
}
/**
* @returns the user's theme preference, or the client hint theme if the user
* has not set a preference.
*/
export function useTheme() {
const hints = useHints()
const requestInfo = useRequestInfo()
const optimisticMode = useOptimisticThemeMode()
if (optimisticMode) {
return optimisticMode === 'system' ? hints?.theme : optimisticMode
}
return requestInfo?.userPrefs.theme ?? hints?.theme
}
|