979686100e
* chore: simplify app dispatch and selector types with ts inference * update SearchModal to use new types inference * chore: simplify useSelector and useDispatch types using inference
23 lines
614 B
TypeScript
23 lines
614 B
TypeScript
import { useEffect } from 'react'
|
|
|
|
import { useAppDispatch } from 'state/hooks'
|
|
import { updateUserExpertMode } from '../state/user/actions'
|
|
import useParsedQueryString from './useParsedQueryString'
|
|
|
|
export default function ApeModeQueryParamReader(): null {
|
|
useApeModeQueryParamReader()
|
|
return null
|
|
}
|
|
|
|
function useApeModeQueryParamReader() {
|
|
const dispatch = useAppDispatch()
|
|
const { ape } = useParsedQueryString()
|
|
|
|
useEffect(() => {
|
|
if (typeof ape !== 'string') return
|
|
if (ape === '' || ape.toLowerCase() === 'true') {
|
|
dispatch(updateUserExpertMode({ userExpertMode: true }))
|
|
}
|
|
})
|
|
}
|