23 lines
656 B
TypeScript
23 lines
656 B
TypeScript
|
import { useEffect } from 'react'
|
||
|
import { useDispatch } from 'react-redux'
|
||
|
import { AppDispatch } from 'state'
|
||
|
import { updateUserExpertMode } from '../state/user/actions'
|
||
|
import useParsedQueryString from './useParsedQueryString'
|
||
|
|
||
|
export default function ApeModeQueryParamReader(): null {
|
||
|
useApeModeQueryParamReader()
|
||
|
return null
|
||
|
}
|
||
|
|
||
|
function useApeModeQueryParamReader() {
|
||
|
const dispatch = useDispatch<AppDispatch>()
|
||
|
const { ape } = useParsedQueryString()
|
||
|
|
||
|
useEffect(() => {
|
||
|
if (typeof ape !== 'string') return
|
||
|
if (ape === '' || ape.toLowerCase() === 'true') {
|
||
|
dispatch(updateUserExpertMode({ userExpertMode: true }))
|
||
|
}
|
||
|
})
|
||
|
}
|