mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-15 17:55:08 +01:00
41 lines
1.0 KiB
JavaScript
41 lines
1.0 KiB
JavaScript
import React from 'react';
|
|
import Head from 'next/head';
|
|
import { menuOptions } from 'lib/lang';
|
|
import useLocale from 'hooks/useLocale';
|
|
import MenuButton from 'components/common/MenuButton';
|
|
import Globe from 'assets/globe.svg';
|
|
|
|
export default function LanguageButton() {
|
|
const [locale, setLocale] = useLocale();
|
|
|
|
function handleSelect(value) {
|
|
setLocale(value);
|
|
}
|
|
|
|
return (
|
|
<>
|
|
<Head>
|
|
{locale === 'zh-CN' && (
|
|
<link
|
|
href="https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@400;500;700&display=swap"
|
|
rel="stylesheet"
|
|
/>
|
|
)}
|
|
{locale === 'ja-JP' && (
|
|
<link
|
|
href="https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap"
|
|
rel="stylesheet"
|
|
/>
|
|
)}
|
|
</Head>
|
|
<MenuButton
|
|
icon={<Globe />}
|
|
options={menuOptions}
|
|
value={locale}
|
|
renderValue={option => option?.display}
|
|
onSelect={handleSelect}
|
|
/>
|
|
</>
|
|
);
|
|
}
|