import { useRouter } from 'next/router' import { GlobeIcon } from '@primer/octicons-react' import { useLanguages } from 'components/context/LanguagesContext' import { useTranslation } from 'components/hooks/useTranslation' import { useUserLanguage } from 'components/hooks/useUserLanguage' import { Picker } from 'components/ui/Picker' type Props = { mediumOrLower?: boolean } export const LanguagePicker = ({ mediumOrLower }: Props) => { const router = useRouter() const { languages } = useLanguages() const { setUserLanguageCookie } = useUserLanguage() const locale = router.locale || 'en' const { t } = useTranslation('picker') // Remember, in this context `languages` is only the active ones // that are available. I.e. no wip ones. // Also, if the current context has a page and that page has own ideas // about which languages it's available in (e.g. early-access) // it would already have been paired down. const langs = Object.values(languages) if (langs.length < 2) { return null } const selectedLang = languages[locale] // The `router.asPath` will always be without a hash in SSR // So to avoid a hydraration failure on the client, we have to // normalize it to be without the hash. That way the path is treated // in a "denormalized" way. const routerPath = router.asPath.split('#')[0] return (